/* ==========================================================================
   RCUBE.CSS — The Report Cube | Market Intelligence Landing Page
   ========================================================================== */

/* ---------- Fonts ---------- */
/*@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500;600;700;800&family=Inter:wght@400;500;600;700&display=swap');*/
/* ---------- Tokens ---------- */
:root{
  --rc-red:        #c00000;
  --rc-red-dark:   #c00000;
  --rc-red-light:  #c00000;
  --rc-black:      #14151a;
  --rc-black-soft: #1b1c22;
  --rc-cream:      #f7efec;
  --rc-white:      #ffffff;
  --rc-ink:        #1a1a1e;
  --rc-gray:       #6b6f76;
  --rc-gray-light: #9a9ea6;
  --rc-border:     #e7e3e0;

  --rc-font-head: Roboto, Helvetica, Arial, sans-serif;
  --rc-font-body: Roboto, Helvetica, Arial, sans-serif;

  --rc-container: 1320px;
  --rc-radius:    10px;
  --rc-radius-sm: 6px;
}

/* ---------- Reset ---------- */
*, *::before, *::after{ box-sizing:border-box; margin:0; padding:0; }


.rc-container{
  width:100%;
  max-width:var(--rc-container);
  margin-inline:auto;
  padding-inline:30px;
}

.rc-grid{ display:grid; }

/* ---------- Reusable bits ---------- */
.rc-eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-size:14px;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:var(--rc-red);
  margin-bottom:14px;
}

.rc-btn{
  display:inline-flex;
  align-items:center;
  /* width:250px; */
  gap:10px;
  padding:14px 26px;
  border-radius:999px;
  font-size:13px;
  font-weight:700;
  letter-spacing:.05em;
  text-transform:uppercase;
  white-space:nowrap;
  transition:transform .2s ease, background .2s ease, color .2s ease, box-shadow .2s ease;
}
.rc-btn .rc-btn__arrow{
  width:26px; height:26px;
  border-radius:50%;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
}
.rc-btn:hover{ transform:translateY(-2px); }

.rc-btn--solid{
  background:var(--rc-red);
  color:var(--rc-white);
}
.rc-btn--solid .rc-btn__arrow{ background:rgba(255,255,255,.18); }
.rc-btn--solid:hover{ background:var(--rc-red-dark); box-shadow:0 10px 24px rgba(217,31,46,.35); }

.rc-btn--dark{
  background:var(--rc-black);
  color:var(--rc-white);
}
.rc-btn--dark .rc-btn__arrow{ background:var(--rc-red); color:var(--rc-white); }
/* .rc-btn--dark:hover{ box-shadow:0 10px 24px rgba(0,0,0,.35); } */

.rc-btn--outline{
  /*background:transparent;*/
    background:#000000;
  color:var(--rc-white);
  border:1.5px solid rgba(255,255,255,.55);
  width:220px;
}
/*.rc-btn--outline .rc-btn__arrow{ background:rgba(255,255,255,.15); }*/
.rc-btn--outline .rc-btn__arrow{ background:#d71920; }
.rc-btn__arrow:hover{ color: #fff;}
.rc-btn--outline:hover{ background:#d71920; color:#fff; }

.rc-btn--ghost-dark{
  background:transparent;
  color:var(--rc-ink);
  border:1.5px solid var(--rc-border);
}
.rc-btn--ghost-dark .rc-btn__arrow{ background:var(--rc-black); color:var(--rc-white); }
.rc-btn--ghost-dark:hover{ border-color:var(--rc-black); }

.rc-link-arrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-weight:700;
  font-size:14px;
  letter-spacing:.04em;
  text-transform:uppercase;
}
.rc-link-arrow svg{ transition:transform .2s ease; }
.rc-link-arrow:hover svg{ transform:translateX(4px); }

/* =========================================================
   HERO SECTION
========================================================= */

.rc-hero {
    position: relative;
    width: 100%;
    height: 450px;
    overflow: hidden;
    background: #101216;
}

/* Background Image */
.rc-hero__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;

    /* Important: keeps people visible on right */
    object-position: center center;

    z-index: 1;
}

/* Optional subtle dark overlay */
.rc-hero__scrim {
    position: absolute;
    inset: 0;
    z-index: 2;

    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.22) 0%,
            rgba(0, 0, 0, 0.08) 45%,
            rgba(0, 0, 0, 0) 75%
        );
}

/* Main Container */
.rc-hero__inner {
    position: relative;
    z-index: 3;

    width: min(calc(100% - 64px), 1280px);
    height: 100%;

    /* margin: 0 auto; */

    margin: 85px 40px 0px 40px;

    display: flex;
    align-items: center;
}

/* Red Content Box */
.rc-hero__panel {
    width: 500px;
    padding: 32px 34px 30px;

    background:#c00000;

    color: #ffffff;
}

/* Small Title */
.rc-hero__kicker {
    margin: 0 0 12px;

    font-size: 14px;
    font-weight: 700;

    letter-spacing: 0.2px;
    text-transform: none;

    color: rgba(255, 255, 255, 0.95);
}

/* Main Heading */
.rc-hero__title {
    margin: 0 0 18px;

    font-size: 36px;
    font-weight: 700;
    line-height: 1.18;

    letter-spacing: -0.6px;

    color: #ffffff;
}

/* Description */
.rc-hero__text {
    max-width: 440px;

    margin: 0 0 22px;

    font-size: 14px;
    line-height: 1.5;

    color: rgba(255, 255, 255, 0.9);
}

/* Button */
.rc-hero .rc-btn--dark {
    min-width: 190px;
    min-height: 40px;

    padding: 8px 10px 8px 18px;

    display: inline-flex;
    align-items: center;
    justify-content: space-between;

    gap: 14px;

    border-radius: 50px;

    background: transparent;

    border: 1px solid
        rgba(255, 255, 255, 0.5);

    color: #ffffff;

    font-size: 12px;
    font-weight: 700;

    text-transform: uppercase;
    text-decoration: none;

    transition: all 0.3s ease;
}

.rc-hero .rc-btn--dark:hover {
    background: #ffffff;
    color: #c9151c;
}

/* Arrow Circle */
.rc-hero .rc-btn__arrow {
    width: 24px;
    height: 24px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex: 0 0 24px;

    border-radius: 50%;

    border: 1px solid
        rgba(255, 255, 255, 0.65);

    transition: all 0.3s ease;
}

.rc-hero .rc-btn--dark:hover .rc-btn__arrow {
    border-color: #c9151c;
}

/* =========================================================
   ABOUT / FINANCIAL SECTION
========================================================= */

.rcube-financial {
    position: relative;
    width: 100%;
    min-height: 450px;
    overflow: hidden;
    background: #0c0d10;
    color: #ffffff;
}

/* Background architectural pattern */
.rcube-financial::before {
    content: "";
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(5, 6, 8, 0.92) 0%,
            rgba(10, 11, 14, 0.88) 45%,
            rgba(8, 9, 12, 0.94) 100%
        ),
        repeating-linear-gradient(
            135deg,
            transparent 0,
            transparent 85px,
            rgba(255, 255, 255, 0.035) 86px,
            rgba(255, 255, 255, 0.035) 88px
        );

    pointer-events: none;
    z-index: 0;
}

/* Main layout */
.rcube-financial-grid {
    position: relative;
    z-index: 1;

    width: min(calc(100% - 64px), 1280px);
    min-height: 450px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        290px
        minmax(420px, 1fr)
        250px;

    column-gap: 90px;

    align-items: center;
}

/* =========================================================
   LEFT PERSON IMAGE
========================================================= */

/*.rcube-financial-person {*/
/*    position: relative;*/

/*    width: 100%;*/
/*    height: 350px;*/

/*    align-self: center;*/

/*    background-image:*/
/*        url("https://images.unsplash.com/photo-1560250097-0b93528c311a?auto=format&fit=crop&w=900&q=90");*/

/*    background-repeat: no-repeat;*/
/*    background-size: cover;*/
/*    background-position: center top;*/
/*}*/


.rcube-financial-person {
    position: relative;
    width: 100%;
    height: 350px;
    align-self: center;
    overflow: hidden;
}

.rcube-financial-person img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

/* Optional subtle fade */
.rcube-financial-person::after {
    content: "";
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            transparent 65%,
            rgba(12, 13, 16, 0.25) 100%
        );
}

/* =========================================================
   CENTER CONTENT
========================================================= */

.rcube-financial-content {
    max-width: 560px;
}

/* Small red label */
.rcube-small-label {
    display: block;

    margin-bottom: 18px;

    color: #df2028;

    font-size: 14px;
    font-weight: 700;

    letter-spacing: 0.4px;
    text-transform: uppercase;
}

/* Heading */
.rcube-financial-content h2 {
    margin: 0 0 22px;

    color: #ffffff;

    font-size: 36px;
    font-weight: 700;

    line-height: 1.16;

    letter-spacing: -1px;
}

/* Paragraph */
.rcube-financial-content p {
    max-width:500px;

    margin: 0 0 20px;

    color: #c6c6c8;

    font-size: 14px;
    font-weight: 400;

    line-height: 1.8;
}

/* Button */
.rcube-financial-content .rcube-btn-red {
    min-width: 180px;
    min-height: 46px;

    padding: 0 12px 0 22px;

    display: inline-flex;
    align-items: center;
    justify-content: space-between;

    gap: 18px;

    background: #d71920;

    border-radius: 30px;

    color: #ffffff;

    font-size: 12px;
    font-weight: 700;

    text-decoration: none;
     transition: all 0.3s ease;
}

.rcube-financial-content .rcube-btn-red:hover {
    background: #ffffff;
    color: #d71920;

    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(215, 25, 32, 0.35);
}

/* Arrow circle on hover */
.rcube-financial-content .rcube-btn-red:hover span {
    background: #d71920;
    border-color: #d71920;
    color: #ffffff;

    transform: translateX(3px);
}


/* Button arrow */
.rcube-financial-content .rcube-btn-red span {
    width: 26px;
    height: 26px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255, 255, 255, 0.65);
    border-radius: 50%;
    transition: all 0.3s ease;
}

/* =========================================================
   RIGHT STATS
========================================================= */

.rcube-stats {
    display: flex;
    flex-direction: column;

    gap: 30px;

    justify-content: center;
}

/* Single stat */
.rcube-stat {
    display: flex;
    align-items: center;

    gap: 18px;
}

/* Icon box */
.rcube-stat-icon {
    width: 58px;
    height: 58px;

    flex: 0 0 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid #34363b;
    border-radius: 6px;

    background:
        linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.04),
            rgba(255, 255, 255, 0.01)
        );

    color: #d8d8d8;

    font-size: 20px;
}

/* Stat number */
.rcube-stat strong {
    display: block;

    margin-bottom: 5px;

    color: #ffffff;

    font-size: 32px;
    font-weight: 600;

    line-height: 1;
}

/* Stat text */
.rcube-stat small {
    display: block;

    color: #d2d2d3;

    font-size: 11px;

    line-height: 1.4;
}

/* =========================================================
   SERVICES SECTION
========================================================= */
/* =========================================================
   SERVICES SECTION
========================================================= */

.rc-services {
    width: 100%;
    padding: 30px 0;
    background: #f8f8f7;
    overflow: hidden;
}

.rc-services .rc-container {
    width: 100%;
    margin: 0 auto;
}


/* =========================================================
   SECTION HEADER
========================================================= */

.rc-services__head {
    display: grid;
    grid-template-columns: 1.05fr 1.15fr auto;
    align-items: center;
    gap: 55px;
    margin-bottom: 38px;
}

.rc-eyebrow {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 12px;
    color: #b51d24;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.rc-services__title {
    max-width: 480px;
    margin-bottom: 10px;
    color: #20252c;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -0.5px;
}

.rc-underline {
    display: block;
    width: 48px;
    height: 2px;
    margin-top: 14px;
    background: #d71920;
}

.rc-services__desc {
    /*max-width: 420px;*/
    margin: 0;
    color: #5e6670;
    font-size: 15px;
    line-height: 1.7;
}

.rc-link-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    color: #222831;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.3s ease;
}

.rc-link-arrow svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.rc-link-arrow:hover {
    color: #d71920;
}

.rc-link-arrow:hover svg {
    transform: translateX(4px);
}


/* =========================================================
   SLIDER WRAPPER
========================================================= */

.rc-services-slider-wrap {
    position: relative;
    width: 100%;
    padding: 0 64px;
}


/* =========================================================
   SERVICES SLIDER
========================================================= */

.rc-services-slider {
    width: 100%;
    overflow: hidden;
    padding: 2px 1px 12px;
}

