:root {
  --site-max-width: 1300px;
  --raj-black: #020302;
  --raj-panel: #07100b;
  --raj-panel-soft: #0b160f;
  --raj-gold: #f2b94f;
  --raj-gold-bright: #ffd46f;
  --raj-green: #096a32;
  --raj-green-bright: #27a84f;
  --raj-text: #fff8ea;
  --raj-muted: #dac8a6;
  --raj-border: rgba(242, 185, 79, 0.56);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.raj-home-page {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(9, 106, 50, 0.28), transparent 360px),
    linear-gradient(180deg, #040403 0%, #020302 58%, #07100b 100%);
  color: var(--raj-text);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.45;
}

body.raj-menu-open {
  overflow: hidden;
}

.raj-home-page a {
  color: inherit;
  text-decoration: none;
}

.raj-icon {
  display: inline-block;
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.raj-wrap {
  width: min(var(--site-max-width), calc(100% - 40px));
  margin: 0 auto;
}

.raj-topbar {
  border-bottom: 1px solid var(--raj-border);
  background: #010101;
  color: var(--raj-muted);
  font-size: 13px;
}

.raj-topbar__inner,
.raj-topbar__badges,
.raj-topbar__right {
  display: flex;
  align-items: center;
  gap: 18px;
}

.raj-topbar__inner {
  min-height: 40px;
  justify-content: space-between;
}

.raj-topbar__badges span,
.raj-topbar__right > span:first-child {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  position: relative;
  white-space: nowrap;
}

.raj-topbar__badges .raj-icon,
.raj-topbar__right > span:first-child .raj-icon {
  width: 16px;
  height: 16px;
  color: var(--raj-gold);
}

.raj-social {
  display: inline-flex;
  width: 24px;
  height: 24px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--raj-border);
  border-radius: 50%;
  color: var(--raj-gold);
  font-size: 10px;
  text-transform: uppercase;
}

.raj-social .raj-icon {
  width: 14px;
  height: 14px;
}

.raj-menu-toggle,
.raj-mobile-backdrop,
.raj-mobile-menu {
  display: none;
}

.raj-brandbar {
  background: #020302;
  border-bottom: 1px solid rgba(242, 185, 79, 0.28);
}

.raj-brandbar__inner {
  display: flex;
  min-height: 126px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.raj-brand {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 330px;
}

.raj-brand img {
  width: 142px;
  height: 94px;
  object-fit: contain;
}

.raj-brand strong {
  display: block;
  color: #e7191b;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 46px;
  line-height: 0.92;
  text-transform: uppercase;
}

.raj-brand span {
  display: block;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
}

.raj-brand em {
  display: block;
  margin-top: 4px;
  color: var(--raj-gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
  font-style: italic;
}

.raj-contact-grid {
  display: grid;
  grid-template-columns: minmax(190px, 0.9fr) minmax(190px, 0.9fr) minmax(270px, 1.2fr);
  gap: 20px;
  width: min(780px, 100%);
}

.raj-contact-grid a {
  display: flex;
  min-height: 76px;
  align-items: center;
  gap: 14px;
  padding: 13px 18px;
  border: 1px solid rgba(242, 185, 79, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.02);
}

.raj-contact-grid a > div {
  min-width: 0;
}

.raj-contact-icon {
  width: 32px;
  height: 32px;
  color: var(--raj-gold);
}

.raj-contact-grid span {
  display: block;
  color: var(--raj-muted);
  font-size: 13px;
}

.raj-contact-grid strong {
  display: block;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}

.raj-nav {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--raj-border);
  background: rgba(3, 6, 4, 0.97);
  backdrop-filter: blur(8px);
}

.raj-nav__inner {
  display: flex;
  min-height: 52px;
  align-items: center;
  gap: 2px;
  flex-wrap: wrap;
  justify-content: center;
  overflow-x: visible;
  padding: 5px 0;
  width: min(var(--site-max-width), calc(100% - 40px));
}

.raj-nav a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 0 18px;
  border-radius: 6px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  white-space: nowrap;
}

.raj-nav a:hover,
.raj-nav a.is-active,
.raj-nav__quote {
  border: 1px solid var(--raj-border);
  background: linear-gradient(180deg, #0a7435, #064820);
}

.raj-nav__quote {
  margin-left: 0;
}

.raj-menu-toggle {
  width: 46px;
  height: 42px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  border: 1px solid var(--raj-border);
  border-radius: 8px;
  background: rgba(3, 8, 5, 0.86);
  color: var(--raj-gold);
}

.raj-menu-toggle span {
  display: block;
  width: 21px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.raj-mobile-backdrop {
  position: fixed;
  inset: 0;
  z-index: 80;
  border: 0;
  background: rgba(0, 0, 0, 0.62);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.raj-mobile-menu {
  position: fixed;
  inset: 0 0 0 auto;
  z-index: 90;
  width: min(360px, 90vw);
  height: 100dvh;
  flex-direction: column;
  overflow-y: auto;
  padding: 18px;
  border-left: 1px solid var(--raj-border);
  background: #020302;
  box-shadow: -18px 0 40px rgba(0, 0, 0, 0.42);
  transform: translateX(100%);
  transition: transform 0.24s ease;
}

.raj-menu-open .raj-mobile-backdrop {
  opacity: 1;
  pointer-events: auto;
}

.raj-menu-open .raj-mobile-menu {
  transform: translateX(0);
}

.raj-mobile-menu__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(242, 185, 79, 0.22);
}

.raj-mobile-menu__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.raj-mobile-menu__brand img {
  width: 74px;
  height: 52px;
  flex: 0 0 auto;
  object-fit: contain;
}

.raj-mobile-menu__brand strong,
.raj-mobile-menu__brand span {
  display: block;
}

.raj-mobile-menu__brand strong {
  color: var(--raj-gold-bright);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  line-height: 1;
  text-transform: uppercase;
}

.raj-mobile-menu__brand span {
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.15;
  text-transform: uppercase;
}

.raj-mobile-menu__socials {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 14px 0 0;
}

.raj-mobile-menu__socials .raj-social {
  width: 32px;
  height: 32px;
}

.raj-mobile-menu__socials .raj-icon {
  width: 16px;
  height: 16px;
}

.raj-mobile-menu__close {
  position: relative;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  border: 1px solid var(--raj-border);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.02);
  color: var(--raj-gold);
}

.raj-mobile-menu__close span {
  position: absolute;
  top: 18px;
  left: 9px;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.raj-mobile-menu__close span:first-child {
  transform: rotate(45deg);
}

.raj-mobile-menu__close span:last-child {
  transform: rotate(-45deg);
}

.raj-mobile-menu__nav {
  display: grid;
  gap: 8px;
  padding: 16px 0;
}

.raj-mobile-menu__nav a {
  display: flex;
  min-height: 42px;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(242, 185, 79, 0.18);
  border-radius: 8px;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.raj-mobile-menu__nav a:first-child,
.raj-mobile-menu__nav a:last-child {
  border-color: var(--raj-border);
  background: linear-gradient(180deg, #0a7435, #064820);
}

.raj-mobile-menu__contacts {
  display: grid;
  gap: 10px;
  padding-top: 14px;
  border-top: 1px solid rgba(242, 185, 79, 0.22);
}

.raj-mobile-menu__contacts a {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 13px 12px;
  border: 1px solid rgba(242, 185, 79, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.02);
}

.raj-mobile-menu__contacts span,
.raj-mobile-menu__contacts strong {
  display: block;
}

.raj-mobile-menu__contacts span {
  color: var(--raj-muted);
  font-size: 12px;
}

.raj-mobile-menu__contacts strong {
  color: #fff;
  font-size: 13px;
  overflow-wrap: anywhere;
}

.raj-hero {
  position: relative;
  min-height: 440px;
  overflow: hidden;
  border-bottom: 1px solid rgba(242, 185, 79, 0.2);
  background-image:
    linear-gradient(90deg, rgba(2, 3, 2, 0.98) 0%, rgba(2, 3, 2, 0.76) 42%, rgba(2, 3, 2, 0.18) 100%),
    linear-gradient(180deg, rgba(2, 3, 2, 0.05), #020302),
    var(--raj-hero-image);
  background-position: center;
  background-size: cover;
}

.raj-hero__inner {
  position: relative;
  z-index: 1;
  padding: 54px 0 22px;
}

.raj-eyebrow {
  margin: 0;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  font-weight: 700;
  text-transform: uppercase;
}

.raj-hero h1 {
  margin: 0 0 8px;
  color: var(--raj-gold-bright);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 64px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.raj-hero__subtitle {
  max-width: 700px;
  margin: 0 0 26px;
  color: #fff;
  font-size: 17px;
}

.raj-hero__subtitle span::before {
  content: "|";
  padding: 0 10px;
  color: var(--raj-gold);
}

.raj-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 22px;
}

.raj-button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 24px;
  border: 1px solid var(--raj-border);
  border-radius: 8px;
  background: rgba(4, 9, 6, 0.72);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  transition: background 0.2s ease, transform 0.2s ease;
}

.raj-button .raj-icon {
  width: 18px;
  height: 18px;
}

.raj-button:hover {
  color: #fff;
  transform: translateY(-1px);
  background: rgba(242, 185, 79, 0.16);
}

.raj-button--primary {
  background: linear-gradient(180deg, #118540, #075125);
}

.raj-trust-row,
.raj-stats,
.raj-services,
.raj-package-grid,
.raj-split,
.raj-brand-strips,
.raj-footer__grid {
  display: grid;
  gap: 14px;
}

.raj-trust-row {
  display: flex;
  max-width: 585px;
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--raj-border);
  border-radius: 8px;
  background: rgba(3, 8, 5, 0.82);
}

.raj-stats,
.raj-services,
.raj-panel,
.raj-strip {
  border: 1px solid var(--raj-border);
  border-radius: 8px;
  background: rgba(3, 8, 5, 0.82);
}

.raj-trust-card {
  display: flex;
  align-items: center;
  flex: 1 1 0;
  gap: 9px;
  min-width: 0;
  padding: 10px 13px;
  border-right: 1px solid rgba(242, 185, 79, 0.36);
}

.raj-trust-card:last-child {
  border-right: 0;
}

.raj-trust-card > .raj-icon {
  width: 29px;
  height: 29px;
  color: var(--raj-gold);
}

.raj-trust-card strong {
  display: block;
  color: var(--raj-gold);
  font-size: 15px;
  line-height: 1.1;
}

.raj-trust-card span {
  display: block;
  color: #fff;
  font-size: 11px;
  line-height: 1.25;
  white-space: nowrap;
}

.raj-stats {
  grid-template-columns: repeat(4, 1fr);
  position: relative;
  z-index: 1;
  margin-top: 0;
  margin-bottom: 16px;
  padding: 20px 22px;
}

.raj-stats div {
  display: flex;
  min-height: 74px;
  align-items: center;
  gap: 16px;
  padding-left: 26px;
  border-left: 1px solid rgba(242, 185, 79, 0.3);
}

.raj-stats div > .raj-icon {
  width: 46px;
  height: 46px;
  color: var(--raj-gold);
}

.raj-stats p {
  margin: 0;
}

.raj-stats div:first-child {
  border-left: 0;
}

.raj-stats strong {
  display: block;
  color: var(--raj-gold-bright);
  font-size: 30px;
  line-height: 1;
}

.raj-stats span {
  display: block;
  color: #fff;
  font-size: 14px;
}

.raj-services {
  grid-template-columns: repeat(8, 1fr);
  margin-top: 16px;
  padding: 14px 0;
}

.raj-service-card {
  display: flex;
  min-height: 106px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-left: 1px solid rgba(242, 185, 79, 0.34);
  color: #fff;
  text-align: center;
}

.raj-service-card:first-child {
  border-left: 0;
}

.raj-service-card span {
  display: inline-flex;
  width: 56px;
  height: 50px;
  align-items: center;
  justify-content: center;
  color: var(--raj-gold);
}

.raj-service-card span .raj-icon {
  width: 50px;
  height: 50px;
  stroke-width: 1.7;
}

.raj-service-card strong {
  max-width: 116px;
  color: #fff;
  font-size: 14px;
  line-height: 1.14;
  text-transform: uppercase;
}

.raj-packages {
  padding-top: 8px;
}

.raj-section-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 12px 0;
}

.raj-section-title span {
  width: 42px;
  height: 1px;
  background: var(--raj-border);
}

.raj-section-title h2,
.raj-panel h2,
.raj-strip h2,
.raj-footer h2 {
  margin: 0;
  color: var(--raj-gold-bright);
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
}

.raj-package-grid {
  grid-template-columns: repeat(4, 1fr);
}

.raj-package-card {
  overflow: hidden;
  border: 1px solid var(--raj-border);
  border-radius: 8px;
  background: #050806;
}

.raj-package-card__image {
  position: relative;
  min-height: 142px;
  background-position: center;
  background-size: cover;
}

.raj-package-card__image span {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 5px 9px;
  border: 1px solid rgba(242, 185, 79, 0.32);
  border-radius: 5px;
  background: #096a32;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.raj-package-card__body {
  padding: 16px;
}

.raj-package-card h3 {
  min-height: 43px;
  margin: 0 0 6px;
  color: var(--raj-gold);
  font-size: 17px;
  line-height: 1.25;
  text-transform: uppercase;
}

.raj-package-card p,
.raj-package-card small {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0 0 5px;
  color: #fff;
  font-size: 13px;
}

.raj-package-card p .raj-icon,
.raj-package-card small .raj-icon {
  width: 14px;
  height: 14px;
  color: var(--raj-gold);
}

.raj-stars {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  color: var(--raj-gold-bright);
  letter-spacing: 0;
}

.raj-stars .raj-icon {
  width: 12px;
  height: 12px;
  fill: currentColor;
  stroke: currentColor;
}

.raj-package-card__body > strong {
  display: block;
  margin: 2px 0 13px;
  color: var(--raj-green-bright);
  font-size: 22px;
  line-height: 1.1;
}

.raj-package-card a {
  display: flex;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border: 1px solid rgba(39, 168, 79, 0.6);
  border-radius: 6px;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.raj-package-card a .raj-icon {
  width: 14px;
  height: 14px;
  color: var(--raj-gold);
}

.raj-center-action {
  display: flex;
  justify-content: center;
  margin: 12px 0 2px;
}

.raj-split {
  grid-template-columns: 1.15fr 0.85fr;
  margin-top: 28px;
}

.raj-panel {
  min-height: 210px;
  padding: 24px;
}

.raj-why {
  background:
    linear-gradient(90deg, rgba(5, 8, 6, 0.95), rgba(5, 8, 6, 0.7)),
    url("../img/raj-home/hero.jpg") center/cover;
}

.raj-why ul {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.raj-why li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 7px 0;
  color: #fff;
  font-size: 15px;
}

.raj-why li .raj-icon {
  width: 17px;
  height: 17px;
  color: var(--raj-green-bright);
}

.raj-testimonial {
  text-align: center;
}

.raj-testimonial blockquote {
  max-width: 420px;
  margin: 16px auto 12px;
  color: #fff;
  font-size: 18px;
  line-height: 1.55;
}

.raj-testimonial p {
  margin: 6px 0 0;
  color: #fff;
  font-weight: 700;
}

.raj-testimonial span {
  color: var(--raj-muted);
  font-weight: 400;
}

.raj-brand-strips {
  grid-template-columns: 1fr 1.35fr;
  margin-top: 14px;
  margin-bottom: 22px;
}

.raj-strip {
  padding: 15px 18px;
}

.raj-strip h2 {
  margin-bottom: 12px;
  text-align: center;
  font-size: 14px;
}

.raj-strip div {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.raj-strip span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 13px;
  border: 1px solid rgba(242, 185, 79, 0.24);
  border-radius: 6px;
  color: #fff;
  font-weight: 800;
}

.raj-strip span .raj-icon {
  width: 20px;
  height: 20px;
  color: var(--raj-gold);
}

.raj-strip--payments div {
  align-items: center;
  flex-wrap: nowrap;
  gap: 14px;
}

.raj-strip--payments span {
  min-height: 48px;
  padding: 0 4px;
  border: 0;
  background: transparent;
}

.raj-payment-logo img {
  display: block;
  width: auto;
  max-width: 116px;
  max-height: 36px;
  object-fit: contain;
}

.raj-payment-logo:nth-child(2) img {
  max-width: 118px;
}

.raj-payment-logo:nth-child(3) img {
  max-width: 112px;
}

.raj-payment-logo:nth-child(4) img {
  max-width: 126px;
}

.raj-payment-logo:nth-child(5) img {
  max-width: 64px;
}

.raj-strip--airlines span {
  flex: 1 1 0;
  width: 100%;
  min-width: 0;
  min-height: 56px;
  overflow: hidden;
  padding: 5px 9px;
  border: 0;
  border-right: 1px solid rgba(242, 185, 79, 0.24);
  border-radius: 0;
  background: transparent;
}

.raj-strip--airlines div {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
}

.raj-strip--airlines span:last-child {
  border-right: 0;
}

.raj-strip--airlines img {
  width: 124px;
  max-width: 100%;
  height: 44px;
  object-fit: contain;
  object-position: center;
}

.raj-airline-logo--ek img {
  width: 92px;
  height: 48px;
}

.raj-airline-logo--tr img {
  width: 108px;
  max-width: 100%;
  height: 38px;
  object-fit: contain;
  filter: invert(1) hue-rotate(180deg) saturate(1.25) brightness(1.12);
}

.raj-footer {
  border-top: 1px solid var(--raj-border);
  background: #030503;
}

.raj-footer__grid {
  grid-template-columns: 1.35fr 0.8fr 0.95fr 1.25fr 1fr;
  padding: 26px 0;
}

.raj-footer img {
  width: 142px;
  height: auto;
  margin-bottom: 12px;
}

.raj-footer p,
.raj-footer a {
  display: block;
  margin: 6px 0;
  color: #fff;
  font-size: 14px;
}

.raj-footer p .raj-icon,
.raj-footer a .raj-icon {
  width: 16px;
  height: 16px;
  margin-right: 8px;
  color: var(--raj-gold);
  vertical-align: -3px;
}

.raj-footer .raj-button {
  display: inline-flex;
  margin-top: 8px;
}

.raj-footer .raj-button .raj-icon {
  margin-right: 0;
}

.raj-footer h2 {
  margin-bottom: 12px;
  font-size: 15px;
}

.raj-footer__bottom {
  border-top: 1px solid rgba(242, 185, 79, 0.22);
  color: var(--raj-muted);
  font-size: 13px;
}

.raj-footer__bottom .raj-wrap {
  display: flex;
  min-height: 42px;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

@media (max-width: 1100px) {
  .raj-brandbar__inner {
    align-items: flex-start;
    flex-direction: column;
    padding: 20px 0;
  }

  .raj-contact-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: 100%;
  }

  .raj-services,
  .raj-package-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .raj-service-card {
    border-left: 0;
    border-top: 1px solid rgba(242, 185, 79, 0.18);
  }

  .raj-footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 820px) {
  .raj-wrap {
    width: min(100% - 24px, var(--site-max-width));
  }

  .raj-brandbar__inner {
    min-height: 96px;
    align-items: center;
    flex-direction: row;
    padding: 12px 0;
  }

  .raj-nav,
  .raj-contact-grid {
    display: none;
  }

  .raj-menu-toggle {
    display: inline-flex;
  }

  .raj-mobile-backdrop {
    display: block;
  }

  .raj-mobile-menu {
    display: flex;
  }

  .raj-topbar {
    font-size: 11px;
  }

  .raj-topbar__inner {
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    gap: 8px;
    min-height: 0;
    padding: 7px 0;
  }

  .raj-topbar__badges {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, max-content));
    align-items: center;
    gap: 5px 12px;
  }

  .raj-topbar__badges span,
  .raj-topbar__right > span:first-child {
    gap: 5px;
  }

  .raj-topbar__right {
    display: none;
  }

  .raj-topbar__right > span:first-child {
    display: none;
  }

  .raj-topbar__badges .raj-icon,
  .raj-topbar__right > span:first-child .raj-icon {
    width: 13px;
    height: 13px;
  }

  .raj-nav__inner {
    overflow-x: visible;
    padding: 8px 0;
    width: min(100% - 24px, var(--site-max-width));
  }

  .raj-nav a {
    flex: 1 1 calc(50% - 4px);
    padding: 0 10px;
  }

  .raj-nav__quote {
    margin-left: 0;
  }

  .raj-brand {
    min-width: 0;
  }

  .raj-brand img {
    width: 116px;
  }

  .raj-brand strong {
    font-size: 38px;
  }

  .raj-contact-grid,
  .raj-stats,
  .raj-split,
  .raj-brand-strips {
    grid-template-columns: 1fr;
  }

  .raj-contact-grid strong {
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .raj-trust-row {
    max-width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .raj-trust-card {
    border-right: 0;
    border-bottom: 1px solid rgba(242, 185, 79, 0.36);
    gap: 7px;
    padding: 9px 10px;
  }

  .raj-trust-card:nth-child(odd) {
    border-right: 1px solid rgba(242, 185, 79, 0.36);
  }

  .raj-trust-card:nth-child(3) {
    border-bottom: 0;
  }

  .raj-trust-card:last-child {
    border-bottom: 0;
  }

  .raj-trust-card > .raj-icon {
    width: 25px;
    height: 25px;
  }

  .raj-trust-card strong {
    font-size: 14px;
  }

  .raj-trust-card span {
    font-size: 10px;
  }

  .raj-hero {
    min-height: 0;
    background-image:
      linear-gradient(180deg, rgba(2, 3, 2, 0.93) 0%, rgba(2, 3, 2, 0.82) 56%, rgba(2, 3, 2, 0.55) 100%),
      var(--raj-hero-image);
  }

  .raj-hero h1 {
    font-size: 44px;
  }

  .raj-eyebrow {
    font-size: 24px;
  }

  .raj-stats div {
    min-height: 0;
    border-left: 0;
    border-top: 1px solid rgba(242, 185, 79, 0.24);
    gap: 12px;
    padding: 12px 0 0;
  }

  .raj-stats div:first-child {
    border-top: 0;
    padding-top: 0;
  }

  .raj-stats div > .raj-icon {
    width: 38px;
    height: 38px;
  }

  .raj-stats strong {
    font-size: 25px;
  }

  .raj-stats span {
    font-size: 13px;
  }

  .raj-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    padding: 14px;
  }

  .raj-stats div {
    min-height: 78px;
    padding: 12px 8px;
  }

  .raj-stats div:nth-child(-n + 2) {
    border-top: 0;
  }

  .raj-stats div:nth-child(odd) {
    border-right: 1px solid rgba(242, 185, 79, 0.24);
  }

  .raj-stats div:first-child {
    padding-top: 12px;
  }

  .raj-package-grid,
  .raj-services {
    grid-template-columns: repeat(2, 1fr);
  }

  .raj-footer__bottom .raj-wrap {
    align-items: flex-start;
    flex-direction: column;
    padding: 12px 0;
  }

  .raj-strip--payments div {
    flex-wrap: wrap;
  }
}

@media (max-width: 520px) {
  .raj-brand {
    flex: 1 1 auto;
    align-items: center;
    flex-direction: row;
    gap: 10px;
  }

  .raj-brand img {
    width: 82px;
    height: auto;
  }

  .raj-brand strong {
    font-size: 31px;
  }

  .raj-brand span,
  .raj-brand em {
    font-size: 13px;
  }

  .raj-hero__inner {
    padding: 30px 0 16px;
  }

  .raj-hero h1 {
    font-size: 36px;
  }

  .raj-hero__subtitle span::before {
    padding: 0 6px;
  }

  .raj-button {
    min-height: 40px;
    width: 100%;
  }

  .raj-hero__actions {
    gap: 9px;
    margin-bottom: 14px;
  }

  .raj-trust-row {
    margin-top: 0;
  }

  .raj-stats {
    margin-bottom: 12px;
    padding: 16px 20px;
  }

  .raj-package-grid,
  .raj-footer__grid {
    grid-template-columns: 1fr;
  }

  .raj-services {
    display: flex;
    grid-template-columns: none;
    gap: 0;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    padding: 10px;
    scroll-padding-left: 10px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .raj-services::-webkit-scrollbar {
    height: 0;
  }

  .raj-service-card {
    flex: 0 0 138px;
    min-height: 112px;
    border-top: 0;
    border-left: 1px solid rgba(242, 185, 79, 0.24);
    scroll-snap-align: start;
  }

  .raj-service-card:first-child {
    border-left: 0;
  }

  .raj-section-title h2 {
    font-size: 17px;
  }
}
