/* Redd home v2.4 — scoped landing-page system, designed to sit below public shell v2.3. */
.redd-home {
  --home-teal: #347782;
  --home-teal-deep: #1f5963;
  --home-teal-dark: #133f47;
  --home-teal-soft: #4d919a;
  --home-gold: #c4b396;
  --home-gold-soft: #eadfc9;
  --home-ink: #163c43;
  --home-text: #4e6b70;
  --home-muted: #71878b;
  --home-surface: #ffffff;
  --home-surface-soft: #f3f7f7;
  --home-border: #dce8e9;
  --home-shadow-sm: 0 12px 32px rgba(25, 73, 81, 0.09);
  --home-shadow-lg: 0 28px 70px rgba(14, 54, 61, 0.16);
  --home-radius: 24px;
  position: relative;
  overflow: hidden;
  color: var(--home-ink);
  background: var(--home-surface);
}

.redd-home *,
.redd-home *::before,
.redd-home *::after {
  box-sizing: border-box;
}

.redd-home img,
.redd-home video {
  display: block;
  max-width: 100%;
}

.redd-home a {
  text-decoration: none;
}

.redd-home__container {
  width: min(100% - 40px, 1380px);
  margin-inline: auto;
}

.redd-home__hero {
  position: relative;
  min-height: 670px;
  display: flex;
  align-items: center;
  padding: clamp(74px, 8vw, 118px) 0 126px;
  isolation: isolate;
  color: #fff;
  background:
    radial-gradient(
      circle at 10% 12%,
      rgba(196, 179, 150, 0.22),
      transparent 30%
    ),
    linear-gradient(132deg, #173f47 0%, #286a74 50%, #347782 100%);
}

.redd-home__hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, #000 15%, transparent 96%);
}

.redd-home__hero::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  bottom: -1px;
  height: 82px;
  z-index: -1;
  background: var(--home-surface);
  clip-path: polygon(0 72%, 100% 0, 100% 100%, 0 100%);
}

html[dir="ltr"] .redd-home__hero::after {
  clip-path: polygon(0 0, 100% 72%, 100% 100%, 0 100%);
}

.redd-home__orb {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
  pointer-events: none;
}

.redd-home__orb--one {
  width: 330px;
  height: 330px;
  inset-inline-start: -130px;
  top: 56px;
  box-shadow:
    0 0 0 54px rgba(255, 255, 255, 0.025),
    0 0 0 108px rgba(255, 255, 255, 0.018);
}

.redd-home__orb--two {
  width: 220px;
  height: 220px;
  inset-inline-end: 5%;
  bottom: 30px;
  background: rgba(196, 179, 150, 0.08);
}

.redd-home__hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
  align-items: center;
  gap: clamp(54px, 7vw, 104px);
}

.redd-home__hero-copy {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.redd-home__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 14px;
  color: var(--home-teal);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.01em;
}

.redd-home__eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  border-radius: 99px;
  background: var(--home-gold);
}

.redd-home__eyebrow--light {
  color: rgba(255, 255, 255, 0.92);
}

.redd-home__eyebrow--light::before {
  background: var(--home-gold-soft);
}

.redd-home__hero-copy h1 {
  max-width: 760px;
  margin: 0;
  color: #fff;
  font-size: clamp(42px, 5.2vw, 76px);
  font-weight: 650;
  line-height: 1.17;
  letter-spacing: -0.035em;
}

.redd-home__hero-copy h1 span {
  display: block;
  color: var(--home-gold-soft);
}

.redd-home__hero-copy > p {
  max-width: 670px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(16px, 1.5vw, 19px);
  font-weight: 400;
  line-height: 1.9;
}

.redd-home__hero-actions,
.redd-home__cta-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 32px;
}

.redd-home__button {
  min-height: 51px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 14px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  transition:
    transform 0.2s ease,
    color 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.redd-home__button:hover,
.redd-home__button:focus-visible {
  transform: translateY(-2px);
}

.redd-home__button--gold {
  color: var(--home-teal-dark) !important;
  background: var(--home-gold-soft);
  border-color: var(--home-gold-soft);
  box-shadow: 0 13px 28px rgba(12, 42, 47, 0.2);
}

.redd-home__button--gold:hover,
.redd-home__button--gold:focus-visible {
  color: var(--home-teal-dark) !important;
  background: #fff;
  border-color: #fff;
}

.redd-home__button--ghost {
  color: #fff !important;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.25);
}

.redd-home__button--ghost:hover,
.redd-home__button--ghost:focus-visible {
  color: #fff !important;
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.48);
}

.redd-home__button--white {
  color: var(--home-teal-dark) !important;
  background: #fff;
  border-color: #fff;
  box-shadow: 0 12px 28px rgba(8, 29, 33, 0.2);
}

.redd-home__button--white:hover,
.redd-home__button--white:focus-visible {
  color: var(--home-teal-dark) !important;
  background: var(--home-gold-soft);
  border-color: var(--home-gold-soft);
}

.redd-home__trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 500;
}

.redd-home__trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.redd-home__trust-row i {
  color: var(--home-gold-soft);
  font-size: 13px;
}

.redd-home__hero-stage {
  position: relative;
}

.redd-home__hero-stage::before {
  content: "";
  position: absolute;
  width: 82%;
  height: 88%;
  inset-inline-end: -23px;
  top: -24px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 36px;
  transform: rotate(4deg);
}

.redd-home__hero-visual {
  position: relative;
  min-height: 480px;
  overflow: visible;
  border: 8px solid rgba(255, 255, 255, 0.1);
  border-radius: 34px;
  background: linear-gradient(
    145deg,
    var(--home-teal-soft),
    var(--home-teal-dark)
  );
  box-shadow: var(--home-shadow-lg);
}