.rc-services-slider .swiper-wrapper {
    align-items: stretch;
}

.rc-services-slider .swiper-slide {
    height: auto;
    display: flex;
}


/* =========================================================
   SERVICE CARD
========================================================= */

.rc-card {
    width: 100%;
    min-width: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border: 1px solid #e1e1e1;
    border-radius: 8px;
    overflow: hidden;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.rc-card:hover {
    /*transform: translateY(-6px);*/
    border-color: rgba(215, 25, 32, 0.2);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.09);
}


/* =========================================================
   CARD IMAGE
========================================================= */

/*.rc-card__img {*/
/*    position: relative;*/
/*    width: 100%;*/
/*    height: 210px;*/
/*    overflow: hidden;*/
/*    background: #e5e5e5;*/
/*}*/

/*.rc-card__img img {*/
/*    display: block;*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    object-fit: cover;*/
/*    transition: transform 0.5s ease;*/
/*}*/

/*.rc-card:hover .rc-card__img img {*/
/*    transform: scale(1.06);*/
/*}*/

/*.rc-card__img {*/
/*    width: 100%;*/
/*    aspect-ratio: 16 / 9;*/
/*    overflow: hidden;*/
/*    background: #f5f5f5;*/
/*}*/

/*.rc-card__img img {*/
/*    display: block;*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    margin:20px 0;*/
/*    object-fit: contain;*/
/*    object-position: center;*/
/*}*/

/*.rc-card:hover .rc-card__img img {*/
/*    transform: scale(1.04);*/
/*}*/

.rc-card__img {
    width: 100%;
    height: 100px; /* reduce image section height */
    overflow: hidden;
    background: #f5f5f5;

    display: flex;
    align-items: center;
    justify-content: center;
}

.rc-card__img img {
    display: block;
    width: 120px; 
    height: 120px;
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
    object-position: center;

    margin: 0;
    transition: transform 0.3s ease;
}

/*.rc-card:hover .rc-card__img img {*/
/*    transform: scale(1.04);*/
/*}*/


/* =========================================================
   CARD BODY
========================================================= */

.rc-card__body {
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 110px;
    padding: 10px 20px;
}

.rc-card__title {
    margin: 0 0 10px;
    color: #252a31;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
}

.rc-card__text {
    margin: 0;
    color: #69717a;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.7;
}


/* =========================================================
   CARD ARROW
========================================================= */

.rc-card__arrow {
    width: 42px;
    height: 42px;
    margin-top: auto;
    padding: 0;
    /*display: flex;*/
    display:none;
    align-items: center;
    justify-content: center;
    color: #59616a;
    border: 1px solid #d7dadd;
    border-radius: 50%;
    text-decoration: none;
    transition:
        background 0.3s ease,
        color 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease;
}

.rc-card__arrow svg {
    width: 16px;
    height: 16px;
}

.rc-card__arrow:hover {
    background: #d71920;
    border-color: #d71920;
    color: #ffffff;
    transform: translateX(3px);
}

.rc-card__icon {
    width: 100%;
    height: 115px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.rc-card__icon img {
    display: block;
    width: 90px;
    height: 90px;
    max-width: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.rc-card:hover .rc-card__icon img {
    transform: scale(1.08);
}


/* =========================================================
   SLIDER NAVIGATION
   PREVIOUS = LEFT SIDE
   NEXT = RIGHT SIDE
========================================================= */

.rc-services-slider__prev,
.rc-services-slider__next {
    position: absolute;
    top: 60%;
    z-index: 10;

    width: 52px;
    height: 52px;
    padding: 0;

    /*display: flex;*/
    display:none;
    align-items: center;
    justify-content: center;

    background: #ffffff;
    border: 1px solid #d9dde0;
    border-radius: 50%;

    color: #252a31;
    cursor: pointer;

    transform: translateY(-50%);

    transition:
        background 0.3s ease,
        border-color 0.3s ease,
        color 0.3s ease,
        box-shadow 0.3s ease;
}

.rc-services-slider__prev {
    left: 70px;
}

.rc-services-slider__next {
    right: 70px;
}

.rc-services-slider__prev svg,
.rc-services-slider__next svg {
    width: 20px;
    height: 20px;
}

.rc-services-slider__prev:hover,
.rc-services-slider__next:hover {
    background: #d71920;
    border-color: #d71920;
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(215, 25, 32, 0.2);
}

.rc-services-slider__prev.swiper-button-disabled,
.rc-services-slider__next.swiper-button-disabled {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
}


/* =========================================================
   SLIDER FOOTER
========================================================= */

.rc-services-slider__footer {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 24px;
}


/* =========================================================
   PAGINATION - EXACT CENTER
========================================================= */

.rc-services-slider__pagination {
    width: auto !important;
    position: static !important;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.rc-services-slider__pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    margin: 0 !important;

    background: #c7cbd0;
    opacity: 1;
    border-radius: 50%;

    transition:
        width 0.3s ease,
        background 0.3s ease;
}

.rc-services-slider__pagination .swiper-pagination-bullet-active {
    width: 28px;
    background: #d71920;
    border-radius: 10px;
}


/* =========================================================
   LARGE DESKTOP
========================================================= */

@media (min-width: 1600px) {

    .rc-services-slider-wrap {
        padding-left: 68px;
        padding-right: 68px;
    }

    .rc-services-slider__prev {
    left: 70px;
    }

    .rc-services-slider__next {
        right: 70px;
    }

}

@media (max-width:1280px){
    .rc-services-slider__prev {
        left: 20px;
    }

    .rc-services-slider__next {
        right: 20px;
    }
}


/* =========================================================
   TABLET / SMALL DESKTOP
========================================================= */

@media (max-width: 1199px) {

    .rc-services__head {
        grid-template-columns: 1fr 1fr;
        gap: 35px;
    }

    .rc-link-arrow {
        grid-column: 1 / -1;
        justify-content: flex-start;
    }

    .rc-services-slider-wrap {
        padding-left: 58px;
        padding-right: 58px;
    }

    .rc-services-slider__prev,
    .rc-services-slider__next {
        width: 46px;
        height: 46px;
    }

    .rc-services-slider__prev {
        left: 10px;
    }

    .rc-services-slider__next {
        right: 10px;
    }

    .rc-card__img {
        height: 200px;
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .rc-services {
        padding: 60px 0;
    }

    .rc-services__head {
        grid-template-columns: 1fr;
        gap: 18px;
        margin-bottom: 30px;
    }

    .rc-services__title {
        max-width: 100%;
        font-size: 34px;
    }

    .rc-services__desc {
        /*max-width: 700px;*/
    }

    .rc-link-arrow {
        grid-column: auto;
        justify-content: flex-start;
        margin-top: 5px;
    }

    .rc-services-slider-wrap {
        padding-left: 55px;
        padding-right: 55px;
    }

    .rc-card__body {
        min-height: 110px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .rc-services {
        padding: 50px 0;
    }

    .rc-eyebrow {
        font-size: 12px;
    }

    .rc-services__title {
        font-size: 30px;
    }

    .rc-services__desc {
        font-size: 14px;
        line-height: 1.65;
    }

    .rc-services-slider-wrap {
        padding: 0 48px;
    }

    .rc-services-slider__prev,
    .rc-services-slider__next {
        width: 42px;
        height: 42px;
    }

    .rc-card__img {
        height: 220px;
    }

    .rc-card__body {
        min-height: 110px;
        padding: 10px 20px;
    }

    .rc-card__title {
        font-size: 16px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .rc-services {
        padding: 42px 0;
    }

    .rc-services__title {
        font-size: 27px;
    }

    .rc-services-slider-wrap {
        padding: 0;
    }

    /* Move navigation slightly over card edges */
    .rc-services-slider__prev,
    .rc-services-slider__next {
        width: 38px;
        height: 38px;
    }

    .rc-services-slider__prev {
        left: 8px;
    }

    .rc-services-slider__next {
        right: 8px;
    }

    .rc-card__img {
        height: 200px;
    }

    .rc-services-slider__footer {
        margin-top: 20px;
    }

}

/* =========================================================
   IMPACT SECTION
========================================================= */

.rc-impact {
    width: 100%;
    background: #111216;
    overflow: hidden;
}

.rc-impact__grid {
    width: 100%;
    display: grid;
    grid-template-columns: 30% 70%;
    min-height: 560px;
}


/* =========================================================
   LEFT IMAGE
========================================================= */

.rc-impact__photo {
    position: relative;
    min-height: 400px;
    overflow: hidden;
    background: #0d0e12;
}

.rc-impact__photo img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}


/* =========================================================
   RIGHT CONTENT AREA
========================================================= */

.rc-impact__body {
    position: relative;
    /* display: flex; */
    display: block;
    align-items: center;
    padding: 58px 7% 48px;
    background:
        linear-gradient(
            90deg,
            rgba(18, 19, 24, 1) 0%,
            rgba(18, 19, 24, 0.98) 100%
        );
}

.rc-impact__body .rc-container {
    width: 100%;
    max-width: none;
    margin: 0;
}


/* =========================================================
   EYEBROW
========================================================= */

.rc-impact .rc-eyebrow {
    margin: 0 0 14px;
    color: #d71920;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.rc-impact .rc-eyebrow::before {
    display: none;
}


/* =========================================================
   TOP CONTENT
========================================================= */

.rc-impact__top {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 190px;
    gap: 60px;
    align-items: start;
}

.rc-impact__title {
    max-width: 620px;
    margin: 0 0 20px;
    color: #ffffff;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -0.6px;
}

.rc-impact__text {
    max-width: 600px;
    margin: 0;
    color: #a7aab2;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.75;
}


/* =========================================================
   RED YEARS BADGE
========================================================= */

.rc-impact__badge {
    width: 190px;
    min-height: 122px;
    padding: 22px 18px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    background: #df1c25;
    border-radius: 6px;

    color: #ffffff;
    text-align: center;
}

.rc-impact__badge strong {
    display: block;
    margin-bottom: 6px;

    color: #ffffff;

    font-size: 36px;
    font-weight: 700;
    line-height: 1;
}

.rc-impact__badge span {
    display: block;
    max-width: 145px;

    color: #ffffff;

    font-size: 11px;
    font-weight: 600;
    line-height: 1.45;
}


/* =========================================================
   FEATURES AREA
========================================================= */

.rc-impact__features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;

    margin-top: 20px;
    padding-top: 20px;

    border-top: 1px solid #a4a7ae;
}

.rc-feature {
    position: relative;
    min-width: 0;
    border: 1px solid #a4a7ae;
    border-radius: 10px;
    padding: 20px;
    margin: 10px;
}

.rc-feature:not(:first-child) {
    padding-left: 40px;
}


/* =========================================================
   FEATURE ICON
========================================================= */

.rc-feature__icon {
    width: 32px;
    height: 32px;

    display: flex;
    align-items: center;
    justify-content: flex-start;

    color: #e32a30;
}

.rc-feature__icon svg {
    width: 26px;
    height: 26px;
}


/* =========================================================
   FEATURE CONTENT
========================================================= */

.rc-feature__title {
    margin: 14px 0 9px;

    color: #ffffff;

    font-size: 16px;
    font-weight: 700;
    line-height: 1.3;
}

.rc-feature__text {
    max-width: 250px;
    margin: 0;

    color: #a4a7ae;

    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
}


/* =========================================================
   METHODOLOGY SECTION
========================================================= */

.rc-method {
    position: relative;
    background: #f8f6f4;
    padding: 30px 0;
    overflow: hidden;
}

.rc-method .rc-container {
    width: min(100% - 80px, 1320px);
    margin: 0 auto;
}

/* ---------------------------------------------------------
   Heading
--------------------------------------------------------- */

.rc-method__head {
    max-width: 450px;
    margin-bottom: 30px;
}

.rc-method .rc-eyebrow {
    display: inline-flex;
    align-items: center;
    margin: 0 0 12px;
    color: #c91f26;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.6px;
    text-transform: uppercase;
}

.rc-method__title {
    margin: 0;
    max-width: 450px;
    color: #161a20;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -1.8px;
}

/* ---------------------------------------------------------
   Main Grid
--------------------------------------------------------- */

.rc-method__grid {
    display: grid;
    grid-template-columns: 1fr minmax(400px, 540px) 1fr;
    align-items: center;
    gap: clamp(45px, 6vw, 120px);
    position: relative;
}

/* ---------------------------------------------------------
   Step Columns
--------------------------------------------------------- */

.rc-method__col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* ---------------------------------------------------------
   Step
--------------------------------------------------------- */

.rc-step {
    display: flex;
    align-items: flex-start;
    gap: 22px;
    position: relative;
}

.rc-step__num {
    width: 52px;
    height: 52px;
    flex: 0 0 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #d71920;
    color: #ffffff;

    font-size: 15px;
    font-weight: 700;
    line-height: 1;

    box-shadow: 0 8px 22px rgba(215, 25, 32, 0.16);
}

.rc-step > div {
    padding-top: 3px;
}

.rc-step__title {
    margin: 0 0 9px;
    color: #20242a;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.25;
}

.rc-step__text {
    max-width: 300px;
    margin: 0;

    color: #6b7078;

    font-size: 14px;
    font-weight: 400;
    line-height: 1.3;
}

/* ---------------------------------------------------------
   Center Media
--------------------------------------------------------- */

.rc-method__media {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rc-method__media-img {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 3px;

    /*background: #e7e3df;*/
    /*box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);*/
}

.rc-method__media-img img {
    width: 100%;
    height: 100%;
    display: block;

    object-fit: cover;
    object-position: center;
}

/* ---------------------------------------------------------
   Floating Icon
--------------------------------------------------------- */

.rc-method__media-icon {
    position: absolute;
    top: -22px;
    left: 50%;

    width: 58px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    transform: translateX(-50%);
    z-index: 2;

    border-radius: 50%;

    background: #171b22;
    color: #ffffff;

    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.rc-method__media-icon svg {
    width: 22px;
    height: 22px;
}


/* ==========================================================================
   INSIGHTS
   ========================================================================== */
.rc-insights{ background:var(--rc-black); padding-block:30px; }
.rc-insights__head{
  display:grid;
  grid-template-columns:1fr auto;
  align-items:end;
  gap:24px;
  margin-bottom:44px;
}
.rc-insights__title{ color:var(--rc-white); font-size:36px; font-weight:700; }

.rc-insights__grid{
  grid-template-columns:repeat(4, 1fr);
  gap:20px;
}
.rc-post{
  background:var(--rc-black-soft);
  border-radius:var(--rc-radius);
  overflow:hidden;
  border:1px solid rgba(255,255,255,.08);
  transition:transform .25s ease, border-color .25s ease;
}
.rc-post:hover{ transform:translateY(-4px); border-color:rgba(255,255,255,.2); }
.rc-post__img{ position:relative; aspect-ratio:4/3; overflow:hidden; }
.rc-post__img img{ width:100%; height:100%; object-fit:cover; }
.rc-post__tag{
  position:absolute; left:12px; top:12px;
  background:var(--rc-red);
  color:var(--rc-white);
  font-size:10.5px; font-weight:700;
  letter-spacing:.04em; text-transform:uppercase;
  padding:5px 10px; border-radius:4px;
}
.rc-post__body{ padding:18px; }
.rc-post__title{ color:var(--rc-white); font-size:16px; font-weight:700; height: 65px; line-height:1.4; margin-bottom:10px; }
.rc-post__date{ color:rgba(255,255,255,.45); font-size:12px; }
.rc-post__title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.rc-post__title a:hover {
    color: #c00000;
}


/* ==========================================================================
   CTA BANNER
   ========================================================================== */
.rc-cta {
    width: 100%;
    padding: 30px 0;

    background:
        linear-gradient(
            100deg,
            #b91620 0%,
            #d71920 50%,
            #f02a34 100%
        );
}

.rc-cta .rc-container {
    width: min(100% - 80px, 1320px);
    max-width: none;
    margin: 0 auto;
    padding: 0;
}

.rc-cta__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 25px;
}

.rc-cta__title {
    /*margin: 0 auto;*/
    color: #ffffff;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.16;
}

.rc-cta__text {
    max-width: 420px;
    margin: 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: 14px;
    line-height: 1.75;
}

.rc-cta__actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: nowrap;
}

.rc-cta .rc-btn {
    min-width: 270px;
    min-height: 50px;

    justify-content: space-between;

    padding: 8px 10px 8px 22px;

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.7px;
}

.rc-cta .rc-btn--dark {
    color: #222831;
    background: #ffffff;
}

.rc-cta .rc-btn--dark:hover {
    color: #ffffff;
    background: #171a20;
}

.rc-cta .rc-btn--dark .rc-btn__arrow {
    color: #ffffff;
    background: #d71920;
}

.rc-cta .rc-btn--outline {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.55);
}

.rc-cta .rc-btn--outline:hover {
    color: #d71920;
    background: #ffffff;
}

.rc-cta .rc-btn__arrow {
    width: 28px;
    height: 28px;
}


/* =========================================================
   RECENTLY PUBLISHED INDUSTRY REPORTS
========================================================= */

.rc-reports {
    position: relative;
    padding: 30px 0;
    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #f7f7f8 100%
        );
}

.rc-reports__head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 30px;
}