.redd-home__hero-visual > img,
.redd-home__hero-visual-placeholder {
  width: 100%;
  height: 480px;
  border-radius: 26px;
  object-fit: cover;
}

.redd-home__hero-visual-placeholder {
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.2);
  background:
    radial-gradient(
      circle at 70% 20%,
      rgba(196, 179, 150, 0.32),
      transparent 32%
    ),
    linear-gradient(145deg, #4d919a, #173f47);
  font-size: 120px;
}

.redd-home__hero-shade {
  position: absolute;
  inset: 0;
  border-radius: 26px;
  background: linear-gradient(20deg, rgba(10, 38, 43, 0.62), transparent 62%);
}

.redd-home__hero-card {
  position: absolute;
  inset-inline-start: -42px;
  bottom: 42px;
  min-width: 260px;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 18px;
  color: var(--home-ink);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 46px rgba(8, 32, 37, 0.22);
  backdrop-filter: blur(14px);
}

.redd-home__hero-card-icon {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: #fff;
  background: var(--home-teal);
  font-size: 18px;
}

.redd-home__hero-card span:last-child {
  display: grid;
  gap: 3px;
}

.redd-home__hero-card strong {
  font-size: 14px;
  font-weight: 600;
}

.redd-home__hero-card small {
  color: var(--home-muted);
  font-size: 11px;
}

.redd-home__hero-seal {
  position: absolute;
  inset-inline-end: -25px;
  top: 32px;
  width: 88px;
  height: 88px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 3px;
  border: 6px solid var(--home-teal-deep);
  border-radius: 50%;
  color: var(--home-teal-dark);
  background: var(--home-gold-soft);
  box-shadow: 0 14px 32px rgba(8, 32, 37, 0.24);
}

.redd-home__hero-seal i {
  font-size: 16px;
}

.redd-home__hero-seal span {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.redd-home__quick-wrap {
  position: relative;
  z-index: 4;
  margin-top: -58px;
  padding-bottom: 34px;
}

.redd-home__quick-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.redd-home__quick-card {
  min-height: 118px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 15px;
  padding: 22px;
  border: 1px solid var(--home-border);
  border-radius: 20px;
  color: var(--home-ink) !important;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--home-shadow-sm);
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.redd-home__quick-card:hover,
.redd-home__quick-card:focus-visible {
  color: var(--home-ink) !important;
  transform: translateY(-5px);
  border-color: rgba(52, 119, 130, 0.32);
  box-shadow: 0 20px 42px rgba(25, 73, 81, 0.14);
}

.redd-home__quick-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: var(--home-teal);
  background: #e9f2f3;
  font-size: 20px;
  transition:
    color 0.2s ease,
    background-color 0.2s ease;
}

.redd-home__quick-card:hover .redd-home__quick-icon {
  color: #fff;
  background: var(--home-teal);
}

.redd-home__quick-copy {
  min-width: 0;
  display: grid;
  gap: 5px;
}

.redd-home__quick-copy strong {
  font-size: 15px;
  font-weight: 600;
}

.redd-home__quick-copy small {
  color: var(--home-muted);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.65;
}

.redd-home__quick-arrow {
  color: var(--home-teal);
  font-size: 14px;
  transition: transform 0.2s ease;
}

.redd-home__quick-card:hover .redd-home__quick-arrow {
  transform: translateX(-4px);
}

html[dir="ltr"] .redd-home__quick-card:hover .redd-home__quick-arrow {
  transform: rotate(180deg) translateX(-4px);
}

.redd-home__section {
  position: relative;
  padding: clamp(72px, 7vw, 104px) 0;
}

.redd-home__section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 38px;
}

.redd-home__section-heading--center {
  justify-content: center;
  text-align: center;
}

.redd-home__section-heading--center .redd-home__eyebrow {
  justify-content: center;
}

.redd-home__section-heading h2,
.redd-home__about-copy h2,
.redd-home__cta-copy h2 {
  margin: 0;
  color: var(--home-ink);
  font-size: clamp(30px, 3.3vw, 48px);
  font-weight: 650;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.redd-home__section-heading p {
  max-width: 650px;
  margin: 12px 0 0;
  color: var(--home-text);
  font-size: 15px;
  line-height: 1.8;
}

.redd-home__carousel-actions {
  display: flex;
  gap: 8px;
}

.redd-home__carousel-actions button {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid var(--home-border);
  border-radius: 12px;
  color: var(--home-teal);
  background: #fff;
  box-shadow: 0 8px 20px rgba(25, 73, 81, 0.07);
  transition:
    color 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}

.redd-home__carousel-actions button:hover,
.redd-home__carousel-actions button:focus-visible {
  color: #fff;
  background: var(--home-teal);
  border-color: var(--home-teal);
  transform: translateY(-2px);
}

.redd-home__section--promoted {
  background: var(--home-surface-soft);
}

.redd-home__promoted-carousel {
  overflow: hidden;
  border-radius: var(--home-radius);
  box-shadow: var(--home-shadow-lg);
}

.redd-home__campaign {
  position: relative;
  min-height: 470px;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  color: #fff;
  background: var(--home-teal-dark);
}

.redd-home__campaign-media,
.redd-home__campaign-media img,
.redd-home__campaign-media video,
.redd-home__campaign-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.redd-home__campaign-media img,
.redd-home__campaign-media video {
  object-fit: cover;
}

.redd-home__campaign-overlay {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(12, 44, 50, 0.35), rgba(12, 44, 50, 0.9)),
    linear-gradient(0deg, rgba(12, 44, 50, 0.35), transparent 55%);
}