.rc-reports__title {
    margin: 0;
    color: var(--rc-text);
    font-size: 36px;
    text-align:center;
    font-weight: 700;
    line-height: 1.15;
}

.rc-reports__desc {
    max-width: 720px;
    margin: 16px 0 0;
    color: var(--rc-muted);
    font-size: 14px;
    line-height: 1.75;
}


/* =========================================================
   REPORT GRID
========================================================= */

.rc-reports__grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 90px;
    align-items: start;
}


/* =========================================================
   REPORT CARD
========================================================= */

.rc-report-card {
    position: relative;
    min-width: 0;
}

.rc-report-card__details {
    /* padding-top: 28px; */
}

.rc-report-card__type {
    display: block;
    margin-bottom: 10px;
    color: #555b65;
    font-size: 14px;
    font-weight: 500;
}

.rc-report-card__title {
    display: -webkit-box;
    min-height: 90px;
    margin: 0 0 8px;
    overflow: hidden;
    color: #a60e15;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.7;
    letter-spacing: 0.02em;

    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.rc-report-card__title:hover{
    color:#000;
}

.rc-report-card__pages {
    margin: 0 0 0px;
    color: #5e636c;
    font-size: 12px;
}

.rc-report-card__price {
    margin: 0;
    color: #5e636c;
    font-size: 14px;
}

.rc-report-card__price strong {
    color: #a60e15;
    font-weight: 700;
}

.rc-report-card__link {
    /* display: inline-flex; */
    display: none;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    color: var(--rc-red);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    transition: gap 0.25s ease;
}

.rc-report-card__link:hover {
    gap: 13px;
}


/* =========================================================
   REPORT BOOK
========================================================= */

/* .rc-report-book {
    position: relative;
    width: 100%;
    aspect-ratio: 0.72;
    perspective: 1200px;
} */

.rc-report-book {
    position: relative;
    display: block;
    width: 100%;
    height: 190px;
    margin-bottom: 20px;
    perspective: 1200px;
    text-decoration: none;
}

.rc-report-book__cover {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    overflow: hidden;
    padding: 14px 13px 16px;
    min-height: 180px;
    background:
        linear-gradient(
            135deg,
            #ffffff 0%,
            #f5f5f5 55%,
            #e5e5e5 100%
        );
    border: 1px solid #d9d9d9;
    box-shadow:
        5px 4px 8px rgba(0, 0, 0, 0.16),
        inset 0 0 0 1px rgba(255, 255, 255, 0.8);
    transform: rotateY(-8deg);
    transform-origin: left center;
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}


/* =========================================================
   BOOK SPINE
========================================================= */

.rc-report-book__spine {
    display: none;
    position: absolute;
    z-index: 1;
    top: 4px;
    bottom: 3px;
    left: -9px;
    width: 12px;
    background:
        linear-gradient(
            90deg,
            #79090f,
            #b0141c
        );
    border-radius: 2px 0 0 2px;
    transform: skewY(-20deg);
    transform-origin: right center;
}


/* =========================================================
   BOOK SHADOW
========================================================= */

.rc-report-book__shadow {
    position: absolute;
    z-index: 0;
    /* right: -18px;
    bottom: -12px; */
    left: 5px;
    height: 25px;
    background: rgba(0, 0, 0, 0.2);
    filter: blur(12px);
}


/* =========================================================
   BOOK TOP
========================================================= */

.rc-report-book__top {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 8px;
}

.rc-report-book__label {
    display: inline-flex;
    align-items: center;
    min-height: 18px;
    margin-left:-13px;
    padding: 0 16px 0 8px;
    color: #ffffff;
    background: var(--rc-red);
    font-size: 8px;
    font-weight: 400;
    letter-spacing: 0.08em;
    clip-path: polygon(
        0 0,
        100% 0,
        82% 100%,
        0 100%
    );
}

.rc-report-book__brand {
    color: #a60e15;
    text-align: right;
    line-height: 1;
}

.rc-report-book__brand span {
    display: block;
    font-size: 5px;
    font-weight: 600;
    letter-spacing: 0.08em;
}

.rc-report-book__brand strong {
    display: block;
    margin-top: 2px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.03em;
}


/* =========================================================
   BOOK PATTERN
========================================================= */

.rc-report-book__pattern {
    position: absolute;
    top: -20px;
    right: -30px;
    width: 95px;
    height: 140px;
    opacity: 0.14;
    background:
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 7px,
            #8c8c8c 7px,
            #8c8c8c 8px
        ),
        repeating-linear-gradient(
            -45deg,
            transparent,
            transparent 7px,
            #8c8c8c 7px,
            #8c8c8c 8px
        );
    border-radius: 50%;
}


/* =========================================================
   BOOK CONTENT
========================================================= */

.rc-report-book__content {
    position: relative;
    z-index: 2;
    margin-top: 14px;
}

.rc-report-book__category {
    display: block;
    margin-bottom: 9px;
    color: var(--rc-red);
    font-size: 7px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.rc-report-book__title {
    display: -webkit-box;
    margin: 0;
    overflow: hidden;
    color: #252a32;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.38;

    -webkit-box-orient: vertical;
    -webkit-line-clamp: 6;
}


/* =========================================================
   BOOK FOOTER
========================================================= */

.rc-report-book__bottom {
    position: absolute;
    z-index: 2;
    right: 13px;
    bottom: 14px;
    left: 13px;
    padding-top: 8px;
    border-top: 1px solid #dedede;
    color: #454a52;
    font-size: 9px;
    font-weight: 600;
}


/* =========================================================
   HOVER
========================================================= */

.rc-report-card:hover .rc-report-book__cover {
    transform: rotateY(-2deg) translateY(-8px);
    box-shadow:
        6px 6px 6px rgba(0, 0, 0, 0.22),
        inset 0 0 0 1px rgba(255, 255, 255, 0.8);
}

.rc-report-card:hover .rc-report-book__shadow {
    opacity: 0.6;
}


/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */
.rc-testimonials{
  background:#f7f7f8;
  padding:30px 0;
}

.rc-testimonials__head{
  display:grid;
  grid-template-columns:minmax(0, 1fr) minmax(280px, 520px);
  align-items:end;
  gap:48px;
  margin-bottom:42px;
}

.rc-testimonials__title{
  margin:0;
  color:var(--rc-text);
  text-align:center;
  font-size:36px;
  font-weight:700;
  line-height:1.15;
}

.rc-testimonials__desc{
  margin:0;
  color:var(--rc-muted);
  font-size:15px;
  line-height:1.75;
}

/* ==========================================================================
   TESTIMONIAL SLIDER
   ========================================================================== */

.rc-testimonials__slider {
    position: relative;
    overflow: hidden;
    padding: 0 2px;
}

.rc-testimonials__slider .swiper-wrapper {
    align-items: stretch;
}

.rc-testimonials__slider .swiper-slide {
    height: auto;
    display: flex;
}


/* ==========================================================================
   TESTIMONIAL CARD
   ========================================================================== */

.rc-testimonial-card {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    min-width: 0;
    height: 100%;
    padding: 10px 20px;
    background: #fff;
    border: 1px solid rgba(20, 24, 33, 0.08);
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(20, 24, 33, 0.05);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.rc-testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 40px rgba(20, 24, 33, 0.1);
}


/* Quote Icon */

/*.rc-testimonial-card__quote {*/
/*    width: 44px;*/
/*    height: 44px;*/
/*    display: grid;*/
/*    place-items: center;*/
/*    flex: 0 0 44px;*/
/*    margin-bottom: 22px;*/
/*    color: #fff;*/
/*    background: var(--rc-red);*/
/*    border-radius: 8px;*/
/*    font-size: 17px;*/
/*}*/


/* Testimonial Text */

/*.rc-testimonial-card__text {*/
/*    margin: 0 0 30px;*/
/*    color: #3f4652;*/
/*    font-size: 16px;*/
/*    line-height: 1.8;*/
/*}*/


/* Author */

/* .rc-testimonial-card__author {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: auto;
    padding-top: 10px;
    border-top: 1px solid rgba(20, 24, 33, 0.08);
}

.rc-testimonial-card__avatar {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    flex: 0 0 48px;
    color: #fff;
    background: var(--rc-black);
    border-radius: 50%;
    font-size: 16px;
    font-weight: 700;
} */

/* .rc-testimonial-card__author h3 {
    margin: 0 0 4px;
    color: var(--rc-text);
    font-size: 15px;
    font-weight: 700;
}

.rc-testimonial-card__author p {
    margin: 0;
    color: var(--rc-muted);
    font-size: 12px;
}

.rc-testimonial-card__author span {
    display: block;
    margin-top: 3px;
    color: var(--rc-red);
    font-size: 11px;
    font-weight: 600;
} */


/* ==========================================================================
   SLIDER CONTROLS
   ========================================================================== */

.rc-testimonials__controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-top: 36px;
}

.rc-testimonials__prev,
.rc-testimonials__next {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    flex: 0 0 42px;
    padding: 0;
    cursor: pointer;
    color: var(--rc-text);
    background: #fff;
    border: 1px solid rgba(20, 24, 33, 0.12);
    border-radius: 50%;
    font-size: 13px;
    transition:
        color 0.25s ease,
        background 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
}

.rc-testimonials__prev:hover,
.rc-testimonials__next:hover {
    color: #fff;
    background: var(--rc-red);
    border-color: var(--rc-red);
    transform: translateY(-2px);
}


/* ==========================================================================
   PAGINATION
   ========================================================================== */

.rc-testimonials__pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto !important;
}

.rc-testimonials__pagination .swiper-pagination-bullet {
    width: 7px;
    height: 7px;
    margin: 0 4px !important;
    opacity: 1;
    background: #c8c8c8;
    transition:
        width 0.25s ease,
        background 0.25s ease,
        border-radius 0.25s ease;
}

.rc-testimonials__pagination .swiper-pagination-bullet-active {
    width: 24px;
    border-radius: 10px;
    background: var(--rc-red);
}

/* .rc-testimonial-card{
  position:relative;
  min-width:0;
  height:100%;
  padding:32px;
  background:#fff;
  border:1px solid rgba(20,24,33,.08);
  border-radius:10px;
  box-shadow:0 10px 30px rgba(20,24,33,.05);
} */

.rc-testimonial-card__quote{
  width:44px;
  height:44px;
  display:grid;
  place-items:center;
  margin-bottom:10px;
  color:#fff;
  background:var(--rc-red);
  border-radius:8px;
  font-size:16px;
}

.rc-testimonial-card__text{
  min-height:200px;
  margin:0 0 10px;
  color:#3f4652;
  font-size:14px;
  line-height:1.8;
}

.rc-testimonial-card__author{
  display:flex;
  align-items:center;
  gap:14px;
  padding-top:10px;
  border-top:1px solid rgba(20,24,33,.08);
}

.rc-testimonial-card__avatar{
  width:48px;
  height:48px;
  display:grid;
  place-items:center;
  flex:0 0 48px;
  color:#fff;
  background:var(--rc-black);
  border-radius:50%;
  font-size:16px;
  font-weight:700;
}

.rc-testimonial-card__author h3{
  margin:0 0 4px;
  color:var(--rc-text);
  font-size:15px;
  font-weight:700;
}

.rc-testimonial-card__author p{
  margin:0;
  color:var(--rc-muted);
  font-size:12px;
}

.rc-testimonial-card__author span{
  display:block;
  margin-top:3px;
  color:var(--rc-red);
  font-size:11px;
  font-weight:600;
}



/* =========================================================
   3840px - 4K
========================================================= */
@media (min-width: 3840px) {

    .rc-insights {
        padding-block: 40px;
    }

    .rc-insights__head {
        margin-bottom: 60px;
    }

    .rc-insights__title {
        font-size: 52px;
    }

    .rc-insights__grid {
        gap: 32px;
    }

    .rc-post__body {
        padding: 26px;
    }

    .rc-post__title {
        font-size: 22px;
        height: 88px;
    }

    .rc-post__date {
        font-size: 16px;
    }

    .rc-post__tag {
        font-size: 13px;
        padding: 7px 14px;
    }

    .rc-reports__title {
        font-size: 56px;
    }
}

@media (min-width: 3000px) {

    .rcube-financial {
        min-height: 850px;
    }

    .rcube-financial-grid {
        width: min(calc(100% - 180px), 2600px);
        min-height: 550px;

        grid-template-columns: 500px 1fr 450px;

        column-gap: 180px;
    }

    .rcube-financial-person {
        height: 500px;
    }

    .rcube-financial-content h2 {
        font-size: 56px;
    }

    .rcube-financial-content p {
        max-width: 700px;
        font-size: 18px;
    }

    .rcube-stat-icon {
        width: 80px;
        height: 80px;
        flex-basis: 80px;
        font-size: 26px;
    }

    .rcube-stat strong {
        font-size: 48px;
    }

    .rcube-stat small {
        font-size: 16px;
    }

    .rc-reports__title {
        font-size: 56px;
    }
}


@media (min-width: 2560px) and (max-width: 3839px) {

    .rc-insights {
        padding-block: 40px;
    }

    .rc-insights__head {
        margin-bottom: 52px;
    }

    .rc-insights__title {
        font-size: 44px;
    }

    .rc-insights__grid {
        gap: 28px;
    }

    .rc-post__body {
        padding: 22px;
    }

    .rc-post__title {
        font-size: 19px;
        height: 76px;
    }

    .rc-post__date {
        font-size: 14px;
    }

    .rcube-financial {
        min-height: 700px;
    }

    .rcube-financial-grid {
        width: min(calc(100% - 120px), 2100px);
        min-height: 500px;

        grid-template-columns: 400px 1fr 380px;

        column-gap: 140px;
    }

    .rcube-financial-person {
        height: 500px;
    }

    .rcube-financial-content h2 {
        font-size: 52px;
    }

    .rcube-financial-content p {
        font-size: 16px;
    }

}

@media (min-width: 2560px) {

    .rc-impact__grid {
        min-height: 720px;
        grid-template-columns: 29% 71%;
    }

    .rc-impact__photo {
        min-height: 550px;
    }

    .rc-impact__body {
        padding: 80px 10% 70px;
    }

    .rc-impact__title {
        max-width: 850px;
        font-size: 48px;
    }

    .rc-impact__text {
        max-width: 780px;
        font-size: 18px;
    }

    .rc-impact__top {
        grid-template-columns: minmax(0, 1fr) 240px;
        gap: 90px;
    }

    .rc-impact__badge {
        width: 240px;
        min-height: 160px;
    }

    .rc-impact__badge strong {
        font-size: 50px;
    }

    .rc-impact__badge span {
        font-size: 15px;
    }

    .rc-impact__features {
        margin-top: 70px;
        padding-top: 45px;
    }

    .rc-feature__title {
        font-size: 20px;
    }

    .rc-feature__text {
        max-width: 330px;
        font-size: 16px;
    }


    .rc-method {
        padding: 80px 0;
    }

    .rc-method .rc-container {
        width: min(100% - 180px, 2500px);
    }

    .rc-method__head {
        max-width: 620px;
        margin-bottom: 45px;
    }

    .rc-method .rc-eyebrow {
        font-size: 15px;
        margin-bottom: 18px;
    }

    .rc-method__title {
        max-width: 620px;
        font-size: 56px;
    }

    .rc-method__grid {
        grid-template-columns: 1fr minmax(650px, 800px) 1fr;
        gap: 150px;
    }

    .rc-method__col {
        gap: 70px;
    }

    .rc-step {
        gap: 28px;
    }

    .rc-step__num {
        width: 70px;
        height: 70px;
        flex-basis: 70px;
        font-size: 19px;
    }

    .rc-step__title {
        font-size: 28px;
    }

    .rc-step__text {
        max-width: 400px;
        font-size: 19px;
    }

    .rc-method__media-img {
        height: 500px;
    }

    .rc-method__media-icon {
        width: 74px;
        height: 74px;
        top: -28px;
    }

    .rc-hero {
        height: 550px;
    }

    .rc-hero__inner {
        width: min(calc(100% - 120px), 2100px);

        margin: 0 auto;
    }

    .rc-hero__panel {
        width: 560px;
        padding: 50px;
    }

    .rc-hero__title {
        font-size: 46px;
    }

    .rc-hero__text {
        max-width: 450px;
        font-size: 14px;
    }

    .rc-reports__title {
        font-size: 46px;
    }

}


/* =========================================================
   2560px
========================================================= */

@media (min-width: 1921px) and (max-width: 2560px) {

    .rc-method .rc-container {
        width: min(100% - 140px, 2100px);
    }

    .rc-method__grid {
        grid-template-columns: 1fr minmax(560px, 680px) 1fr;
        gap: 110px;
    }

    .rc-method__media-img {
        height: 450px;
    }

    .rc-method__title {
        font-size: 46px;
    }

    .rc-insights {
        padding-block: 30px;
    }

    .rc-insights__head {
        margin-bottom: 48px;
    }

    .rc-insights__title {
        font-size: 40px;
    }

    .rc-insights__grid {
        gap: 24px;
    }

    .rc-post__body {
        padding: 20px;
    }

    .rc-post__title {
        font-size: 17px;
        height: 68px;
    }

    .rc-hero {
        height: 500px;
    }

    .rc-hero__inner {
        width: min(calc(100% - 80px), 1600px);
                margin: 90px 50px 0 100px;
    }

    .rc-hero__panel {
        width: 500px;
        padding: 38px;
    }

    .rc-hero__title {
        font-size: 40px;
    }

    .rc-reports__title {
        font-size: 40px;
    }

    .rcube-financial {
        min-height: 500px;
    }

    .rcube-financial-grid {
        width: min(calc(100% - 100px), 1600px);
        min-height: 500px;

        grid-template-columns: 340px 1fr 300px;

        column-gap: 110px;
    }

    .rcube-financial-person {
        height: 450px;
    }

    .rcube-financial-content h2 {
        font-size: 46px;
    }


}


/* =========================================================
   1920px
========================================================= */

@media (max-width: 1920px) {


    .rc-impact__grid {
        grid-template-columns: 30% 70%;
    }

    .rc-impact__body {
        padding-left: 7%;
        padding-right: 7%;
    }

    .rc-method {
        padding: 30px 0;
    }

    .rc-method .rc-container {
        width: min(100% - 100px, 1720px);
    }

    .rc-method__grid {
        grid-template-columns: 1fr minmax(460px, 560px) 1fr;
        gap: 75px;
    }

    .rc-method__media-img {
        height: 350px;
    }

    .rc-insights {
        padding-block: 30px;
    }

    .rc-insights__head {
        margin-bottom: 44px;
    }

    .rc-insights__title {
        font-size: 36px;
    }

    .rc-insights__grid {
        gap: 20px;
    }

    .rc-post__body {
        padding: 18px;
    }

    .rc-reports__grid {
        gap: 90px;
    }

    .rc-reports__title {
        font-size: 40px;
    }


}

@media (min-width: 1600px) {

    /* .rc-services {
        padding: 30px 0;
    }

    .rc-services .rc-container {
        max-width: 1450px;
    }

    .rc-services__title {
        max-width: 400px;
        font-size: 36px;
    }

    .rc-services__desc {
        max-width: 470px;
        font-size: 14px;
    }

    .rc-card__img {
        height: 180px;
    }

    .rc-card__body {
        min-height: 175px;
    }

    .rc-card__title {
        font-size: 18px;
    }

    .rc-card__text {
        font-size: 14px;
    } */
}


/* =========================================================
   1440px / 1366px
========================================================= */