html[dir="ltr"] .redd-home__campaign-overlay {
  background:
    linear-gradient(-90deg, rgba(12, 44, 50, 0.35), rgba(12, 44, 50, 0.9)),
    linear-gradient(0deg, rgba(12, 44, 50, 0.35), transparent 55%);
}

.redd-home__campaign-content {
  position: relative;
  z-index: 2;
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 48px;
  padding: clamp(42px, 6vw, 78px);
}

.redd-home__campaign-copy {
  max-width: 720px;
}

.redd-home__campaign-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 11px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: var(--home-gold-soft);
  background: rgba(255, 255, 255, 0.08);
  font-size: 11px;
  font-weight: 600;
}

.redd-home__campaign-copy h3 {
  margin: 18px 0 0;
  color: #fff;
  font-size: clamp(30px, 4vw, 54px);
  font-weight: 650;
  line-height: 1.25;
}

.redd-home__campaign-copy h4 {
  margin: 10px 0 0;
  color: var(--home-gold-soft);
  font-size: clamp(18px, 2.2vw, 26px);
  font-weight: 500;
}

.redd-home__campaign-copy p {
  max-width: 670px;
  margin: 16px 0 24px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
  line-height: 1.85;
}

.redd-home__campaign-logo {
  width: 170px;
  min-height: 130px;
  display: grid;
  place-items: center;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 38px rgba(6, 27, 31, 0.2);
  backdrop-filter: blur(12px);
}

.redd-home__campaign-logo img {
  max-width: 100%;
  max-height: 92px;
  object-fit: contain;
}

.redd-home__promoted-carousel .carousel-indicators {
  z-index: 4;
  gap: 5px;
  margin-bottom: 18px;
}

.redd-home__promoted-carousel .carousel-indicators [data-bs-target] {
  width: 8px;
  height: 8px;
  margin: 0;
  border: 0;
  border-radius: 99px;
  background: #fff;
  opacity: 0.5;
  transition:
    width 0.2s ease,
    opacity 0.2s ease;
}

.redd-home__promoted-carousel .carousel-indicators .active {
  width: 30px;
  opacity: 1;
}

.redd-home__section--about {
  background: #fff;
}

.redd-home__about-grid {
  display: grid;
  grid-template-columns: minmax(390px, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: clamp(54px, 8vw, 116px);
}

.redd-home__about-media {
  position: relative;
  min-height: 510px;
}

.redd-home__about-media > img,
.redd-home__about-placeholder {
  width: calc(100% - 34px);
  height: 510px;
  margin-inline-start: 34px;
  border-radius: 30px;
  object-fit: cover;
  box-shadow: var(--home-shadow-lg);
}

.redd-home__about-placeholder {
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.36);
  background: linear-gradient(
    145deg,
    var(--home-teal-soft),
    var(--home-teal-dark)
  );
  font-size: 105px;
}

.redd-home__about-pattern {
  position: absolute;
  inset-inline-start: 0;
  top: 38px;
  width: 100px;
  height: 150px;
  z-index: -1;
  opacity: 0.42;
  background-image: radial-gradient(var(--home-gold) 2px, transparent 2px);
  background-size: 14px 14px;
}

.redd-home__about-note {
  position: absolute;
  inset-inline-start: 0;
  bottom: 36px;
  min-width: 245px;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 17px;
  border: 1px solid rgba(52, 119, 130, 0.14);
  border-radius: 18px;
  color: var(--home-ink);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 18px 44px rgba(25, 73, 81, 0.16);
  backdrop-filter: blur(12px);
}

.redd-home__about-note > i {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  flex: 0 0 44px;
  border-radius: 14px;
  color: #fff;
  background: var(--home-teal);
}

.redd-home__about-note span,
.redd-home__feature span {
  display: grid;
  gap: 3px;
}

.redd-home__about-note strong,
.redd-home__feature strong {
  font-size: 14px;
  font-weight: 600;
}

.redd-home__about-note small,
.redd-home__feature small {
  color: var(--home-muted);
  font-size: 11px;
  line-height: 1.5;
}

.redd-home__about-copy > p {
  margin: 20px 0 0;
  color: var(--home-text);
  font-size: 16px;
  line-height: 2;
}

.redd-home__feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 26px;
}

.redd-home__feature {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 15px;
  border: 1px solid var(--home-border);
  border-radius: 16px;
  background: var(--home-surface-soft);
}

.redd-home__feature > i {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  flex: 0 0 40px;
  border-radius: 12px;
  color: var(--home-teal);
  background: #fff;
}

.redd-home__text-link,
.redd-home__article-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--home-teal) !important;
  font-size: 14px;
  font-weight: 600;
}

.redd-home__about-copy > .redd-home__text-link {
  margin-top: 27px;
}

.redd-home__text-link i,
.redd-home__article-link i {
  transition: transform 0.2s ease;
}

.redd-home__text-link:hover i,
.redd-home__text-link:focus-visible i,
.redd-home__article-link:hover i,
.redd-home__article-link:focus-visible i {
  transform: translateX(-4px);
}

.redd-home__section--stats {
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(
      circle at 88% 20%,
      rgba(196, 179, 150, 0.18),
      transparent 28%
    ),
    linear-gradient(132deg, var(--home-teal-dark), var(--home-teal));
}

.redd-home__section--stats::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image: radial-gradient(
    rgba(255, 255, 255, 0.5) 1px,
    transparent 1px
  );
  background-size: 22px 22px;
}

.redd-home__section--stats .redd-home__container {
  position: relative;
}

.redd-home__section--stats .redd-home__section-heading h2 {
  color: #fff;
}

.redd-home__stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 14px;
}