@media (max-width: 1440px) {

    .rc-impact__grid {
        grid-template-columns: 30% 70%;
        min-height: 510px;
    }

    .rc-impact__photo {
        min-height: 500px;
    }

    .rc-impact__body {
        padding: 48px 6%;
    }

    .rc-impact__top {
        grid-template-columns: minmax(0, 1fr) 170px;
        gap: 45px;
    }

    .rc-impact__title {
        font-size: 40px;
    }

    .rc-impact__badge {
        width: 170px;
        min-height: 112px;
    }

    .rc-impact__features {
        margin-top: 45px;
        padding-top: 30px;
    }

    .rc-method {
        padding: 30px 0;
    }

    .rc-method .rc-container {
        width: min(100% - 70px, 1320px);
    }

    .rc-method__head {
        margin-bottom: 28px;
    }

    .rc-method__grid {
        grid-template-columns: 1fr minmax(370px, 470px) 1fr;
        gap: 50px;
    }

    .rc-method__media-img {
        height: 350px;
    }

    .rc-method__col {
        gap: 35px;
    }

    .rc-step__num {
        width: 46px;
        height: 46px;
        flex-basis: 46px;
        font-size: 13px;
    }

    .rc-step__title {
        font-size: 17px;
    }

    .rc-step__text {
        font-size: 13px;
        line-height: 1.6;
    }

    .rc-hero {
        height: 450px;
    }

    .rc-hero__panel {
        width: 500px;
    }

    .rc-hero__title {
        font-size: 40px;
    }

    .rcube-financial-grid {
        grid-template-columns: 1fr 2fr 1fr;

        column-gap: 65px;
    }

    .rcube-financial-person {
        height: 400px;
    }

    .rcube-financial-content h2 {
        font-size: 36px;
    }

    .rc-reports__title {
        font-size: 36px;
    }

    .rc-reports__grid {
        grid-template-columns: repeat(6, minmax(0, 1fr));
        gap: 65px;
    }

    .rc-report-card__title {
        min-height: auto;
    }

}

/* =========================================================
   1366px 
========================================================= */

@media (max-width: 1366px) {

    .rc-method .rc-container {
        width: min(100% - 60px, 1240px);
    }

    .rc-container { padding-inline: 50px; }
    

    .rc-method__grid {
        grid-template-columns: 1fr minmax(340px, 430px) 1fr;
        gap: 40px;
    }

    .rc-method__media-img {
        height: 350px;
    }

    .rc-method__title {
        font-size: 36px;
    }

    .rc-step {
        gap: 16px;
    }

    .rc-step__text {
        max-width: 245px;
    }

    .rc-insights {
        padding-block: 32px;
    }

    .rc-insights__head {
        margin-bottom: 38px;
    }

    .rc-insights__title {
        font-size: 36px;
    }

    .rc-insights__grid {
        gap: 18px;
    }

    .rc-post__body {
        padding: 16px;
    }

    .rc-post__title {
        font-size: 15px;
        height: 62px;
    }

    .rc-hero {
        height: 450px;
    }

    .rc-hero__panel {
        width: 500px;
    }

    .rc-hero__title {
        font-size: 36px;
    }
    
     .rc-reports__title {
        font-size: 36px;
    }

    .rcube-financial-grid {
        grid-template-columns: 1fr 2fr 1fr;

        column-gap: 65px;
    }

    .rcube-financial-person {
        height: 400px;
    }

    .rcube-financial-content h2 {
        font-size: 36px;
    }

    .rc-testimonials__title {
        font-size: 32px;
    }


}


/* =========================================================
   1280px
========================================================= */

@media (max-width: 1280px) {

    .rc-container { padding-inline: 50px; }

    .rc-impact__grid {
        grid-template-columns: 32% 68%;
        min-height: 500px;
    }

    .rc-impact__photo {
        min-height: 450px;
    }

    .rc-impact__body {
        padding: 45px 5%;
    }

    .rc-impact__top {
        gap: 35px;
    }

    .rc-impact__title {
        font-size: 30px;
    }

    .rc-impact__text {
        font-size: 14px;
    }

    .rc-feature:not(:first-child) {
        padding-left: 28px;
    }

    .rc-feature {
        padding-right: 20px;
    }

    .rc-method__title {
        font-size: 30px;
    }

    .rc-method__grid {
        grid-template-columns: 1fr minmax(320px, 390px) 1fr;
        gap: 32px;
    }

    .rc-method__media-img {
        height: 300px;
    }

    .rc-step__num {
        width: 42px;
        height: 42px;
        flex-basis: 42px;
        font-size: 12px;
    }

    .rc-step__title {
        font-size: 16px;
    }

    .rc-step__text {
        font-size: 12px;
    }

    .rc-insights {
        padding-block: 30px;
    }

    .rc-insights__head {
        margin-bottom: 36px;
    }

    .rc-insights__title {
        font-size: 30px;
    }

    .rc-insights__grid {
        gap: 16px;
    }

    .rc-post__body {
        padding: 15px;
    }

    .rc-post__title {
        font-size: 15px;
        height: 62px;
    }

    .rc-hero {
        height: 450px;
    }

    .rc-hero__panel {
        width: 500px;
    }

    .rc-hero__title {
        font-size: 30px;
    }

    .rcube-financial-grid {
        grid-template-columns: 1fr 2fr 1fr;

        column-gap: 40px;
    }

    .rcube-financial-person {
        height: 350px;
    }

    .rcube-financial-content h2 {
        font-size: 30px;
    }

    .rc-reports__title {
        font-size: 30px;
    }

    .rc-testimonials__title {
        font-size: 30px;
    }

}


/* =========================================================
   1024px
========================================================= */

@media (max-width: 1024px) {

    .rc-impact__grid {
        /* grid-template-columns: 35% 65%; */
        min-height: auto;
        grid-template-columns: 1fr;
        margin: 20px 0;
    }

    .rc-cta__actions {
        display: grid;
        margin: 0 auto;
    }

    .rc-impact__photo {
        min-height: 350px;
    }

    .rc-impact__body {
        padding: 45px 40px;
    }

    .rc-impact__top {
        grid-template-columns: minmax(0, 1fr) 145px;
        gap: 25px;
    }

    .rc-impact__title {
        font-size: 28px;
    }

    .rc-cta__title{
        font-size:26px
    }

    .rc-impact__badge {
        width: 145px;
        min-height: 105px;
        padding: 18px 10px;
    }

    .rc-impact__badge strong {
        font-size: 30px;
    }

    .rc-impact__features {
        margin-top: 40px;
        padding-top: 28px;
    }

    .rc-feature:not(:first-child) {
        padding-left: 20px;
    }

    .rc-feature__title {
        font-size: 14px;
    }

    .rc-feature__text {
        font-size: 12px;
    }

    .rc-method {
        padding: 30px 0;
    }

    .rc-method .rc-container {
        width: min(100% - 50px, 960px);
    }

    .rc-container { padding-inline: 30px; }

    .rc-method__head {
        max-width: 500px;
        margin-bottom: 35px;
    }

    .rc-method__title {
        font-size: 28px;
    }

    .rc-method__grid {
        grid-template-columns: 1fr minmax(280px, 350px) 1fr;
        gap: 25px;
    }

    .rc-method__col {
        gap: 28px;
        padding: 0 !important;
    }

    .rc-method__media-img {
        height: 300px;
    }

    .rc-step {
        gap: 13px;
    }

    .rc-step__num {
        width: 38px;
        height: 38px;
        flex-basis: 38px;
        font-size: 11px;
    }

    .rc-step__title {
        margin-bottom: 5px;
        font-size: 14px;
    }

    .rc-step__text {
        font-size: 11px;
        line-height: 1.55;
    }

    /* .rc-services .rc-container {
        width: min(92%, 900px);
    }

    .rc-services__head {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .rc-link-arrow {
        grid-column: 1 / -1;
        margin-top: 0;
    }

    .rc-services__row {
        grid-template-columns: repeat(2, 1fr);
    }

    .rc-mini-list {
        grid-column: 1 / -1;

        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .rc-card__img {
        height: 180px;
    } */

    .rc-insights {
        padding-block: 28px;
    }

    .rc-insights__head {
        margin-bottom: 32px;
    }

    .rc-insights__title {
        font-size: 30px;
    }

    .rc-insights__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .rc-post__body {
        padding: 18px;
    }

    .rc-post__title {
        font-size: 17px;
        height: auto;
        min-height: 48px;
    }

    .rc-hero {
        height: 450px;
    }

    .rc-hero__inner {
        width: calc(100% - 48px);
    }

    .rc-hero__panel {
        width: 450px;
        padding: 30px;
        margin: 145px 20px 0 20px;
    }

    .rc-hero__title {
        font-size: 30px;
    }

    .rcube-financial {
        min-height: auto;
    }

    .rcube-financial-grid {
        width: calc(100% - 50px);

        min-height: auto;

        padding: 50px 0;

        grid-template-columns: 220px 1fr;

        column-gap: 45px;
    }

    .rcube-financial-person {
        height: 350px;
    }

    .rcube-stats {
        grid-column: 1 / -1;

        display: grid;

        grid-template-columns: repeat(3, 1fr);

        margin-top: 20px;

        gap: 20px;
    }

    .rcube-financial-content h2 {
        font-size: 30px;
    }


    .rc-reports {
        padding: 30px 0;
    }

    .rc-reports__title {
        font-size: 28px;
    }

    .rc-reports__grid {
        grid-template-columns: repeat(6, minmax(0, 1fr));
        gap: 30px;
    }

    .rc-report-card__details {
        /* padding-top: 22px; */
    }

    .rc-report-book {
        max-width: 230px;
        height: 170px;
    }


    .rc-testimonials{
        padding:30px 0;
    }

    .rc-testimonials__title {
        font-size: 30px;
    }

    .rc-testimonials__grid{
        gap:18px;
    }

    
    .rc-testimonial-card{
        padding:24px;
    }

    .rc-testimonial-card__text{
        min-height:0;
    }

    .rc-testimonials__head {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 35px;
    }




}


/* =========================================================
   768px
========================================================= */

@media (max-width: 768px) {

    .rc-impact__grid {
        grid-template-columns: 1fr;
    }

    .rc-impact__photo {
        min-height: 400px;
        height: 400px;
    }

    .rc-impact__body {
        padding: 55px 6%;
    }

    .rc-impact__top {
        grid-template-columns: 1fr 150px;
    }

    .rc-impact__features {
        gap: 30px;
    }

    .rc-method {
        padding: 30px 0;
    }

    .rc-method .rc-container {
        width: min(100% - 40px, 700px);
    }

    .rc-method__head {
        max-width: 100%;
        margin-bottom: 35px;
    }

    .rc-method__title {
        font-size: 28px;
        max-width: 500px;
    }

    .rc-method__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .rc-method__col {
        gap: 25px;
    }

    .rc-method__col:first-child {
        order: 1;
    }

    .rc-method__media {
        order: 2;
        max-width: 600px;
        width: 100%;
        margin: 5px auto;
    }

    .rc-method__col:last-child {
        order: 3;
    }

    .rc-method__media-img {
        height: 300px;
    }

    .rc-step__num {
        width: 48px;
        height: 48px;
        flex-basis: 48px;
    }

    .rc-step__title {
        font-size: 18px;
    }

    .rc-step__text {
        max-width: 480px;
        font-size: 14px;
    }

    /* .rc-services {
        padding: 55px 0;
    }

    .rc-services .rc-container {
        width: min(92%, 650px);
    }

    .rc-services__head {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .rc-services__title {
        max-width: 100%;
        font-size: 30px;
    }

    .rc-services__desc {
        max-width: 550px;
        margin-top: 5px;
    }

    .rc-link-arrow {
        margin-top: 5px;
    }

    .rc-services__row {
        grid-template-columns: repeat(2, 1fr);
    } */

    .rc-insights {
        padding-block: 26px;
    }

    .rc-insights__head {
        grid-template-columns: 1fr;
        align-items: start;
        gap: 16px;
        margin-bottom: 30px;
    }

    .rc-insights__title {
        font-size: 28px;
    }

    .rc-insights__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .rc-post__body {
        padding: 16px;
    }

    .rc-post__title {
        font-size: 16px;
        height: auto;
        min-height: 46px;
    }

    .rc-hero {
        height: 400px;
    }

    .rc-hero__bg {
        object-position: 68% center;
    }

    .rc-hero__inner {
        width: calc(100% - 40px);
    }

    .rc-hero__panel {
        width: 400px;
        max-width: 100%;
    }

    .rc-hero__title {
        font-size: 33px;
    }

    .rcube-financial-grid {
        width: calc(100% - 40px);

        grid-template-columns: 190px 1fr;

        column-gap: 30px;
    }

    .rcube-financial-person {
        height: 450px;
    }

    .rcube-financial-content h2 {
        font-size: 28px;
    }

    .rcube-financial-content p {
        font-size: 14px;
    }

    .rcube-stats {
        grid-template-columns: 1fr;
    }

    .rcube-stat {
        justify-content: flex-start;
    }

    .rc-reports__head {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 30px;
    }

    .rc-reports__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 70px;
    }

    .rc-report-book {
        max-width: 230px;
        height: 190px;
    }

    .rc-report-book__title {
        font-size: 14px;
    }

  .rc-testimonials__head{
    grid-template-columns:repeat(2, minmax(0, 1fr));
    align-items:start;
    gap:18px;
  }

  .rc-testimonials__grid{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }

  .rc-reports__head .rc-link-arrow{
    justify-self:start;
  }

  .rc-testimonials {
        padding: 30px 0;
    }

    .rc-testimonials__title {
        font-size: 28px;
    }

    .rc-testimonial-card {
        padding: 28px;
    }


}