.redd-home__stat {
  min-height: 160px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 6px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 20px;
  text-align: center;
  background: rgba(255, 255, 255, 0.075);
  backdrop-filter: blur(10px);
}

.redd-home__stat-number {
  color: var(--home-gold-soft);
  font-size: clamp(36px, 4vw, 54px);
  font-weight: 650;
  line-height: 1;
}

.redd-home__stat p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 500;
}

.redd-home__section--vision {
  background: var(--home-surface-soft);
}

.redd-home__vision-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.redd-home__vision-card {
  position: relative;
  min-height: 360px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
  border-radius: var(--home-radius);
  color: #fff;
  background: linear-gradient(
    145deg,
    var(--home-teal-soft),
    var(--home-teal-dark)
  );
  box-shadow: var(--home-shadow-sm);
}

.redd-home__vision-card > img,
.redd-home__vision-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.redd-home__vision-card > img {
  z-index: -2;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.redd-home__vision-shade {
  z-index: -1;
  background: linear-gradient(
    0deg,
    rgba(12, 43, 49, 0.92),
    rgba(12, 43, 49, 0.18) 82%
  );
}

.redd-home__vision-content {
  width: 100%;
  padding: 30px;
}

.redd-home__vision-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 14px;
  color: var(--home-gold-soft);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  font-size: 18px;
}

.redd-home__vision-content h3 {
  margin: 0;
  color: #fff;
  font-size: 24px;
  font-weight: 600;
}

.redd-home__vision-content p {
  max-width: 640px;
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  line-height: 1.85;
}

.redd-home__vision-card:hover > img {
  transform: scale(1.045);
}

.redd-home__section--clients {
  background: #fff;
}

.redd-home__clients {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 13px;
}

.redd-home__client {
  min-height: 112px;
  display: grid;
  place-items: center;
  padding: 20px;
  border: 1px solid var(--home-border);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(25, 73, 81, 0.055);
  filter: grayscale(1);
  opacity: 0.74;
  transition:
    transform 0.2s ease,
    filter 0.2s ease,
    opacity 0.2s ease,
    border-color 0.2s ease;
}

.redd-home__client:hover {
  transform: translateY(-4px);
  filter: grayscale(0);
  opacity: 1;
  border-color: rgba(52, 119, 130, 0.32);
}

.redd-home__client img {
  width: 100%;
  max-width: 125px;
  height: 68px;
  object-fit: contain;
}

.redd-home__section--articles {
  background: var(--home-surface-soft);
}

.redd-home__articles-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.redd-home__article {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--home-border);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(25, 73, 81, 0.065);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease;
}

.redd-home__article:hover {
  transform: translateY(-6px);
  border-color: rgba(52, 119, 130, 0.28);
  box-shadow: 0 22px 44px rgba(25, 73, 81, 0.12);
}

.redd-home__article-media {
  position: relative;
  height: 235px;
  display: block;
  overflow: hidden;
  background: #dce9ea;
}

.redd-home__article-media > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.redd-home__article:hover .redd-home__article-media > img {
  transform: scale(1.045);
}

.redd-home__article-placeholder {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.45);
  background: linear-gradient(
    145deg,
    var(--home-teal-soft),
    var(--home-teal-dark)
  );
  font-size: 58px;
}

.redd-home__article-category {
  position: absolute;
  inset-inline-start: 16px;
  top: 16px;
  max-width: calc(100% - 32px);
  padding: 7px 11px;
  overflow: hidden;
  border-radius: 999px;
  color: var(--home-teal-dark);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 8px 20px rgba(8, 32, 37, 0.15);
  font-size: 10px;
  font-weight: 600;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.redd-home__article-content {
  padding: 23px;
}

.redd-home__article-content time {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--home-muted);
  font-size: 11px;
}

.redd-home__article-content h3 {
  margin: 12px 0 0;
  font-size: 19px;
  font-weight: 600;
  line-height: 1.55;
}