/* =========================================================
   576px
========================================================= */

@media (max-width: 576px) {

    .rc-impact__photo {
        height: 300px;
        min-height: 300px;
    }

    .rc-cta__grid {
        display: grid;
        grid-template-columns: 1fr;
        margin:0 auto;
    }

    .rc-impact__body {
        padding: 45px 25px;
    }

    .rc-impact__top {
        display: flex;
        flex-direction: column;
        gap: 25px;
    }

    .rc-impact__title {
        font-size: 26px;
    }

    .rc-impact__text {
        font-size: 13px;
    }

    .rc-impact__badge {
        width: 100%;
        min-height: 110px;
        align-items: flex-start;
        text-align: left;
    }

    .rc-impact__features {
        grid-template-columns: 1fr;
        gap: 30px;

        margin-top: 35px;
        padding-top: 30px;
    }

    .rc-feature,
    .rc-feature:not(:first-child) {
        padding: 20px !important;
    }

    .rc-feature__title {
        margin-top: 8px;
    }

    .rc-method {
        padding: 30px 0;
    }

    .rc-method .rc-container {
        width: min(100% - 32px, 540px);
    }

    .rc-method__head {
        margin-bottom: 32px;
    }

    .rc-method .rc-eyebrow {
        font-size: 10px;
    }

    .rc-method__title {
        font-size: 26px;
        letter-spacing: -0.8px;
    }

    .rc-method__grid {
        gap: 35px;
    }

    .rc-method__media-img {
        height: 300px;
    }

    .rc-method__media-icon {
        width: 48px;
        height: 48px;
        top: -18px;
    }

    .rc-method__media-icon svg {
        width: 17px;
        height: 17px;
    }

    .rc-step {
        gap: 15px;
    }

    .rc-step__num {
        width: 43px;
        height: 43px;
        flex-basis: 43px;
    }

    .rc-step__title {
        font-size: 16px;
    }

    .rc-step__text {
        font-size: 13px;
        line-height: 1.65;
    }

    /* .rc-services {
        padding: 48px 0;
    }

    .rc-services .rc-container {
        width: calc(100% - 30px);
    }

    .rc-services__title {
        font-size: 27px;
    }

    .rc-services__desc {
        font-size: 13px;
    }

    .rc-services__row {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .rc-card__img {
        height: 210px;
    }

    .rc-card__body {
        min-height: 150px;
    }

    .rc-mini-list {
        grid-column: auto;

        display: flex;
        flex-direction: column;
    }

    .rc-mini-card {
        min-height: 110px;
    } */

    .rc-insights {
        padding-block: 24px;
    }

    .rc-insights__head {
        grid-template-columns: 1fr;
        gap: 14px;
        margin-bottom: 24px;
    }

    .rc-insights__title {
        font-size: 26px;
    }

    .rc-insights__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .rc-post__body {
        padding: 14px;
    }

    .rc-post__title {
        font-size: 15px;
        height: auto;
        min-height: 44px;
        margin-bottom: 8px;
    }

    .rc-post__date {
        font-size: 11px;
    }

    .rc-post__tag {
        left: 10px;
        top: 10px;
        font-size: 9px;
        padding: 4px 8px;
    }

    .rc-hero {
        height: 450px;
    }

    .rc-hero__bg {
        object-position: 65% center;
    }

    .rc-hero__scrim {
        background:
            linear-gradient(
                90deg,
                rgba(0, 0, 0, 0.45),
                rgba(0, 0, 0, 0.1)
            );
    }

    .rc-hero__inner {
        width: calc(100% - 30px);
    }

    .rc-hero__panel {
        width: 100%;
        padding: 26px 24px;
    }

    .rc-hero__title {
        font-size: 30px;
    }

    .rc-hero__text {
        font-size: 12px;
    }

    .rcube-financial-grid {
        width: calc(100% - 32px);

        display: flex;
        flex-direction: column;

        align-items: stretch;

        gap: 30px;

        padding: 40px 0;
    }

    .rcube-financial-person {
        width: 100%;
        height: 500px;

        background-position: center top;
    }

    .rcube-financial-content {
        max-width: 100%;
    }

    .rcube-financial-content h2 {
        font-size: 26px;
    }

    .rcube-stats {
        display: grid;

        grid-template-columns: 1fr;

        gap: 18px;
    }

    .rcube-stat-icon {
        width: 52px;
        height: 52px;

        flex-basis: 52px;
    }

    .rc-reports {
        padding: 55px 0;
    }

    .rc-reports__title {
        font-size: 26px;
    }

    .rc-reports__desc {
        font-size: 14px;
    }

    .rc-reports__grid {
        gap: 35px 20px;
    }

    .rc-report-card__title {
        font-size: 16px;
        line-height: 1.6;
    }

  .rc-testimonials{
    padding:30px 0;
  }

  .rc-testimonials__grid{
    grid-template-columns:1fr;
  }

    .rc-testimonials__title {
        font-size: 26px;
    }

    .rc-testimonials__desc {
        font-size: 14px;
        line-height: 1.7;
    }

    .rc-testimonial-card {
        padding: 24px;
    }

    .rc-testimonial-card__text {
        margin-bottom: 24px;
        font-size: 14px;
        line-height: 1.75;
    }

    .rc-testimonials__controls {
        margin-top: 28px;
    }




}


/* =========================================================
   480px
========================================================= */

@media (max-width: 480px) {

    .rc-impact__photo {
        height: 260px;
        min-height: 260px;
    }

    .rc-impact__body {
        padding: 40px 20px;
    }

    .rc-impact__title {
        font-size: 24px;
    }

    .rc-impact .rc-eyebrow {
        font-size: 9px;
    }

    .rc-feature__text {
        max-width: 100%;
    }

    .rc-method .rc-container {
        width: min(100% - 28px, 452px);
    }

    .rc-method__title {
        font-size: 24px;
    }

    .rc-method__media-img {
        height: 300px;
    }

    .rc-method__col {
        gap: 24px;
    }

    .rc-step__text {
        font-size: 12px;
    }

    .rc-insights {
        padding-block: 22px;
    }

    .rc-insights__head {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-bottom: 22px;
    }

    .rc-insights__title {
        font-size: 24px;
    }

    .rc-insights__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .rc-post {
        display: grid;
        grid-template-columns: 150px 1fr;
    }

    .rc-post__img {
        aspect-ratio: auto;
        height: 100%;
        min-height: 150px;
    }

    .rc-post__body {
        padding: 14px;
    }

    .rc-post__title {
        font-size: 15px;
        height: auto;
        min-height: 0;
        margin-bottom: 8px;
    }

    .rc-reports__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .rc-report-card {
        display: grid;
        grid-template-columns: 150px minmax(0, 1fr);
        gap: 22px;
        align-items: start;
    }

    .rc-report-book {
        width: 150px;
        height: 200px;
    }

    .rc-report-card__details {
        padding-top: 0;
    }

    .rc-report-card__title {
        -webkit-line-clamp: 4;
    }
}


/* =========================================================
   375px
========================================================= */

@media (max-width: 375px) {

    .rc-impact__photo {
        height: 230px;
        min-height: 230px;
    }

    .rc-impact__body {
        padding: 38px 16px;
    }

    .rc-impact__title {
        font-size: 22px;
    }

    .rc-impact__text {
        font-size: 12px;
        line-height: 1.65;
    }

    .rc-impact__badge strong {
        font-size: 30px;
    }

    .rc-method {
        padding: 20px 0;
    }

    .rc-method .rc-container {
        width: min(100% - 24px, 351px);
    }

    .rc-method__title {
        font-size: 24px;
        line-height: 1.12;
    }

    .rc-method__media-img {
        height: 270px;
    }

    .rc-step {
        gap: 12px;
    }

    .rc-step__num {
        width: 38px;
        height: 38px;
        flex-basis: 38px;
        font-size: 10px;
    }

    .rc-step__title {
        font-size: 15px;
    }

    .rc-step__text {
        font-size: 11px;
        line-height: 1.6;
    }

    /* .rc-services .rc-container {
        width: calc(100% - 24px);
    }

    .rc-services__title {
        font-size: 25px;
    }

    .rc-card__img {
        height: 190px;
    } */
    .rc-insights {
        padding-block: 20px;
    }

    .rc-insights__head {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-bottom: 20px;
    }

    .rc-insights__title {
        font-size: 23px;
        line-height: 1.25;
    }

    .rc-insights__grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .rc-post {
        display: block;
    }

    .rc-post__img {
        aspect-ratio: 16 / 9;
    }

    .rc-post__body {
        padding: 14px;
    }

    .rc-post__title {
        font-size: 16px;
        height: auto;
        min-height: 0;
        margin-bottom: 8px;
    }

    .rc-post__date {
        font-size: 11px;
    }

    .rc-insights {
        padding-block: 18px;
    }

    .rc-insights__head {
        grid-template-columns: 1fr;
        gap: 10px;
        margin-bottom: 18px;
    }

    .rc-insights__title {
        font-size: 22px;
        line-height: 1.25;
    }

    .rc-insights__grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .rc-post {
        border-radius: 8px;
    }

    .rc-post__img {
        aspect-ratio: 16 / 9;
    }

    .rc-post__body {
        padding: 12px;
    }

    .rc-post__title {
        font-size: 15px;
        height: auto;
        min-height: 0;
        line-height: 1.4;
        margin-bottom: 7px;
    }

    .rc-post__date {
        font-size: 10px;
    }

    .rc-post__tag {
        left: 8px;
        top: 8px;
        font-size: 8px;
        padding: 4px 7px;
    }

    .rc-hero {
        height: 450px;
    }

    .rc-hero__panel {
        padding: 22px 20px;
    }

    .rc-hero__title {
        font-size: 27px;
        line-height: 1.15;
    }

    .rc-hero__text {
        line-height: 1.7;
    }

    .rcube-financial-grid {
        width: calc(100% - 28px);
    }

    .rcube-financial-person {
        height: 450px;
    }

    .rcube-financial-content h2 {
        font-size: 24px;
    }

    .rcube-financial-content p {
        font-size: 12px;
    }

    .rc-report-card {
        grid-template-columns: 130px minmax(0, 1fr);
        gap: 16px;
    }

    .rc-report-book {
        width: 130px;
        height: 200px;
    }

    .rc-report-book__title {
        font-size: 11px;
    }

    .rc-testimonial-card{
        padding:20px;
    }

    .rc-testimonials__title{
        font-size:26px;
    }

    .rc-testimonial-card__quote {
        width: 40px;
        height: 40px;
        flex-basis: 40px;
        margin-bottom: 18px;
    }

    .rc-testimonials__prev,
    .rc-testimonials__next {
        width: 38px;
        height: 38px;
        flex-basis: 38px;
    }

  
}


/* =========================================================
   320px
========================================================= */

@media (max-width: 320px) {

    .rc-impact__photo {
        height: 210px;
        min-height: 210px;
    }

    .rc-impact__body {
        padding: 35px 14px;
    }

    .rc-impact__title {
        font-size: 22px;
    }

    .rc-impact__features {
        gap: 25px;
    }

    .rc-feature__title {
        font-size: 15px;
    }

    .rc-feature__text {
        font-size: 12px;
    }

    .rc-method .rc-container {
        width: min(100% - 20px, 300px);
    }

    .rc-method__title {
        font-size: 22px;
    }

    .rc-method__media-img {
        height: 235px;
    }

    .rc-method__media-icon {
        width: 42px;
        height: 42px;
    }

    .rc-method__col {
        gap: 20px;
    }

    .rc-step {
        gap: 10px;
    }

    .rc-step__num {
        width: 34px;
        height: 34px;
        flex-basis: 34px;
        font-size: 9px;
    }

    .rc-step__title {
        font-size: 14px;
    }

    .rc-step__text {
        font-size: 10px;
    }

    .rc-services .rc-container {
        width: calc(100% - 20px);
    }

    .rc-eyebrow {
        font-size: 10px;
    }

    /* .rc-services__title {
        font-size: 22px;
    }

    .rc-services__desc {
        font-size: 12px;
    }

    .rc-card__img {
        height: 170px;
    } */

    .rc-hero__inner {
        width: calc(100% - 20px);
    }

    .rc-hero__panel {
        padding: 20px 16px;
    }

    .rc-hero__title {
        font-size: 24px;
    }

    .rc-hero__kicker {
        font-size: 10px;
    }

    .rc-hero .rc-btn--dark {
        min-width: 175px;
        font-size: 10px;
    }

    .rcube-financial-grid {
        width: calc(100% - 20px);
    }

    .rcube-financial-person {
        height: 280px;
    }

    .rcube-financial-content h2 {
        font-size: 22px;
    }

    .rcube-stat strong {
        font-size: 27px;
    }

    .rc-reports {
        padding: 45px 0;
    }

    .rc-reports__title {
        font-size: 24px;
    }

    .rc-report-card {
        grid-template-columns: 1fr;
    }

    .rc-report-book {
        width: 155px;
        height: 180px;
    }

    .rc-report-card__details {
        padding-top: 0;
    }

    .rc-testimonials{
        padding:30px 0;
    }

    .rc-testimonial-card {
        padding: 18px;
    }

    .rc-testimonial-card__author {
        gap: 10px;
    }

    .rc-testimonial-card__avatar {
        width: 42px;
        height: 42px;
        flex-basis: 42px;
    }
   
    
}


/* ==========================================================================
   RESPONSIVE CONSOLIDATION & MISSING BREAKPOINT FIXES
   Added without changing the desktop design.
   Keep this section at the END of the responsive stylesheet.
   ========================================================================== */

/* ---------- Shared safety ---------- */
.rc-hero__inner,
.rcube-financial-grid,
.rc-method .rc-container,
.rc-services .rc-container,
.rc-impact__body,
.rc-insights .rc-container {
    /* max-width: 100%; */
}

.rc-card,
.rc-mini-card,
.rc-post,
.rc-step,
.rc-feature,
.rc-impact__top > *,
.rcube-financial-grid > * {
    min-width: 0;
}

.rc-card__title,
.rc-card__text,
.rc-mini-card__title,
.rc-mini-card__text,
.rc-post__title,
.rc-post__excerpt,
.rc-feature__text,
.rc-step__text {
    overflow-wrap: anywhere;
}

/* =========================================================
   3840px / 4K
========================================================= */
@media (min-width: 3840px) {
    .rc-hero { height: 760px; }
    .rc-hero__inner {
        width: min(calc(100% - 240px), 3200px);
        margin: 0 auto;
    }
    .rc-hero__panel { width: 760px; padding: 64px 70px; }
    .rc-hero__title { font-size: 64px; }
    .rc-hero__text { max-width: 620px; font-size: 19px; }

    .rcube-financial { min-height: 900px; }
    .rcube-financial-grid {
        width: min(calc(100% - 240px), 3200px);
        min-height: 760px;
        grid-template-columns: 620px minmax(800px, 1fr) 520px;
        column-gap: 220px;
    }
    .rcube-financial-person { height: 700px; }
    .rcube-financial-content h2 { font-size: 64px; }
    .rcube-financial-content p { max-width: 760px; font-size: 20px; }
    .rcube-stats { gap: 48px; }
    .rcube-stat strong { font-size: 54px; }

    .rc-services { padding: 70px 0; }
    .rc-services .rc-container { width: min(calc(100% - 240px), 3200px); max-width: none; }
    .rc-services__title,
    .rc-impact__title { font-size: 60px; }
    .rc-services__desc { 
        /*max-width: 620px; */
    font-size: 19px; }
    .rc-card__img { height: 300px; }
    .rc-card__body { min-height: 280px; padding: 34px 28px 28px; }
    .rc-card__title,
    .rc-mini-card__title { font-size: 28px; }
    .rc-card__text,
    .rc-mini-card__text { font-size: 18px; }
    .rc-mini-card { padding: 28px 50px 28px 24px; }
    .rc-mini-card__icon { width: 56px; height: 56px; flex-basis: 56px; }

    .rc-impact__grid,
    .rc-impact__photo { min-height: 500px; }
    .rc-impact__body { padding: 110px 12% 100px; }
    .rc-impact__top { grid-template-columns: minmax(0, 1fr) 300px; gap: 120px; }
    .rc-impact__badge { width: 300px; min-height: 200px; }
    .rc-impact__text { max-width: 900px; font-size: 20px; }

    .rc-method { padding: 100px 0; }
    .rc-method .rc-container { width: min(calc(100% - 240px), 3200px); max-width: none; }
    .rc-method__title { font-size: 64px; }
    .rc-method__grid { grid-template-columns: 1fr minmax(760px, 920px) 1fr; gap: 190px; }
    .rc-method__media-img { height: 600px; }
}

/* =========================================================
   2560px
========================================================= */
@media (min-width: 2560px) and (max-width: 3839px) {
    .rc-hero__inner { 
        /* margin: 0 auto;  */
        margin: 85px 20px 0 70px;
    }
    .rc-services .rc-container { width: min(calc(100% - 160px), 2400px); max-width: none; }
}

/* =========================================================
   1920px
========================================================= */
@media (min-width: 1920px) and (max-width: 2559px) {
    .rc-hero__inner { 
        /* margin: 0 auto;  */
        margin: 65px 20px 0 70px;
    }
    .rc-services .rc-container { width: min(calc(100% - 120px), 1800px); max-width: none; }
}

/* =========================================================
   1440px
========================================================= */
@media (min-width: 1440px) and (max-width: 1919px) {
    .rc-hero__inner { 
        /* margin: 0 auto; */
        margin: 65px 20px 0 70px;
    }
    .rcube-financial-grid {
        width: min(calc(100% - 80px), 1360px);
        grid-template-columns: 1fr 2fr 1fr;
        column-gap: 70px;
    }
}

/* =========================================================
   1366px
========================================================= */
@media (min-width: 1366px) and (max-width: 1439px) {
    .rc-hero__inner {
        width: min(calc(100% - 80px), 1280px);
        /* margin: 0 auto; */
        margin: 60px 20px 0 70px;
    }
    .rcube-financial-grid {
        width: calc(100% - 80px);
        grid-template-columns: 1fr 2fr 1fr;
        column-gap: 55px;
    }
    .rc-services__head { gap: 40px; }
}

/* =========================================================
   1280px
========================================================= */
@media (min-width: 1280px) and (max-width: 1365px) {
    .rc-hero__inner {
        width: calc(100% - 64px);
        /* margin: 0 auto; */
        margin: 70px 20px 0 70px;
    }
    .rcube-financial-grid {
        width: calc(100% - 64px);
        grid-template-columns: 1fr 2fr 1fr;
        column-gap: 42px;
    }
    .rc-services__head { gap: 32px; }
}

/* =========================================================
   1024px
========================================================= */
@media (min-width: 769px) and (max-width: 1024px) {
    .rc-hero__inner { margin: 0 auto; }
    .rcube-financial-content { min-width: 0; }
    .rcube-financial-content p { max-width: none; }
    .rcube-stats { align-items: stretch; }
}

/* =========================================================
   768px
========================================================= */
@media (min-width: 577px) and (max-width: 768px) {
    .rc-hero__inner {
        margin: 0 auto;
        align-items: center;
    }
    .rc-hero__panel { padding: 28px; }
    .rcube-financial-grid { padding: 45px 0; }
    .rcube-financial-content p { max-width: none; }
    .rcube-stats { gap: 16px; }
}

/* =========================================================
   576px
========================================================= */
@media (min-width: 481px) and (max-width: 576px) {
    .rc-container { padding-inline: 20px; }

    .rc-hero {
        height: auto;
        min-height: 430px;
        display: flex;
        align-items: center;
    }
    .rc-hero__scrim {
        background: linear-gradient(90deg, rgba(0,0,0,.56) 0%, rgba(0,0,0,.38) 65%, rgba(0,0,0,.18) 100%);
    }
    .rc-hero__inner {
        width: calc(100% - 32px);
        height: auto;
        min-height: 430px;
        margin: 0 auto;
        padding: 32px 0;
    }
    .rc-hero__panel { width: 100%; padding: 28px 24px; }
    .rc-hero__title { font-size: 29px; line-height: 1.2; }
    .rc-hero__text { font-size: 13px; }

    .rcube-financial-grid {
        width: calc(100% - 32px);
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 40px 0;
    }
    .rcube-financial-person {
        height: 500px;
        max-width: 100%;
        order: 1;
    }
    .rcube-financial-content { order: 2; }
    .rcube-stats {
        order: 3;
        grid-column: auto;
        grid-template-columns: 1fr;
        margin-top: 0;
    }

    .rc-services__row,
    .rc-insights__grid { grid-template-columns: 1fr; }
    .rc-mini-list { grid-column: auto; grid-template-columns: 1fr; }
    .rc-card__img { height: 220px; }

    .rc-method .rc-container { width: calc(100% - 32px); }
    .rc-method__media-img { height: 260px; }

    .rc-impact__body { padding: 40px 20px; }
    .rc-impact__photo { height: 280px; min-height: 280px; }
}

/* =========================================================
   480px
========================================================= */
@media (max-width: 480px) {
    .rc-container { padding-inline: 20px; }

    .rc-hero {
        height: auto;
        min-height: 420px;
        display: flex;
        align-items: center;
    }
    .rc-hero__bg { object-position: 70% center; }
    .rc-hero__scrim {
        background: linear-gradient(90deg, rgba(0,0,0,.62) 0%, rgba(0,0,0,.45) 68%, rgba(0,0,0,.18) 100%);
    }
    .rc-hero__inner {
        width: calc(100% - 28px);
        height: auto;
        min-height: 420px;
        margin: 0 auto;
        padding: 28px 0;
    }
    .rc-hero__panel { width: 100%; padding: 24px 20px; }
    .rc-hero__kicker { font-size: 10px; }
    .rc-hero__title { font-size: 27px; margin-bottom: 14px; }
    .rc-hero__text { margin-bottom: 18px; font-size: 12px; line-height: 1.6; }
    .rc-hero .rc-btn--dark { min-width: 175px; }

    .rcube-financial-grid {
        width: calc(100% - 28px);
        grid-template-columns: 1fr;
        gap: 26px;
        padding: 36px 0;
    }
    .rcube-financial-person { height: 500px; order: 1; }
    .rcube-financial-content { order: 2; }
    .rcube-financial-content h2 { font-size: 27px; }
    .rcube-financial-content p { max-width: none; font-size: 13px; }
    .rcube-stats {
        order: 3;
        grid-column: auto;
        grid-template-columns: 1fr;
        margin-top: 0;
    }
    .rcube-stat { gap: 14px; }

    .rc-services { padding: 40px 0; }
    .rc-services .rc-container { width: calc(100% - 28px); }
    .rc-services__title { font-size: 27px; }
    .rc-services__desc { font-size: 13px; }
    .rc-services__row,
    .rc-mini-list,
    .rc-insights__grid { grid-template-columns: 1fr; }
    .rc-card__img { height: 210px; }
    .rc-card__body { min-height: 0; }

    .rc-impact__photo { height: 250px; min-height: 250px; }
    .rc-impact__body { padding: 38px 16px; }
    .rc-impact__title { font-size: 27px; }
    .rc-impact__features { gap: 24px; }

    .rc-method { padding: 36px 0; }
    .rc-method .rc-container { width: calc(100% - 28px); }
    .rc-method__title { font-size: 27px; }
    .rc-method__grid { gap: 30px; }
    .rc-method__media-img { height: 230px; }
    .rc-step { gap: 14px; }
}

/* =========================================================
   375px
========================================================= */
@media (max-width: 375px) {
    .rc-hero { min-height: 400px; }
    .rc-hero__inner { min-height: 400px; }
    .rc-hero__panel { padding: 22px 18px; }
    .rc-hero__title { font-size: 24px; }
    .rc-hero__text { font-size: 12px; }
    .rc-hero .rc-btn--dark {
        min-width: 0;
        width: 100%;
        justify-content: space-between;
    }

    .rcube-financial-grid { width: calc(100% - 24px); }
    .rcube-financial-person { height: 350px; }
    .rcube-financial-content h2 { font-size: 24px; }
    .rcube-stat-icon { width: 50px; height: 50px; flex-basis: 50px; }
    .rcube-stat strong { font-size: 27px; }

    .rc-services .rc-container,
    .rc-method .rc-container { width: calc(100% - 24px); }
    .rc-services__title,
    .rc-insights__title,
    .rc-impact__title,
    .rc-method__title { font-size: 24px; }

    .rc-card__img { height: 190px; }
    .rc-card__title,
    .rc-mini-card__title { font-size: 16px; }

    .rc-impact__photo { height: 220px; min-height: 220px; }
    .rc-impact__body { padding: 34px 14px; }
    .rc-impact__badge { min-height: 96px; padding: 16px; }

    .rc-method__media-img { height: 210px; }
    .rc-step__num { width: 42px; height: 42px; flex-basis: 42px; }
    .rc-step__title { font-size: 16px; }
    .rc-step__text { font-size: 13px; }
}