.redd-home__article-content h3 a {
  display: -webkit-box;
  overflow: hidden;
  color: var(--home-ink) !important;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.redd-home__article-content > p {
  display: -webkit-box;
  min-height: 72px;
  margin: 12px 0 20px;
  overflow: hidden;
  color: var(--home-text);
  font-size: 13px;
  line-height: 1.85;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.redd-home__empty {
  grid-column: 1 / -1;
  min-height: 220px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 12px;
  padding: 30px;
  border: 1px dashed #bfd1d3;
  border-radius: 22px;
  color: var(--home-muted);
  background: #fff;
  text-align: center;
}

.redd-home__empty i {
  color: var(--home-teal);
  font-size: 38px;
}

.redd-home__empty p {
  margin: 0;
}

.redd-home__section--cta {
  padding-top: 78px;
  padding-bottom: 108px;
  background: #fff;
}

.redd-home__cta-card {
  position: relative;
  min-height: 270px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 42px;
  overflow: hidden;
  padding: clamp(36px, 6vw, 72px);
  border-radius: 28px;
  color: #fff;
  background:
    radial-gradient(
      circle at 15% 15%,
      rgba(196, 179, 150, 0.22),
      transparent 28%
    ),
    linear-gradient(125deg, var(--home-teal-dark), var(--home-teal));
  box-shadow: var(--home-shadow-lg);
}

.redd-home__cta-grid {
  position: absolute;
  inset: 0;
  opacity: 0.2;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(90deg, transparent, #000);
}

.redd-home__cta-copy,
.redd-home__cta-actions {
  position: relative;
}

.redd-home__cta-copy h2 {
  max-width: 760px;
  color: #fff;
}

.redd-home__cta-copy p {
  max-width: 640px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 15px;
  line-height: 1.8;
}

.redd-home__cta-actions {
  flex-direction: column;
  align-items: stretch;
  min-width: 190px;
  margin-top: 0;
}

.redd-home-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}

.redd-home-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

html[dir="ltr"] .redd-home .fa-arrow-left {
  transform: rotate(180deg);
}

html[dir="ltr"] .redd-home__text-link:hover .fa-arrow-left,
html[dir="ltr"] .redd-home__text-link:focus-visible .fa-arrow-left,
html[dir="ltr"] .redd-home__article-link:hover .fa-arrow-left,
html[dir="ltr"] .redd-home__article-link:focus-visible .fa-arrow-left {
  transform: rotate(180deg) translateX(-4px);
}

@media (max-width: 1199.98px) {
  .redd-home__hero {
    min-height: 620px;
  }

  .redd-home__hero-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
    gap: 54px;
  }

  .redd-home__hero-visual,
  .redd-home__hero-visual > img,
  .redd-home__hero-visual-placeholder {
    min-height: 420px;
    height: 420px;
  }

  .redd-home__quick-card {
    padding: 18px;
  }

  .redd-home__articles-grid {
    gap: 14px;
  }
}

@media (max-width: 991.98px) {
  .redd-home__hero {
    padding-top: 74px;
  }

  .redd-home__hero-grid,
  .redd-home__about-grid {
    grid-template-columns: 1fr;
  }

  .redd-home__hero-copy {
    max-width: 780px;
  }

  .redd-home__hero-stage {
    width: min(100%, 680px);
    margin-inline: auto;
  }

  .redd-home__quick-grid {
    grid-template-columns: 1fr;
    max-width: 760px;
  }

  .redd-home__quick-card {
    min-height: 98px;
  }

  .redd-home__campaign-content {
    grid-template-columns: 1fr;
  }

  .redd-home__campaign-logo {
    display: none;
  }

  .redd-home__about-grid {
    gap: 62px;
  }

  .redd-home__about-media {
    width: min(100%, 720px);
    margin-inline: auto;
  }

  .redd-home__articles-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .redd-home__article:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    width: calc(50% - 7px);
  }

  .redd-home__cta-card {
    grid-template-columns: 1fr;
  }

  .redd-home__cta-actions {
    flex-direction: row;
    justify-content: flex-start;
  }
}

@media (max-width: 767.98px) {
  .redd-home__container {
    width: min(100% - 28px, 1380px);
  }

  .redd-home__hero {
    min-height: auto;
    padding: 58px 0 116px;
  }

  .redd-home__hero-grid {
    gap: 48px;
  }

  .redd-home__hero-copy h1 {
    font-size: clamp(36px, 11vw, 52px);
  }

  .redd-home__hero-copy > p {
    font-size: 15px;
  }

  .redd-home__trust-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 11px;
  }

  .redd-home__hero-stage::before {
    display: none;
  }

  .redd-home__hero-visual,
  .redd-home__hero-visual > img,
  .redd-home__hero-visual-placeholder {
    min-height: 370px;
    height: 370px;
  }

  .redd-home__hero-visual {
    border-width: 5px;
    border-radius: 26px;
  }

  .redd-home__hero-visual > img,
  .redd-home__hero-visual-placeholder,
  .redd-home__hero-shade {
    border-radius: 21px;
  }

  .redd-home__hero-card {
    inset-inline-start: 14px;
    bottom: 15px;
    min-width: 0;
    max-width: calc(100% - 78px);
  }

  .redd-home__hero-seal {
    width: 72px;
    height: 72px;
    inset-inline-end: -7px;
    top: 22px;
    border-width: 5px;
  }

  .redd-home__quick-wrap {
    margin-top: -42px;
  }

  .redd-home__section {
    padding: 68px 0;
  }

  .redd-home__section-heading {
    align-items: flex-start;
    margin-bottom: 30px;
  }

  .redd-home__campaign {
    min-height: 440px;
  }

  .redd-home__campaign-content {
    padding: 34px 28px 58px;
  }

  .redd-home__about-media,
  .redd-home__about-media > img,
  .redd-home__about-placeholder {
    min-height: 400px;
    height: 400px;
  }

  .redd-home__vision-grid,
  .redd-home__articles-grid {
    grid-template-columns: 1fr;
  }

  .redd-home__vision-card {
    min-height: 330px;
  }

  .redd-home__article:last-child:nth-child(odd) {
    grid-column: auto;
    width: auto;
  }

  .redd-home__clients {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding: 4px 2px 14px;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
  }

  .redd-home__client {
    min-width: 155px;
    scroll-snap-align: start;
  }

  .redd-home__section--cta {
    padding-bottom: 84px;
  }

  .redd-home__cta-card {
    padding: 34px 26px;
    border-radius: 24px;
  }
}

@media (max-width: 575.98px) {
  .redd-home__hero-actions,
  .redd-home__cta-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .redd-home__button {
    width: 100%;
  }

  .redd-home__trust-row {
    grid-template-columns: 1fr;
  }

  .redd-home__hero-visual,
  .redd-home__hero-visual > img,
  .redd-home__hero-visual-placeholder {
    min-height: 320px;
    height: 320px;
  }

  .redd-home__quick-card {
    grid-template-columns: auto 1fr;
  }

  .redd-home__quick-arrow {
    display: none;
  }

  .redd-home__section-heading {
    display: grid;
    gap: 18px;
  }

  .redd-home__carousel-actions {
    justify-self: start;
  }

  .redd-home__campaign-copy h3 {
    font-size: 30px;
  }

  .redd-home__about-media,
  .redd-home__about-media > img,
  .redd-home__about-placeholder {
    min-height: 350px;
    height: 350px;
  }

  .redd-home__about-media > img,
  .redd-home__about-placeholder {
    width: calc(100% - 18px);
    margin-inline-start: 18px;
  }

  .redd-home__about-note {
    min-width: 220px;
    bottom: 20px;
  }

  .redd-home__feature-grid {
    grid-template-columns: 1fr;
  }

  .redd-home__vision-content {
    padding: 24px;
  }

  .redd-home__article-media {
    height: 220px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .redd-home *,
  .redd-home *::before,
  .redd-home *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .redd-home-reveal {
    opacity: 1;
    transform: none;
  }
}

/* v2.5: dashboard media inside the existing hero */
.redd-home__hero-carousel,
.redd-home__hero-carousel .carousel-inner,
.redd-home__hero-carousel .carousel-item,
.redd-home__hero-ad,
.redd-home__hero-media {
  width: 100%;
  min-height: 480px;
  height: 480px;
}

.redd-home__hero-carousel,
.redd-home__hero-carousel .carousel-inner,
.redd-home__hero-carousel .carousel-item,
.redd-home__hero-ad {
  position: relative;
  border-radius: 26px;
}

.redd-home__hero-carousel .carousel-inner {
  overflow: visible;
}

.redd-home__hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: 26px;
  background: linear-gradient(145deg, var(--home-teal-soft), var(--home-teal-dark));
}

.redd-home__hero-media img,
.redd-home__hero-media video,
.redd-home__hero-media .redd-home__hero-visual-placeholder {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: inherit;
  object-fit: cover;
}

.redd-home__hero-ad-card {
  position: absolute;
  z-index: 4;
  inset-inline-start: 22px;
  bottom: 24px;
  width: min(330px, calc(100% - 44px));
  display: grid;
  gap: 5px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.64);
  border-radius: 18px;
  color: var(--home-ink);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 46px rgba(8, 32, 37, 0.24);
  backdrop-filter: blur(16px);
}

.redd-home__hero-ad-label {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 6px;
  color: var(--home-teal);
  font-size: 10px;
  font-weight: 650;
}