/* =========================================================
   320px
========================================================= */
@media (max-width: 320px) {
    .rc-container { padding-inline: 12px; }

    .rc-hero { min-height: 380px; }
    .rc-hero__inner {
        width: calc(100% - 20px);
        min-height: 380px;
    }
    .rc-hero__panel { padding: 20px 14px; }
    .rc-hero__kicker { font-size: 10px; }
    .rc-hero__title { font-size: 21px; letter-spacing: -0.3px; }
    .rc-hero__text { font-size: 11px; line-height: 1.55; }
    .rc-hero .rc-btn--dark {
        min-width: 0;
        min-height: 38px;
        padding-left: 14px;
        font-size: 10px;
    }

    .rcube-financial-grid {
        width: calc(100% - 20px);
        gap: 22px;
        padding: 30px 0;
    }
    .rcube-financial-person { height: 250px; }
    .rcube-financial-content h2 { font-size: 21px; }
    .rcube-financial-content p { font-size: 12px; }
    .rcube-financial-content .rcube-btn-red {
        width: 100%;
        min-width: 0;
    }
    .rcube-stat-icon { width: 46px; height: 46px; flex-basis: 46px; }
    .rcube-stat strong { font-size: 24px; }
    .rcube-stat small { font-size: 10px; }

    .rc-services { padding: 32px 0; }
    .rc-services .rc-container,
    .rc-method .rc-container { width: calc(100% - 20px); }
    .rc-services__title,
    .rc-insights__title,
    .rc-impact__title,
    .rc-method__title { font-size: 21px; }
    .rc-services__desc,
    .rc-card__text,
    .rc-mini-card__text,
    .rc-impact__text { font-size: 12px; }

    .rc-card__img { height: 170px; }
    .rc-card__body { padding: 18px 12px 12px; }
    .rc-card__title,
    .rc-mini-card__title { font-size: 16px; }

    .rc-mini-card {
        gap: 10px;
        padding: 10px 24px 10px 10px;
    }
    .rc-mini-card__icon {
        width: 30px;
        height: 30px;
        flex-basis: 30px;
    }

    .rc-impact__photo { height: 200px; min-height: 200px; }
    .rc-impact__body { padding: 30px 12px; }
    .rc-impact__badge { min-height: 88px; padding: 14px; }
    .rc-impact__badge strong { font-size: 28px; }

    .rc-method { padding: 30px 0; }
    .rc-method__grid { gap: 26px; }
    .rc-method__media-img { height: 185px; }
    .rc-step { gap: 10px; }
    .rc-step__num {
        width: 38px;
        height: 38px;
        flex-basis: 38px;
        font-size: 10px;
    }
    .rc-step__title { font-size: 15px; }
    .rc-step__text { font-size: 12px; line-height: 1.5; }
}

/* ---------- Reduced motion safety ---------- */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}


/* ==========================================================================
   FINAL RESPONSIVE REFINEMENT
   Reference layout: wide editorial/business landing page.
   This block is intentionally placed LAST so these rules override earlier
   overlapping breakpoints without changing the desktop visual system.
   ========================================================================== */

/* Prevent horizontal scrolling caused by fixed grid/flex children */
html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

.rc-impact__grid,
.rc-impact__top,
.rc-impact__features,
.rc-method__grid,
.rc-services__head,
.rc-services__row,
.rc-mini-list,
.rc-insights__head,
.rc-insights__grid,
.rcube-financial-grid,
.rcube-stats {
    min-width: 0;
}

.rc-impact__grid > *,
.rc-impact__top > *,
.rc-impact__features > *,
.rc-method__grid > *,
.rc-services__head > *,
.rc-services__row > *,
.rc-mini-list > *,
.rc-insights__head > *,
.rc-insights__grid > *,
.rcube-financial-grid > *,
.rcube-stats > * {
    min-width: 0;
}

img,
picture,
svg,
video,
canvas {
    max-width: 100%;
}

/* =========================================================
   3840px — 4K
========================================================= */
@media (min-width: 3840px) {
    .rc-hero {
        height: 820px;
    }

    .rc-hero__inner {
        width: min(calc(100% - 280px), 3400px);
    }

    .rc-hero__panel {
        width: 820px;
        padding: 72px;
    }

    .rc-hero__title {
        font-size: 68px;
        line-height: 1.08;
    }

    .rc-hero__text {
        max-width: 650px;
        font-size: 20px;
    }

    .rc-impact__grid,
    .rc-impact__photo {
        min-height: 900px;
    }

    .rc-impact__body {
        padding: 120px 12%;
    }

    .rc-impact__top {
        grid-template-columns: minmax(0, 1fr) 320px;
        gap: 130px;
    }

    .rc-impact__badge {
        width: 320px;
        min-height: 220px;
    }

    .rc-impact__features {
        margin-top: 90px;
        padding-top: 55px;
        gap: 50px;
    }

    .rc-method .rc-container,
    .rc-services .rc-container {
        width: min(calc(100% - 280px), 3400px);
        max-width: none;
    }

    .rc-method__grid {
        grid-template-columns: minmax(0, 1fr) minmax(780px, 980px) minmax(0, 1fr);
        gap: 220px;
    }

    .rc-method__media-img {
        height: 640px;
    }

    .rc-services__row {
        gap: 34px;
    }

    .rc-card__img {
        height: 320px;
    }

    .rc-insights__grid {
        gap: 32px;
    }
}

/* =========================================================
   2560px
========================================================= */
@media (min-width: 2560px) and (max-width: 3839px) {
    .rc-hero__inner {
        width: min(calc(100% - 180px), 2300px);
        margin-inline: auto;
    }

    .rc-services .rc-container,
    .rc-method .rc-container {
        width: min(calc(100% - 180px), 2300px);
        max-width: none;
    }

    .rcube-financial-grid {
        width: min(calc(100% - 160px), 2200px);
        grid-template-columns: 1fr 2fr 1fr;
    }
}

/* =========================================================
   1920px
========================================================= */
@media (min-width: 1920px) and (max-width: 2559px) {
    .rc-hero__inner {
        margin-inline: auto;
    }

    .rcube-financial-grid {
        grid-template-columns: 1fr 2fr 1fr;
    }

    .rc-services__row {
        gap: 24px;
    }
}

/* =========================================================
   1440px
========================================================= */
@media (min-width: 1440px) and (max-width: 1919px) {
    .rc-hero__inner {
        margin-inline: auto;
    }

    .rc-impact__top,
    .rcube-financial-grid,
    .rc-method__grid {
        min-width: 0;
    }

    .rcube-financial-grid {
        grid-template-columns: 1fr 2fr 1fr;
    }
}

/* =========================================================
   1366px
========================================================= */
@media (min-width: 1366px) and (max-width: 1439px) {
    .rc-hero__inner {
        margin-inline: auto;
    }

    .rc-impact__top {
        grid-template-columns: minmax(0, 1fr) 165px;
    }

    .rcube-financial-grid {
        grid-template-columns: 1fr 2fr 1fr;
    }
}

/* =========================================================
   1280px
========================================================= */
@media (min-width: 1280px) and (max-width: 1365px) {
    .rc-hero__inner {
        margin-inline: auto;
    }

    .rc-impact__body {
        padding-inline: 5%;
    }

    .rcube-financial-grid {
        grid-template-columns: 1fr 2fr 1fr;
    }

    .rcube-financial-content p,
    .rc-step__text,
    .rc-feature__text {
        max-width: 100%;
    }
}

/* =========================================================
   1024px — Tablet landscape
========================================================= */
@media (min-width: 769px) and (max-width: 1024px) {
    .rc-hero__inner {
        margin-inline: auto;
    }

    .rc-hero__panel {
        width: min(450px, 58vw);
    }

    .rc-impact__top {
        grid-template-columns: minmax(0, 1fr) 140px;
    }

    .rc-impact__features {
        gap: 18px;
    }

    .rc-feature:not(:first-child) {
        padding-left: 16px;
    }

    .rcube-financial-grid {
        grid-template-columns: 210px minmax(0, 1fr);
    }

    .rcube-stats {
        grid-column: 1 / -1;
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .rc-services__row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .rc-insights__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* =========================================================
   768px — Tablet portrait
========================================================= */
@media (min-width: 577px) and (max-width: 768px) {
    .rc-impact__grid {
        grid-template-columns: 1fr;
    }

    .rc-impact__photo {
        height: clamp(340px, 55vw, 430px);
        min-height: 0;
    }

    .rc-impact__body {
        padding: 48px 6%;
    }

    .rc-impact__top {
        grid-template-columns: minmax(0, 1fr) 150px;
    }

    .rc-impact__features {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .rc-method__grid {
        grid-template-columns: 1fr;
    }

    .rc-method__col:first-child,
    .rc-method__media,
    .rc-method__col:last-child {
        width: 100%;
    }

    .rc-method__media-img {
        height: clamp(280px, 50vw, 380px);
    }

    .rc-services__row,
    .rc-insights__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .rc-card__body {
        min-height: 0;
    }

    .rcube-financial-grid {
        grid-template-columns: 280px minmax(0, 1fr);
    }

    .rcube-stats {
        grid-column: 1 / -1;
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

/* =========================================================
   576px — Large mobile
========================================================= */
@media (min-width: 481px) and (max-width: 576px) {
    .rc-hero {
        min-height: 430px;
    }

    .rc-hero__inner {
        min-height: 430px;
        justify-content: center;
    }

    .rc-hero__panel {
        width: min(100%, 440px);
    }

    .rc-impact__features,
    .rc-services__row,
    .rc-mini-list,
    .rc-insights__grid {
        grid-template-columns: 1fr;
    }

    .rc-feature,
    .rc-feature:not(:first-child) {
        padding-left: 0;
        padding-right: 0;
    }

    .rc-card__img {
        height: clamp(220px, 58vw, 300px);
    }

    .rc-method__media-img {
        height: clamp(250px, 60vw, 340px);
    }

    .rcube-financial-grid {
        grid-template-columns: 1fr;
    }

    .rcube-financial-person,
    .rcube-financial-content,
    .rcube-stats {
        width: 100%;
    }

    .rcube-stats {
        grid-template-columns: 1fr;
    }
}

/* =========================================================
   480px — Mobile
========================================================= */
@media (max-width: 480px) {
    .rc-hero {
        min-height: 410px;
    }

    .rc-hero__inner {
        min-height: 410px;
        display: flex;
        align-items: center;
    }

    .rc-hero__panel {
        width: 100%;
    }

    .rc-impact__photo {
        height: clamp(230px, 70vw, 300px);
        min-height: 0;
    }

    .rc-impact__features,
    .rc-services__row,
    .rc-mini-list,
    .rc-insights__grid {
        grid-template-columns: 1fr;
    }

    .rc-method__media {
        width: 100%;
    }

    .rc-method__media-img {
        height: clamp(210px, 62vw, 290px);
    }

    .rcube-financial-grid {
        grid-template-columns: 1fr;
    }

    .rcube-financial-person {
        width: 100%;
        height: 350px;
    }

    .rcube-stats {
        grid-template-columns: 1fr;
    }

    .rc-post__title,
    .rc-card__title,
    .rc-mini-card__title {
        height: auto;
        min-height: 0;
    }
}

/* =========================================================
   375px — Standard small mobile
========================================================= */
@media (max-width: 375px) {
    .rc-impact__top {
        gap: 20px;
    }

    .rc-impact__badge {
        width: 100%;
    }

    .rc-card__img {
        height: 100px;
    }

    .rc-mini-card {
        align-items: flex-start;
    }

    .rc-method__media-img {
        height: 205px;
    }

    .rc-step__text,
    .rc-feature__text,
    .rc-card__text,
    .rc-post__excerpt {
        max-width: 100%;
    }
}

/* =========================================================
   320px — Extra small mobile
========================================================= */
@media (max-width: 320px) {
    .rc-hero {
        min-height: 370px;
    }

    .rc-hero__inner {
        min-height: 370px;
    }

    .rc-hero__panel {
        padding: 18px 14px;
    }

    .rc-hero__title {
        font-size: 21px;
    }

    .rc-impact__photo {
        height: 195px;
    }

    .rc-impact__body {
        padding-inline: 12px;
    }

    .rc-method__media-img {
        height: 180px;
    }

    .rc-card__body {
        padding: 16px 12px;
    }

    .rc-mini-card {
        padding-right: 20px;
    }

    .rcube-financial-content h2,
    .rc-services__title,
    .rc-insights__title,
    .rc-impact__title,
    .rc-method__title {
        overflow-wrap: anywhere;
    }
}