.redd-home__hero-ad-card > strong {
  overflow: hidden;
  color: var(--home-ink);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.redd-home__hero-ad-card > small {
  overflow: hidden;
  color: var(--home-muted);
  font-size: 11px;
  line-height: 1.55;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.redd-home__hero-ad-link {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 8px;
  margin-top: 5px;
  color: var(--home-teal-dark) !important;
  font-size: 11px;
  font-weight: 700;
}

.redd-home__hero-ad-link:hover,
.redd-home__hero-ad-link:focus-visible {
  color: var(--home-teal) !important;
}

.redd-home__hero-seal {
  z-index: 5;
  overflow: hidden;
  text-align: center;
}

.redd-home__hero-seal img {
  width: 100%;
  height: 100%;
  padding: 12px;
  border-radius: 50%;
  object-fit: contain;
  background: #fff;
}

.redd-home__hero-carousel-controls {
  position: absolute;
  z-index: 6;
  inset-inline-end: 18px;
  bottom: 18px;
  display: flex;
  gap: 7px;
}

.redd-home__hero-carousel-controls button {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 11px;
  color: #fff;
  background: rgba(16, 55, 62, 0.62);
  box-shadow: 0 8px 22px rgba(5, 28, 32, 0.18);
  backdrop-filter: blur(10px);
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.redd-home__hero-carousel-controls button:hover,
.redd-home__hero-carousel-controls button:focus-visible {
  color: var(--home-teal-dark);
  background: #fff;
  transform: translateY(-2px);
}

.redd-home__hero-indicators {
  z-index: 6;
  inset-inline: 0;
  bottom: 22px;
  width: max-content;
  margin: 0 auto;
  gap: 5px;
}

.redd-home__hero-indicators [data-bs-target] {
  width: 7px;
  height: 7px;
  margin: 0;
  border: 0;
  border-radius: 999px;
  background: #fff;
  opacity: 0.56;
  transition: width 0.2s ease, opacity 0.2s ease;
}

.redd-home__hero-indicators [data-bs-target].active {
  width: 25px;
  opacity: 1;
}

@media (max-width: 767.98px) {
  .redd-home__hero-carousel,
  .redd-home__hero-carousel .carousel-inner,
  .redd-home__hero-carousel .carousel-item,
  .redd-home__hero-ad,
  .redd-home__hero-media {
    min-height: 370px;
    height: 370px;
  }

  .redd-home__hero-carousel,
  .redd-home__hero-carousel .carousel-inner,
  .redd-home__hero-carousel .carousel-item,
  .redd-home__hero-ad,
  .redd-home__hero-media {
    border-radius: 21px;
  }

  .redd-home__hero-ad-card {
    inset-inline: 14px;
    bottom: 14px;
    width: calc(100% - 92px);
    padding: 13px 14px;
  }

  .redd-home__hero-carousel-controls {
    inset-inline-end: 10px;
    bottom: 13px;
  }

  .redd-home__hero-carousel-controls button {
    width: 32px;
    height: 32px;
    border-radius: 10px;
  }

  .redd-home__hero-indicators {
    display: none;
  }
}

@media (max-width: 575.98px) {
  .redd-home__hero-carousel,
  .redd-home__hero-carousel .carousel-inner,
  .redd-home__hero-carousel .carousel-item,
  .redd-home__hero-ad,
  .redd-home__hero-media {
    min-height: 320px;
    height: 320px;
  }

  .redd-home__hero-ad-card {
    width: calc(100% - 76px);
  }

  .redd-home__hero-ad-card > small,
  .redd-home__hero-ad-label {
    display: none;
  }
}

/* v2.5 CSS-only balance fix: prominent media without crowding the hero copy. */
.redd-home__hero-ad-card {
  color: var(--home-ink) !important;
  background: rgba(255, 255, 255, 0.96);
  text-shadow: none;
}

.redd-home__hero-ad-label {
  color: var(--home-teal) !important;
}

.redd-home__hero-ad-card > strong {
  color: var(--home-ink) !important;
}

.redd-home__hero-ad-card > small {
  color: #587277 !important;
}

.redd-home__hero-ad-link {
  color: var(--home-teal-dark) !important;
}

@media (min-width: 1200px) {
  .redd-home__hero {
    min-height: 680px;
    padding-top: clamp(72px, 6vw, 92px);
    padding-bottom: 118px;
  }

  .redd-home__hero .redd-home__container {
    width: min(100% - 40px, 1460px);
  }

  .redd-home__hero-grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(460px, 0.92fr);
    gap: clamp(50px, 4vw, 66px);
  }

  .redd-home__hero-copy {
    max-width: 760px;
  }

  .redd-home__hero-copy h1 {
    max-width: 740px;
    font-size: clamp(50px, 4.2vw, 68px);
    line-height: 1.14;
    letter-spacing: -0.025em;
  }

  .redd-home__hero-stage {
    width: 100%;
    max-width: 660px;
    justify-self: center;
  }

  .redd-home__hero-stage::before {
    width: 86%;
    height: 90%;
    inset-inline-end: -18px;
    top: -18px;
    border-radius: 32px;
  }

  .redd-home__hero-visual,
  .redd-home__hero-visual > img,
  .redd-home__hero-visual-placeholder,
  .redd-home__hero-carousel,
  .redd-home__hero-carousel .carousel-inner,
  .redd-home__hero-carousel .carousel-item,
  .redd-home__hero-ad,
  .redd-home__hero-media {
    min-height: 500px;
    height: 500px;
  }

  .redd-home__hero-visual {
    border-width: 6px;
    border-radius: 32px;
  }

  .redd-home__hero-ad-card {
    inset-inline-start: 20px;
    bottom: 20px;
    width: min(320px, calc(100% - 40px));
    padding: 15px 17px;
  }

  .redd-home__hero-seal {
    inset-inline-end: 16px;
    top: 18px;
    width: 78px;
    height: 78px;
    border: 4px solid rgba(255, 255, 255, 0.9);
  }

  .redd-home__hero-seal img {
    padding: 8px;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .redd-home__hero-stage {
    width: min(100%, 680px);
  }

  .redd-home__hero-visual,
  .redd-home__hero-visual > img,
  .redd-home__hero-visual-placeholder,
  .redd-home__hero-carousel,
  .redd-home__hero-carousel .carousel-inner,
  .redd-home__hero-carousel .carousel-item,
  .redd-home__hero-ad,
  .redd-home__hero-media {
    min-height: 420px;
    height: 420px;
  }
}

/* CSS-only logo refinement: preserve the uploaded logo's original shape. */
.redd-home__hero-seal {
  inset-inline-end: 22px;
  top: 22px;
  width: clamp(124px, 12vw, 168px);
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.redd-home__hero-seal img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  padding: 0;
  border: 0;
  border-radius: 0;
  object-fit: contain;
  background: transparent;
  filter: drop-shadow(0 5px 10px rgba(8, 32, 37, 0.28));
}

@media (max-width: 767.98px) {
  .redd-home__hero-seal {
    inset-inline-end: 14px;
    top: 14px;
    width: 116px;
    height: 64px;
  }
}

@media (max-width: 575.98px) {
  .redd-home__hero-seal {
    width: 102px;
    height: 56px;
  }
}

/* v2.6 compact scale: lighter hierarchy and a shorter, calmer landing page. */
.redd-home h1,
.redd-home h2,
.redd-home h3,
.redd-home h4,
.redd-home strong,
.redd-home b {
  font-weight: 600;
}

.redd-home__container {
  width: min(100% - 48px, 1340px);
}

.redd-home__hero-copy h1 {
  font-size: clamp(38px, 3.25vw, 52px);
  font-weight: 600;
  line-height: 1.24;
  letter-spacing: -0.02em;
}

.redd-home__hero-copy > p {
  margin-top: 17px;
  font-size: 15px;
  line-height: 1.75;
}

.redd-home__hero-actions,
.redd-home__cta-actions {
  gap: 10px;
  margin-top: 24px;
}

.redd-home__button {
  min-height: 46px;
  padding: 10px 18px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 600;
}

.redd-home__trust-row {
  gap: 15px;
  margin-top: 24px;
  font-size: 11px;
}

.redd-home__quick-wrap {
  margin-top: -42px;
}

.redd-home__quick-card {
  min-height: 94px;
  gap: 13px;
  padding: 16px;
  border-radius: 17px;
}

.redd-home__quick-icon {
  width: 43px;
  height: 43px;
  border-radius: 12px;
}

.redd-home__quick-copy strong {
  font-size: 14px;
}

.redd-home__quick-copy small {
  font-size: 11px;
}

.redd-home__section {
  padding: clamp(54px, 5.2vw, 74px) 0;
}

.redd-home__section-heading {
  gap: 22px;
  margin-bottom: 27px;
}

.redd-home__section-heading h2,
.redd-home__about-copy h2,
.redd-home__cta-copy h2 {
  font-size: clamp(26px, 2.45vw, 38px);
  font-weight: 600;
  line-height: 1.35;
}

.redd-home__section-heading p,
.redd-home__about-copy > p,
.redd-home__cta-copy p {
  font-size: 14px;
  line-height: 1.72;
}

.redd-home__campaign {
  min-height: 380px;
}

.redd-home__campaign-content {
  gap: 34px;
  padding: clamp(30px, 4vw, 52px);
}

.redd-home__campaign-copy h3 {
  margin-top: 13px;
  font-size: clamp(27px, 3vw, 42px);
  font-weight: 600;
  line-height: 1.32;
}

.redd-home__campaign-copy h4 {
  font-size: clamp(17px, 1.8vw, 22px);
}

.redd-home__campaign-copy p {
  margin: 12px 0 18px;
  font-size: 14px;
  line-height: 1.72;
}

.redd-home__campaign-logo {
  width: 142px;
  min-height: 108px;
  padding: 16px;
}

.redd-home__stat {
  min-height: 132px;
  padding: 19px;
  border-radius: 17px;
}

.redd-home__stat-number {
  font-size: clamp(30px, 3vw, 42px);
  font-weight: 600;
}

.redd-home__vision-card {
  min-height: 300px;
}

.redd-home__vision-content {
  padding: 24px;
}

.redd-home__vision-icon {
  width: 43px;
  height: 43px;
  margin-bottom: 14px;
}

.redd-home__vision-content h3 {
  font-size: 21px;
}

.redd-home__article-media {
  height: 205px;
}

.redd-home__article-content {
  padding: 18px;
}

.redd-home__article-content h3 {
  font-size: 17px;
  font-weight: 600;
}

.redd-home__article-content > p {
  min-height: 62px;
  margin: 9px 0 16px;
  font-size: 12px;
}

.redd-home__section--cta {
  padding-top: 58px;
  padding-bottom: 78px;
}

.redd-home__cta-card {
  min-height: 225px;
  gap: 30px;
  padding: clamp(28px, 4vw, 48px);
  border-radius: 23px;
}

@media (min-width: 1200px) {
  .redd-home__hero {
    min-height: 570px;
    padding: 52px 0 82px;
  }

  .redd-home__hero .redd-home__container {
    width: min(100% - 48px, 1340px);
  }

  .redd-home__hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(420px, 0.88fr);
    gap: clamp(36px, 3.2vw, 50px);
  }

  .redd-home__hero-copy {
    max-width: 690px;
  }

  .redd-home__hero-copy h1 {
    max-width: 680px;
    font-size: clamp(40px, 3.25vw, 52px);
    line-height: 1.24;
  }

  .redd-home__hero-stage {
    max-width: 560px;
  }

  .redd-home__hero-visual,
  .redd-home__hero-visual > img,
  .redd-home__hero-visual-placeholder,
  .redd-home__hero-carousel,
  .redd-home__hero-carousel .carousel-inner,
  .redd-home__hero-carousel .carousel-item,
  .redd-home__hero-ad,
  .redd-home__hero-media {
    min-height: 415px;
    height: 415px;
  }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
  .redd-home__hero {
    min-height: 540px;
    padding: 48px 0 78px;
  }

  .redd-home__hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(370px, 0.85fr);
    gap: 36px;
  }

  .redd-home__hero-visual,
  .redd-home__hero-visual > img,
  .redd-home__hero-visual-placeholder,
  .redd-home__hero-carousel,
  .redd-home__hero-carousel .carousel-inner,
  .redd-home__hero-carousel .carousel-item,
  .redd-home__hero-ad,
  .redd-home__hero-media {
    min-height: 380px;
    height: 380px;
  }
}

@media (max-width: 991.98px) {
  .redd-home__container {
    width: min(100% - 32px, 1340px);
  }

  .redd-home__hero {
    min-height: 0;
    padding: 44px 0 82px;
  }

  .redd-home__hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .redd-home__hero-copy h1 {
    font-size: clamp(36px, 6vw, 46px);
  }

  .redd-home__hero-visual,
  .redd-home__hero-visual > img,
  .redd-home__hero-visual-placeholder,
  .redd-home__hero-carousel,
  .redd-home__hero-carousel .carousel-inner,
  .redd-home__hero-carousel .carousel-item,
  .redd-home__hero-ad,
  .redd-home__hero-media {
    min-height: 360px;
    height: 360px;
  }
}

@media (max-width: 767.98px) {
  .redd-home__container {
    width: min(100% - 24px, 1340px);
  }

  .redd-home__hero-copy h1 {
    font-size: clamp(31px, 9vw, 38px);
  }

  .redd-home__hero-copy > p {
    font-size: 14px;
  }

  .redd-home__hero-visual,
  .redd-home__hero-visual > img,
  .redd-home__hero-visual-placeholder,
  .redd-home__hero-carousel,
  .redd-home__hero-carousel .carousel-inner,
  .redd-home__hero-carousel .carousel-item,
  .redd-home__hero-ad,
  .redd-home__hero-media {
    min-height: 310px;
    height: 310px;
  }

  .redd-home__section {
    padding: 48px 0;
  }
}

@media (max-width: 575.98px) {
  .redd-home__hero {
    padding-top: 34px;
  }

  .redd-home__hero-visual,
  .redd-home__hero-visual > img,
  .redd-home__hero-visual-placeholder,
  .redd-home__hero-carousel,
  .redd-home__hero-carousel .carousel-inner,
  .redd-home__hero-carousel .carousel-item,
  .redd-home__hero-ad,
  .redd-home__hero-media {
    min-height: 275px;
    height: 275px;
  }

  .redd-home__quick-grid {
    gap: 9px;
  }

  .redd-home__quick-card {
    min-height: 84px;
    padding: 13px;
  }

  .redd-home__section-heading h2,
  .redd-home__about-copy h2,
  .redd-home__cta-copy h2 {
    font-size: 25px;
  }
}