/* Rahul Jha — mobile-first performance & credibility UI */

/* Ads LP: system fonts (skip remote font CSS) + kill AOS flash */
html.rj-ads-lp-page,
html.rj-ads-lp-page body,
html.rj-ads-lp-page .ynaps_body {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}
html.rj-ads-lp-page [data-aos] {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

:root {
  --rj-accent: #c4ef17;
  --rj-accent-dark: #a8cf12;
  --rj-surface: rgba(12, 14, 18, 0.92);
  --rj-border: rgba(196, 239, 23, 0.25);
  --rj-mobile-bar-h: 76px;
}

html,
body {
  overflow-x: hidden;
  max-width: 100%;
}

body.ynaps_body {
  overflow-x: clip;
}

/* ── Trust bar (credibility) ── */
.rj-trust-bar {
  background: var(--rj-surface);
  border-top: 1px solid var(--rj-border);
  border-bottom: 1px solid var(--rj-border);
  padding: 1rem 0;
}
.rj-trust-bar__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}
@media (min-width: 768px) {
  .rj-trust-bar__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }
}
.rj-trust-bar__item {
  text-align: center;
  padding: 0.65rem 0.5rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.rj-trust-bar__num {
  display: block;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--rj-accent);
  line-height: 1.2;
}
.rj-trust-bar__label {
  display: block;
  font-size: 0.72rem;
  opacity: 0.75;
  margin-top: 0.15rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ── Mobile bottom bar — slim elegant pill ── */
.rj-mobile-dock {
  display: none;
  position: fixed;
  bottom: calc(8px + env(safe-area-inset-bottom, 0px));
  left: 50%;
  transform: translateX(-50%);
  z-index: 998;
  width: auto;
  max-width: calc(100% - 32px);
}
.rj-mobile-dock__bar {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  background: linear-gradient(180deg, #232a36 0%, #141820 100%);
  backdrop-filter: blur(12px) saturate(140%);
  -webkit-backdrop-filter: blur(12px) saturate(140%);
  border: 1px solid rgba(196, 239, 23, 0.45);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(255, 255, 255, 0.04);
}
.rj-mobile-dock--icons-only .rj-mobile-dock__bar {
  padding: 9px 12px;
  gap: 10px;
}
.rj-mobile-dock__book {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.75rem 1.15rem 0.75rem 1rem;
  border-radius: 999px;
  background: var(--rj-accent);
  color: #0c0e12 !important;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none !important;
  white-space: nowrap;
  line-height: 1;
  min-height: 48px;
  transition: transform 0.15s ease, box-shadow 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}
.rj-mobile-dock__book i {
  font-size: 1.15rem;
  opacity: 0.85;
}
.rj-mobile-dock__book em {
  font-style: normal;
  font-size: 0.72rem;
  font-weight: 500;
  opacity: 0.7;
}
.rj-mobile-dock__book:active {
  transform: scale(0.97);
}
.rj-mobile-dock__wa-primary,
.rj-mobile-dock__bar a.rj-mobile-dock__wa-primary {
  background: #25d366 !important;
  color: #0c0e12 !important;
  border: none !important;
}
.rj-mobile-dock__wa-primary i,
.rj-mobile-dock__wa-primary span,
.rj-mobile-dock__bar a.rj-mobile-dock__wa-primary i,
.rj-mobile-dock__bar a.rj-mobile-dock__wa-primary span,
.rj-mobile-dock__bar a.rj-mobile-dock__wa-primary.rj-track-wa i,
.rj-mobile-dock__bar a.rj-mobile-dock__wa-primary.rj-track-wa span {
  opacity: 1;
  color: #0c0e12 !important;
}
.rj-mobile-dock__sep {
  width: 1px;
  height: 24px;
  background: rgba(255, 255, 255, 0.1);
  margin: 0 3px;
  flex-shrink: 0;
}
.rj-mobile-dock__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  color: #fff !important;
  text-decoration: none !important;
  font-size: 1.4rem;
  transition: transform 0.15s ease, background 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}
.rj-mobile-dock__icon:active {
  transform: scale(0.92);
}
.rj-mobile-dock__bar a.rj-track-wa:not(.rj-mobile-dock__wa-primary) {
  color: #25d366 !important;
  background: rgba(37, 211, 102, 0.18);
  border: 1px solid rgba(37, 211, 102, 0.35);
}
.rj-mobile-dock__bar a.rj-track-call {
  color: #c4ef17 !important;
  background: rgba(196, 239, 23, 0.12);
  border: 1px solid rgba(196, 239, 23, 0.35);
}
.rj-mobile-dock__icon:hover {
  background: rgba(255, 255, 255, 0.06);
}
@media (max-width: 991px) {
  .rj-mobile-dock { display: block; }
  body.rj-has-mobile-cta {
    padding-bottom: calc(var(--rj-mobile-bar-h) + env(safe-area-inset-bottom, 0px) + 12px);
  }
  body.rj-has-mobile-cta:has(.rj-mobile-dock--icons-only) {
    --rj-mobile-bar-h: 72px;
  }
}
@media (max-width: 360px) {
  .rj-mobile-dock__book span { display: none; }
  .rj-mobile-dock__book {
    padding: 0.7rem 0.9rem;
    min-height: 48px;
  }
  .rj-mobile-dock__icon {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
  }
}

/* Legacy class alias */
.rj-mobile-cta { display: none !important; }

/* ── Header CTAs (Chat / Book Now / Quote / Call) — same height + theme ── */
.header-wrapper .menu-area .header-btn {
  display: inline-flex;
  align-items: stretch;
  gap: 0.55rem;
}
.header-section .header-btn .rj-header-btn {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 42px;
  height: 42px;
  padding: 0 1.05rem !important;
  margin: 0 !important;
  border-radius: 10px;
  font-size: 0.88rem !important;
  font-weight: 700;
  line-height: 1;
  box-sizing: border-box;
  white-space: nowrap;
  text-decoration: none !important;
}
.header-section .header-btn .rj-header-btn i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 !important;
  font-size: 1em;
  line-height: 1;
  position: static !important;
}
.header-section .header-btn .rj-header-btn i::before {
  position: static !important;
}
.header-section .header-btn .rj-header-btn.trk-btn--primary {
  background: var(--rj-accent) !important;
  border: 1px solid var(--rj-accent) !important;
  color: #111 !important;
}
.header-section .header-btn .rj-header-btn.trk-btn--primary:hover {
  filter: brightness(1.05);
  color: #111 !important;
}
.header-section .header-btn .rj-header-btn.trk-btn--outline {
  background: transparent !important;
  border: 1px solid var(--rj-accent) !important;
  color: #fff !important;
}
.header-section .header-btn .rj-header-btn.trk-btn--outline:hover {
  background: rgba(196, 239, 23, 0.12) !important;
  color: #fff !important;
}
/* Kill theme ::after overlays that inflate button height */
.header-section .header-btn .rj-header-btn::after {
  display: none !important;
  content: none !important;
}
/* Legacy alias */
.rj-header-wa {
  display: none;
}
@media (min-width: 992px) {
  .header-section--style2 .header-action .header-btn .rj-header-btn {
    display: inline-flex !important;
  }
}
@media (max-width: 991px) {
  .header-section--style2:not(.header-section--ads-lp) .header-action .header-btn .rj-header-btn.trk-btn--outline {
    display: none !important;
  }
  .header-section--style2:not(.header-section--ads-lp) .header-action .header-btn .rj-header-btn.trk-btn--primary {
    display: inline-flex !important;
    min-height: 40px;
    height: 40px;
    width: 40px;
    padding: 0 !important;
    font-size: 1rem !important;
  }
  .header-section--style2:not(.header-section--ads-lp) .header-action .header-btn .rj-header-btn.trk-btn--primary span {
    display: none;
  }

  /* Ads LP mobile: compact icon CTAs only (dock has full Get Free Quote) */
  .header-section--ads-lp .header-wrapper {
    padding-left: 12px !important;
    padding-right: 12px !important;
    gap: 0.5rem;
  }
  .header-section--ads-lp .header-btn--ads-lp {
    display: inline-flex !important;
    align-items: center;
    gap: 0.4rem;
  }
  .header-section--ads-lp .header-btn--ads-lp .rj-header-btn {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 40px;
    min-width: 40px;
    height: 40px;
    min-height: 40px;
    padding: 0 !important;
    margin: 0 !important;
    border-radius: 10px;
    font-size: 1rem !important;
  }
  .header-section--ads-lp .header-btn--ads-lp .rj-header-btn span {
    display: none !important;
  }
  .header-section--ads-lp .header-btn--ads-lp .rj-header-btn i {
    margin: 0 !important;
    font-size: 1.05rem;
  }
  .header-section--ads-lp .menu-area {
    gap: 0.45rem;
  }
  .header-section--ads-lp .header-bar {
    margin-left: 0.15rem;
  }
  .header-section--ads-lp .logo,
  .header-section--ads-lp .header-wrapper .logo a {
    font-size: 1.05rem !important;
    max-width: 42vw;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}

/* ── Performance: lazy images ── */
img[loading="lazy"] {
  background: rgba(255, 255, 255, 0.04);
}
.rj-portfolio-grid img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  width: 100%;
  border-radius: 6px;
}

/* ── Video facade (no autoplay until click) ── */
.rj-video-facade {
  position: relative;
  cursor: pointer;
  border-radius: 8px;
  overflow: hidden;
  background: #000;
}
.rj-video-facade img {
  width: 100%;
  display: block;
  opacity: 0.85;
}
.rj-video-facade__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.35);
  transition: background 0.2s;
}
.rj-video-facade:hover .rj-video-facade__play {
  background: rgba(0, 0, 0, 0.5);
}
.rj-video-facade__play i {
  font-size: 3rem;
  color: var(--rj-accent);
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.5));
}

/* Service credibility — Shark Tank + Gov of India */
.rj-cred {
  padding: 2.25rem 0;
}
.rj-cred__head {
  margin-bottom: 1.25rem;
  max-width: 40rem;
}
.rj-cred__head h2 {
  margin: 0 0 0.45rem;
  font-size: clamp(1.35rem, 3.5vw, 1.85rem);
}
.rj-cred__head p {
  margin: 0;
  color: rgba(255,255,255,.7);
  line-height: 1.5;
}
.rj-cred__grid {
  display: grid;
  gap: 1rem;
}
@media (min-width: 768px) {
  .rj-cred__grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.35rem;
    align-items: stretch;
  }
}
.rj-cred__card {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.rj-cred__media {
  display: block;
  width: 100%;
  border: 0;
  padding: 0;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.1);
  background: #111;
  box-shadow: 0 14px 36px rgba(0,0,0,.28);
  text-align: left;
}
.rj-cred__media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: top center;
}
.rj-cred__media--video,
.rj-cred__media--video.rj-video-embed {
  width: min(100%, 360px);
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  aspect-ratio: 9 / 16;
  background: #000;
  position: relative;
}
.rj-cred__media--video img,
.rj-cred__media--video iframe {
  aspect-ratio: 9 / 16;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.rj-cred__media--video iframe {
  display: block;
  border: 0;
}
.rj-cred__card figcaption {
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255,255,255,.88);
}
.rj-service-detail .rj-cred {
  padding: 1.5rem 0 0.5rem;
}
.rj-service-detail .rj-cred__head h2 {
  font-size: 1.35rem;
}
.rj-ads-lp .rj-cred {
  content-visibility: auto;
  contain-intrinsic-size: 1px 520px;
}
@media (max-width: 767px) {
  .rj-cred .container {
    padding-left: 0;
    padding-right: 0;
    max-width: 100%;
  }
  .rj-cred__head,
  .rj-cred__card figcaption {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .rj-cred__grid {
    gap: 1.5rem;
  }
  .rj-cred__media,
  .rj-cred__media--video,
  .rj-cred__media--video.rj-video-embed {
    width: min(100%, 390px);
    max-width: calc(100vw - 2rem);
    border-radius: 14px;
  }
  .rj-cred__media--video img,
  .rj-cred__media--video iframe {
    aspect-ratio: 9 / 16;
    width: 100%;
    height: 100%;
    max-height: min(85vh, 720px);
  }
}

/* ── Cleaner CTAs (no button inside anchor) ── */
a.trk-btn,
a.rj-cta-link {
  text-decoration: none !important;
}
.track_btn.nobtn {
  padding: 0;
  font: inherit;
  color: inherit;
}

/* ── Credibility strip on hero ── */
.rj-hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0 1rem;
}
.rj-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-size: 0.75rem;
  background: rgba(196, 239, 23, 0.1);
  border: 1px solid var(--rj-border);
  color: rgba(255, 255, 255, 0.85);
}
.rj-hero-badge i {
  color: var(--rj-accent);
}

/* ── Hero / banner — compact spacing (remove huge top gaps) ── */
.banner--style1 {
  padding-block-start: 5.5rem !important;
  padding-block-end: 1.5rem !important;
}

@media (min-width: 768px) {
  .banner--style1 {
    padding-block-start: 6rem !important;
    padding-block-end: 2rem !important;
  }
}

@media (min-width: 992px) {
  .banner--style1 {
    padding-block-start: 6.5rem !important;
    padding-block-end: 2.5rem !important;
  }
}

@media (min-width: 1400px) {
  .banner--style1 {
    padding-block-start: 7rem !important;
    padding-block-end: 3rem !important;
  }
}

.banner--style1 .banner__wrapper {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.banner--style1 .banner__content {
  margin-block-start: 0 !important;
}

.banner--style1 .banner__content-moto {
  margin-block-end: 1rem !important;
}

.banner--style1 .banner__content-subtitle {
  margin-bottom: 0.35rem;
}

.banner--style1 .banner__content-heading {
  margin-bottom: 0.75rem;
}

.banner--style1 .banner__btn-group {
  margin-top: 0.25rem;
  margin-bottom: 0;
  align-items: center;
  gap: 0.75rem;
}

/* Decorative loop arrow — small accent, not a full-width gap */
.banner--style1 .banner__content-shape {
  position: absolute !important;
  top: -0.25rem !important;
  right: auto !important;
  left: 4.5rem;
  z-index: 1;
  pointer-events: none;
}

.banner--style1 .banner__content-shape img {
  width: 56px !important;
  max-width: 72px;
  height: auto;
}

@media (min-width: 992px) {
  .banner--style1 .banner__content-shape {
    top: 0 !important;
    left: auto !important;
    right: 0;
  }

  .banner--style1 .banner__content-shape img {
    width: 72px !important;
  }
}

/* ── Reduce motion for perf + a11y ── */
@media (prefers-reduced-motion: reduce) {
  [data-aos] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ── Mobile typography tweaks ── */
@media (max-width: 575px) {
  .banner__content-heading {
    font-size: clamp(1.65rem, 7vw, 2.25rem) !important;
  }
  .banner__btn-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    align-items: stretch;
  }
  .banner__btn-group .trk-btn--primary,
  .banner__btn-group .rj-track-book {
    grid-column: 1 / -1;
  }
  .banner__btn-group .trk-btn,
  .banner__btn-group .play-btn {
    width: 100%;
    justify-content: center;
  }
  .contact-info {
    flex-direction: column !important;
  }
}
/* ── Service detail — clean, focused layout ── */
.rj-service-detail .project-details__content h1 {
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
}
.rj-service-detail .project-details__content .rj-service-desc {
  font-size: 1rem;
  line-height: 1.75;
  opacity: 0.88;
  margin-bottom: 0;
}
.rj-service-detail .project-details__content .rj-service-desc p:last-child {
  margin-bottom: 0;
}
.rj-service-detail .project-details__thumb img {
  border-radius: 12px;
  width: 100%;
}

/* Animated placeholder when no service image */
.rj-service-visual {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(14, 16, 20, 0.95);
}
.rj-service-visual__bg {
  position: absolute;
  inset: -30%;
  background: conic-gradient(
    from 0deg,
    rgba(196, 239, 23, 0.14),
    rgba(37, 211, 102, 0.08),
    rgba(66, 133, 244, 0.06),
    rgba(196, 239, 23, 0.1),
    rgba(37, 211, 102, 0.08),
    rgba(196, 239, 23, 0.14)
  );
  animation: rj-visual-spin 24s linear infinite;
  opacity: 0.55;
  filter: blur(28px);
}
.rj-service-visual__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 35% 40%, rgba(196, 239, 23, 0.08), transparent 60%),
    radial-gradient(ellipse at 65% 55%, rgba(37, 211, 102, 0.05), transparent 55%);
  animation: rj-visual-pulse 7s ease-in-out infinite alternate;
}
.rj-service-visual__content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 2rem 1.5rem;
}
.rj-service-visual__content i {
  font-size: 2.25rem;
  color: rgba(196, 239, 23, 0.85);
  margin-bottom: 0.75rem;
  display: block;
}
.rj-service-visual__content span {
  font-size: 1.05rem;
  font-weight: 600;
  color: rgba(232, 232, 232, 0.9);
}
@keyframes rj-visual-spin {
  to { transform: rotate(360deg); }
}
@keyframes rj-visual-pulse {
  from { opacity: 0.7; }
  to { opacity: 1; }
}

/* Service niche — left-aligned, consistent layout */
.rj-service-detail .rj-niche-hero {
  text-align: left;
  padding: 0 0 1.75rem;
  max-width: none;
  margin: 0;
}
.rj-service-detail .rj-niche-hero__badge {
  display: inline-block;
  background: rgba(196, 239, 23, 0.12);
  border: 1px solid rgba(196, 239, 23, 0.3);
  color: #c4ef17;
  border-radius: 50px;
  padding: 4px 16px;
  font-size: 0.82rem;
  margin-bottom: 1rem;
}
.rj-service-detail .rj-niche-hero h1 {
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 0.75rem;
}
.rj-service-detail .rj-niche-hero p {
  color: #aaa;
  margin-bottom: 1.25rem;
  max-width: 640px;
}
.rj-service-detail .rj-niche-hero__meta {
  display: flex;
  justify-content: flex-start;
  gap: 1.25rem;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: #c4ef17;
}
.rj-service-detail .rj-niche-hero__meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.rj-service-detail .rj-niche-features,
.rj-service-detail .rj-niche-usecases,
.rj-service-detail .rj-niche-deliverables,
.rj-service-detail .rj-niche-faq {
  padding: 1.5rem 0;
  text-align: left;
}
.rj-service-detail .rj-niche-features h3,
.rj-service-detail .rj-niche-usecases h3,
.rj-service-detail .rj-niche-deliverables h3,
.rj-service-detail .rj-niche-faq h3 {
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 1rem;
  color: #e0e0e0;
}
.rj-service-detail .rj-niche-features__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}
@media (min-width: 768px) {
  .rj-service-detail .rj-niche-features__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.rj-service-detail .rj-niche-feature-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0.85rem 1rem;
  background: rgba(255, 255, 255, 0.04);
  border: 0.5px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  font-size: 0.85rem;
  color: #ccc;
  min-height: 52px;
}
.rj-service-detail .rj-niche-feature-card i {
  color: #c4ef17;
  flex: 0 0 1.25rem;
  width: 1.25rem;
  text-align: center;
  font-size: 0.95rem;
  line-height: 1;
}
.rj-service-detail .rj-niche-feature-card span {
  line-height: 1.35;
}
.rj-service-detail .rj-niche-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.rj-service-detail .rj-niche-tag {
  background: rgba(196, 239, 23, 0.08);
  border: 1px solid rgba(196, 239, 23, 0.2);
  color: #c4ef17;
  border-radius: 50px;
  padding: 4px 14px;
  font-size: 0.8rem;
}

/* ── What you get (deliverables) ── */
.rj-service-detail .rj-niche-deliverables__head {
  margin-bottom: 1rem;
}
.rj-service-detail .rj-niche-deliverables__head h3 {
  margin-bottom: 0.35rem;
}
.rj-service-detail .rj-niche-deliverables__sub {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.55);
  max-width: 36rem;
  line-height: 1.45;
}
.rj-service-detail .rj-niche-deliverables__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.65rem;
}
@media (min-width: 640px) {
  .rj-service-detail .rj-niche-deliverables__list {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }
}
.rj-service-detail .rj-niche-deliverables__item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin: 0;
  padding: 0.9rem 1rem;
  min-height: 56px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}
.rj-service-detail .rj-niche-deliverables__item:hover {
  background: rgba(196, 239, 23, 0.05);
  border-color: rgba(196, 239, 23, 0.28);
  transform: translateY(-1px);
}
.rj-service-detail .rj-niche-deliverables__icon {
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgba(196, 239, 23, 0.14);
  color: var(--rj-accent);
  font-size: 0.75rem;
  margin-top: 1px;
}
.rj-service-detail .rj-niche-deliverables__text {
  flex: 1;
  font-size: 0.9rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.82);
}
.rj-service-detail .rj-niche-deliverables__more {
  margin-top: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 0.9rem;
  border-radius: 8px;
  border: 1px solid rgba(196, 239, 23, 0.35);
  background: rgba(196, 239, 23, 0.08);
  color: var(--rj-accent);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.rj-service-detail .rj-niche-deliverables__more:hover {
  background: rgba(196, 239, 23, 0.16);
  border-color: rgba(196, 239, 23, 0.5);
}
.rj-service-detail .rj-niche-deliverables__more i {
  font-size: 0.7rem;
}

.rj-service-sidebar {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 1.5rem;
  position: sticky;
  top: 90px;
}
.rj-service-sidebar__title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.rj-service-sidebar__cta {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 1.25rem;
}
.rj-service-sidebar__cta-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}
.rj-service-sidebar__cta-row .trk-btn {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 14px 18px;
  font-size: 15px;
  line-height: 1.2;
  min-height: 48px;
}
@media (min-width: 992px) {
  .rj-service-sidebar__cta-row .trk-btn {
    padding: 15px 30px;
    font-size: 16px;
    min-height: 0;
  }
}
@media (max-width: 991px) {
  .rj-service-sidebar__cta-row:has(.trk-btn:only-child) {
    grid-template-columns: 1fr;
  }
  .rj-service-sidebar__cta-row .trk-btn {
    padding: 16px 18px;
    font-size: 16px;
    min-height: 52px;
  }
  .rj-service-sidebar__cta-row .trk-btn i {
    font-size: 1.15em;
  }
}
.rj-service-sidebar__meta {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
  font-size: 0.9rem;
}
.rj-service-sidebar__meta li {
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.rj-service-sidebar__meta li:last-child {
  border-bottom: 0;
}
.rj-service-sidebar__meta a {
  color: var(--rj-accent);
  text-decoration: none;
}
.rj-service-work {
  padding: 3rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.rj-service-work__header {
  text-align: center;
  max-width: 520px;
  margin: 0 auto 2rem;
}
.rj-service-work__header h2 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}
.rj-service-work__header p {
  opacity: 0.7;
  font-size: 0.95rem;
  margin: 0;
}
.rj-service-work__grid img {
  border-radius: 8px;
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}
.rj-consult-cta-combo {
  padding-top: 56px;
  padding-bottom: 56px;
}
.rj-consult-cta-combo .rj-consult-inline .pricing__item {
  max-width: none;
  margin: 0;
}
.rj-consult-cta-combo .rj-consult-note {
  color: #9a9a9a;
  font-size: 0.9rem;
  max-width: 720px;
  margin: 1.5rem auto 0;
  text-align: center;
}
.rj-service-cta {
  text-align: center;
  padding: 2.5rem 1rem;
  background: rgba(196, 239, 23, 0.06);
  border: 1px solid var(--rj-border);
  border-radius: 12px;
  margin: 2rem 0 3rem;
}
.rj-service-cta--combo {
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100%;
}
@media (max-width: 991.98px) {
  .rj-consult-cta-combo {
    padding-top: 36px;
    padding-bottom: 36px;
  }
  .rj-service-cta--combo {
    margin-top: 0;
  }
}
.rj-service-cta h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}
.rj-service-cta p {
  opacity: 0.75;
  margin-bottom: 1.25rem;
  font-size: 0.95rem;
}
.rj-service-cta__btns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}
.rj-service-cta__phone {
  margin: 0.85rem 0 0;
  text-align: center;
  font-size: 1rem;
  font-weight: 600;
}
.rj-service-cta__phone a {
  color: var(--rj-accent);
  text-decoration: none;
  letter-spacing: 0.02em;
}
.rj-service-cta__phone a:hover {
  text-decoration: underline;
}
.rj-service-landing .header-wrapper {
  display: none !important;
}
.rj-service-landing .the_mobile_fooeter,
.rj-service-landing .rj-mobile-cta,
.rj-service-landing .rj-mobile-dock {
  display: none !important;
}
.rj-pricing-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--rj-border);
  border-radius: 12px;
  padding: 1.5rem;
}
.rj-pricing-card h3 {
  font-size: 1.75rem;
  margin-bottom: 0.25rem;
}
.rj-pricing-card h3 span {
  font-size: 0.9rem;
  font-weight: 400;
  opacity: 0.7;
}
.rj-pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}
.rj-pricing-card li {
  padding: 0.4rem 0;
  font-size: 0.9rem;
  opacity: 0.85;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.rj-pricing-card li:before {
  content: "✓";
  color: var(--rj-accent);
  margin-right: 0.5rem;
}
@media (max-width: 991px) {
  .rj-service-sidebar {
    position: static;
    margin-top: 1.5rem;
  }
}
body:has(.rj-service-detail) .zubuz-breadcrumb {
  display: none !important;
}
.rj-service-sidebar hr,
.rj-service-sidebar small {
  display: none;
}
.rj-service-sidebar .trk-btn[type="submit"] {
  margin-top: 0.5rem;
}

/* Service extras sections */
.rj-svc-section {
  padding: 3rem 0;
}
.rj-svc-section--muted {
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.rj-svc-section__head {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 2rem;
}
.rj-svc-section__head h2 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}
.rj-svc-section__head p {
  opacity: 0.7;
  margin: 0;
  font-size: 0.95rem;
}
.rj-svc-section__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.85rem;
  margin-bottom: 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--rj-accent);
  background: rgba(196, 239, 23, 0.1);
  border: 1px solid var(--rj-border);
  border-radius: 999px;
}
.rj-svc-section--why {
  background:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(196, 239, 23, 0.12), transparent),
    rgba(255, 255, 255, 0.01);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.rj-why-card {
  height: 100%;
  padding: 1.25rem 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.rj-why-card:hover {
  transform: translateY(-3px);
  border-color: var(--rj-border);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}
.rj-why-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 0.85rem;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(196, 239, 23, 0.2), rgba(196, 239, 23, 0.05));
  border: 1px solid var(--rj-border);
  color: var(--rj-accent);
  font-size: 1.2rem;
}
.rj-why-card h3 {
  font-size: 1rem;
  margin-bottom: 0.35rem;
}
.rj-why-card p {
  font-size: 0.85rem;
  opacity: 0.72;
  margin: 0;
  line-height: 1.5;
}
.rj-svc-section--experience {
  background:
    radial-gradient(ellipse 60% 40% at 0% 50%, rgba(196, 239, 23, 0.06), transparent),
    rgba(255, 255, 255, 0.02);
}
.rj-timeline--visual {
  position: relative;
  max-width: 780px;
  margin: 0 auto;
  padding-left: 0;
}
.rj-timeline__track {
  position: absolute;
  left: 23px;
  top: 12px;
  bottom: 12px;
  width: 2px;
  background: linear-gradient(180deg, var(--rj-accent), rgba(196, 239, 23, 0.15));
  border-radius: 2px;
}
.rj-timeline--visual .rj-timeline__item {
  position: relative;
  display: flex;
  gap: 1.25rem;
  padding: 0 0 1.5rem;
  border-bottom: 0;
}
.rj-timeline--visual .rj-timeline__item:last-child {
  padding-bottom: 0;
}
.rj-timeline__node {
  flex-shrink: 0;
  z-index: 1;
}
.rj-timeline__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #12141a;
  border: 2px solid var(--rj-accent);
  color: var(--rj-accent);
  font-size: 1rem;
  box-shadow: 0 0 0 4px rgba(196, 239, 23, 0.12);
}
.rj-timeline__item.is-active .rj-timeline__icon {
  background: var(--rj-accent);
  color: #000;
  box-shadow: 0 0 20px rgba(196, 239, 23, 0.35);
}
.rj-timeline__card {
  flex: 1;
  padding: 1rem 1.15rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  transition: border-color 0.2s ease;
}
.rj-timeline__item.is-active .rj-timeline__card {
  border-color: var(--rj-border);
  background: rgba(196, 239, 23, 0.04);
}
.rj-timeline__card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.35rem;
}
.rj-timeline__tag {
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  background: rgba(196, 239, 23, 0.12);
  color: var(--rj-accent);
  border: 1px solid var(--rj-border);
}
.rj-timeline--visual .rj-timeline__year {
  width: auto;
  padding: 0;
  font-size: 0.82rem;
}
.rj-timeline__card h4 {
  font-size: 1.02rem;
  margin-bottom: 0.3rem;
}
.rj-timeline__card p {
  font-size: 0.88rem;
  opacity: 0.75;
  margin: 0;
  line-height: 1.55;
}
.rj-highlight-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.25rem 0.65rem;
  margin-bottom: 0.65rem;
  border-radius: 999px;
  background: rgba(196, 239, 23, 0.12);
  color: var(--rj-accent);
  border: 1px solid var(--rj-border);
}
.rj-highlight-card {
  height: 100%;
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
}
.rj-highlight-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}
.rj-highlight-card p {
  font-size: 0.9rem;
  opacity: 0.75;
  margin-bottom: 1rem;
}
.rj-highlight-card__img {
  border-radius: 8px;
}
.rj-skill-item {
  text-align: center;
  padding: 1rem 0.5rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}
.rj-skill-item:hover {
  transform: translateY(-3px);
  border-color: var(--rj-border);
  background: rgba(196, 239, 23, 0.06);
}
.rj-skill-item img {
  height: 44px;
  width: auto;
  margin-bottom: 0.5rem;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.25));
}
.rj-skill-item span {
  display: block;
  font-size: 0.78rem;
  font-weight: 500;
  opacity: 0.9;
}
.rj-portfolio-full[hidden] {
  display: none !important;
}
.rj-portfolio-full:not([hidden]) {
  animation: rjFadeIn 0.35s ease;
}
@keyframes rjFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.rj-portfolio-feature {
  margin-bottom: 0.5rem;
}
.rj-portfolio-feature h4 {
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}
.rj-portfolio-feature p {
  font-size: 0.82rem;
  opacity: 0.7;
  margin-bottom: 0.5rem;
}
.rj-lazy-portfolio {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 8px;
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}
.rj-testimonial-card {
  height: 100%;
  margin: 0;
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
}
.rj-testimonial-card__stars {
  color: var(--rj-accent);
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
}
.rj-testimonial-card p {
  font-size: 0.92rem;
  line-height: 1.6;
  opacity: 0.88;
  margin-bottom: 1rem;
}
.rj-testimonial-card footer {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.rj-testimonial-card__avatar {
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rj-accent), var(--rj-accent-dark));
  color: #000;
  font-weight: 700;
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.02em;
}
.rj-testimonial-card__who { display: block; }
.rj-testimonial-card__who strong {
  display: block;
  font-size: 0.9rem;
  line-height: 1.2;
}
.rj-testimonial-card__who span {
  display: block;
  font-size: 0.78rem;
  opacity: 0.65;
  margin-top: 0.15rem;
}

/* ── Service page: eyebrow + tagline ── */
.rj-service-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--rj-accent);
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  background: rgba(196, 239, 23, 0.08);
  border: 1px solid var(--rj-border);
  margin-bottom: 1rem;
}
.rj-status-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #20d27a;
  box-shadow: 0 0 0 0 rgba(32, 210, 122, 0.7);
  animation: rjPulse 2s infinite;
}
@keyframes rjPulse {
  0% { box-shadow: 0 0 0 0 rgba(32, 210, 122, 0.7); }
  70% { box-shadow: 0 0 0 8px rgba(32, 210, 122, 0); }
  100% { box-shadow: 0 0 0 0 rgba(32, 210, 122, 0); }
}
.rj-service-tagline {
  font-size: 1.1rem;
  opacity: 0.85;
  margin: -0.25rem 0 1rem;
  line-height: 1.5;
}
@media (min-width: 768px) {
  .rj-service-tagline { font-size: 1.2rem; }
}

/* ── "What you get" feature list ── */
.rj-includes {
  margin-top: 1.5rem;
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
}
.rj-includes__title {
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.85;
  margin-bottom: 0.85rem;
}
.rj-includes__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.6rem 1rem;
}
@media (min-width: 576px) {
  .rj-includes__list { grid-template-columns: 1fr 1fr; }
}
.rj-includes__list li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.92rem;
  line-height: 1.4;
}
.rj-includes__icon {
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgba(196, 239, 23, 0.12);
  color: var(--rj-accent);
  font-size: 0.85rem;
}

/* ── Sidebar starting-price block ── */
.rj-service-sidebar__price {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  padding-bottom: 0.85rem;
  margin-bottom: 0.85rem;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
}
.rj-service-sidebar__price-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  opacity: 0.6;
}
.rj-service-sidebar__price-value {
  font-size: 1.85rem;
  font-weight: 700;
  color: var(--rj-accent);
  line-height: 1;
}
.rj-service-sidebar__meta li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.4rem 0;
  font-size: 0.85rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.rj-service-sidebar__meta li:last-child { border-bottom: 0; }
.rj-service-sidebar__meta li i {
  width: 18px;
  color: var(--rj-accent);
  opacity: 0.85;
  font-size: 0.85rem;
}
.rj-service-sidebar__form-wrap {
  margin-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 0.85rem;
}
.rj-service-sidebar__form-wrap > summary {
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 600;
  text-align: center;
  padding: 0.5rem;
  list-style: none;
  opacity: 0.85;
}
.rj-service-sidebar__form-wrap > summary::-webkit-details-marker { display: none; }
.rj-service-sidebar__form-wrap > summary::after {
  content: " ▾";
  opacity: 0.6;
}
.rj-service-sidebar__form-wrap[open] > summary::after {
  content: " ▴";
}
@media (min-width: 992px) {
  .rj-service-sidebar {
    position: sticky;
    top: 100px;
  }
}

/* ── Quick stats below hero ── */
.rj-quickstats {
  padding: 1rem 0 0;
}
.rj-quickstats__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.6rem;
  padding: 1rem;
  background: linear-gradient(135deg, rgba(196, 239, 23, 0.06), rgba(255, 255, 255, 0.02));
  border: 1px solid var(--rj-border);
  border-radius: 14px;
}
@media (min-width: 768px) {
  .rj-quickstats__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    padding: 1.25rem;
  }
}
.rj-quickstats__item {
  text-align: center;
  padding: 0.5rem;
}
.rj-quickstats__num {
  display: block;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--rj-accent);
  line-height: 1.1;
}
@media (min-width: 768px) {
  .rj-quickstats__num { font-size: 2rem; }
}
.rj-quickstats__label {
  display: block;
  font-size: 0.72rem;
  opacity: 0.7;
  margin-top: 0.15rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ── Process section ── */
.rj-svc-section--process { padding-top: 3rem; }
.rj-process {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  counter-reset: rj-step;
  position: relative;
}
@media (min-width: 576px) {
  .rj-process { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 992px) {
  .rj-process { grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
}
.rj-process__step {
  position: relative;
  padding: 1.5rem 1.1rem 1.25rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.rj-process__step:hover {
  transform: translateY(-3px);
  border-color: var(--rj-border);
}
.rj-process__number {
  position: absolute;
  top: -10px;
  right: 14px;
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1;
  color: var(--rj-accent);
  opacity: 0.12;
  letter-spacing: -0.02em;
}
.rj-process__icon {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(196, 239, 23, 0.12);
  color: var(--rj-accent);
  font-size: 1.05rem;
  margin-bottom: 0.85rem;
}
.rj-process__step h3 {
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}
.rj-process__step p {
  font-size: 0.88rem;
  line-height: 1.55;
  opacity: 0.75;
  margin: 0;
}

/* ── FAQ ── */
.rj-svc-section--faq .rj-faq {
  max-width: 760px;
  margin: 0 auto;
}
.rj-faq__item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  margin-bottom: 0.75rem;
  overflow: hidden;
  transition: border-color 0.25s ease;
}
.rj-faq__item[open] { border-color: var(--rj-border); }
.rj-faq__item > summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.15rem;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.98rem;
  list-style: none;
  line-height: 1.4;
}
.rj-faq__item > summary::-webkit-details-marker { display: none; }
.rj-faq__icon {
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(196, 239, 23, 0.12);
  color: var(--rj-accent);
  font-size: 0.75rem;
  transition: transform 0.3s ease;
}
.rj-faq__item[open] .rj-faq__icon { transform: rotate(45deg); }
.rj-faq__body {
  padding: 0 1.15rem 1.1rem;
  font-size: 0.92rem;
  line-height: 1.6;
  opacity: 0.78;
}
.rj-faq__body p { margin: 0; }

/* ── Contact popup modal ── */
.rj-contact-modal {
  position: fixed;
  inset: 0;
  z-index: 1050;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.rj-contact-modal.is-open {
  display: flex;
  animation: rjModalFade 0.2s ease;
}
.rj-contact-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.rj-contact-modal__panel {
  position: relative;
  width: 100%;
  max-width: 540px;
  max-height: calc(100vh - 32px);
  overflow-y: auto;
  background: #14181f;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 1.5rem 1.25rem;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
  animation: rjModalPop 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}
@media (min-width: 576px) {
  .rj-contact-modal__panel { padding: 1.85rem 1.75rem; }
}
.rj-contact-modal__close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.95rem;
  transition: background 0.2s ease;
}
.rj-contact-modal__close:hover { background: rgba(255, 255, 255, 0.16); }
.rj-contact-modal__header h3 {
  font-size: 1.3rem;
  margin: 0 0 0.35rem;
  padding-right: 2rem;
}
.rj-contact-modal__header p {
  font-size: 0.9rem;
  opacity: 0.7;
  margin: 0 0 1.1rem;
}
.rj-contact-modal__quick {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}
.rj-contact-modal__quick .trk-btn {
  flex: 1;
  min-width: 140px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}
.rj-contact-modal__body { margin-top: 0.5rem; }
.rj-contact-modal__body form { margin-top: 0; }
.rj-contact-modal__body .form-label {
  font-size: 0.78rem;
  font-weight: 600;
  opacity: 0.75;
  margin-bottom: 0.3rem;
}
.rj-modal-form__note {
  font-size: 0.75rem;
  opacity: 0.55;
  margin: 0.85rem 0 0;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.rj-modal-form__note i { color: var(--rj-accent); }
body.rj-modal-open { overflow: hidden; }
body.rj-sheet-open { overflow: hidden; }

/* ── Mobile full-page services sheet ── */
.rj-services-sheet {
  position: fixed;
  inset: 0;
  z-index: 10050;
  display: none;
  pointer-events: none;
}
.rj-services-sheet.is-open {
  display: block;
  pointer-events: auto;
}
.rj-services-sheet__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  animation: rjModalFade 0.25s ease;
}
.rj-services-sheet__panel {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  background: #0c0e12;
  animation: rjSheetSlide 0.32s ease;
}
@keyframes rjSheetSlide {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
.rj-services-sheet__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: calc(1rem + env(safe-area-inset-top, 0px)) 1rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  flex-shrink: 0;
}
.rj-services-sheet__header h2 {
  font-size: 1.35rem;
  font-weight: 700;
  margin: 0 0 0.25rem;
}
.rj-services-sheet__header p {
  margin: 0;
  font-size: 0.82rem;
  opacity: 0.6;
  line-height: 1.4;
}
.rj-services-sheet__close {
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-size: 1.1rem;
  cursor: pointer;
}
.rj-services-sheet__body {
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 1rem 1rem calc(1rem + env(safe-area-inset-bottom, 0px));
}
.rj-services-sheet__group {
  margin-bottom: 1.35rem;
}
.rj-services-sheet__group-head {
  margin-bottom: 0.65rem;
}
.rj-services-sheet__group-head h3 {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--rj-accent);
  margin: 0 0 0.15rem;
}
.rj-services-sheet__group-head span {
  font-size: 0.78rem;
  opacity: 0.5;
}
.rj-services-sheet__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.rj-services-sheet__card {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.85rem 0.9rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-decoration: none !important;
  color: inherit;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.rj-services-sheet__card:active {
  background: rgba(196, 239, 23, 0.08);
  border-color: rgba(196, 239, 23, 0.25);
}
.rj-services-sheet__icon {
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(196, 239, 23, 0.1);
  border: 1px solid rgba(196, 239, 23, 0.22);
  color: var(--rj-accent);
  font-size: 1.05rem;
}
.rj-services-sheet__group--growth .rj-services-sheet__icon {
  background: rgba(66, 133, 244, 0.1);
  border-color: rgba(66, 133, 244, 0.22);
  color: #6ea8fe;
}
.rj-services-sheet__group--consult .rj-services-sheet__icon {
  background: rgba(196, 239, 23, 0.08);
}
.rj-services-sheet__info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.rj-services-sheet__info strong {
  font-size: 0.95rem;
  font-weight: 600;
  color: #f0f0f0;
  line-height: 1.25;
}
.rj-services-sheet__info small {
  font-size: 0.78rem;
  color: #999;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.rj-services-sheet__info em {
  font-style: normal;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--rj-accent);
}
.rj-services-sheet__arrow {
  flex-shrink: 0;
  font-size: 0.75rem;
  opacity: 0.35;
  color: #fff;
}
.rj-services-sheet__footer {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  padding: 0.85rem 1rem calc(0.85rem + env(safe-area-inset-bottom, 0px));
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(12, 14, 18, 0.98);
}
@media (min-width: 992px) {
  .rj-services-sheet { display: none !important; }
}

@keyframes rjModalFade {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes rjModalPop {
  from { opacity: 0; transform: translateY(20px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

/* ── SEO keyword strip (footer) ── */
.rj-seo-keywords {
  padding: 1rem 0;
  background: rgba(0, 0, 0, 0.2);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.rj-seo-keywords details > summary {
  cursor: pointer;
  list-style: none;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0.6;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.3rem 0;
}
.rj-seo-keywords details > summary::-webkit-details-marker { display: none; }
.rj-seo-keywords details > summary i { transition: transform 0.25s ease; font-size: 0.7rem; }
.rj-seo-keywords details[open] > summary i { transform: rotate(180deg); }
.rj-seo-keywords details[open] > summary { opacity: 0.85; }
.rj-seo-keywords__list {
  font-size: 0.72rem;
  line-height: 1.85;
  margin: 0.5rem 0 0;
  opacity: 0.55;
}
.rj-seo-keywords__list a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px dotted rgba(255, 255, 255, 0.2);
  transition: color 0.2s ease, border-color 0.2s ease;
}
.rj-seo-keywords__list a:hover {
  color: var(--rj-accent);
  border-bottom-color: var(--rj-accent);
}

/* Ghost button variant for sidebar */
.trk-btn--ghost {
  background: transparent;
  color: #fff !important;
  border: 1px dashed rgba(255, 255, 255, 0.2);
  margin-top: 0.85rem;
}
.trk-btn--ghost:hover {
  background: rgba(196, 239, 23, 0.08);
  border-color: var(--rj-border);
  color: var(--rj-accent) !important;
}

/* ── Services grid cards ── */
.rj-services-grid__intro {
  max-width: 560px;
  margin: 0 auto;
  opacity: 0.78;
  font-size: 0.95rem;
}
.rj-services-grid__toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 0.25rem;
  padding: 0.6rem 1.1rem;
  border-radius: 8px;
  border: 1px solid rgba(196, 239, 23, 0.35);
  background: rgba(196, 239, 23, 0.08);
  color: var(--rj-accent);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.rj-services-grid__toggle:hover {
  background: rgba(196, 239, 23, 0.16);
  border-color: rgba(196, 239, 23, 0.5);
}
.rj-services-grid__toggle i { font-size: 0.72rem; }
.rj-services-grid__more { margin-top: 0.75rem; }
.rj-svc-card {
  height: 100%;
  padding: 1.35rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
}
.rj-svc-card:hover {
  transform: translateY(-4px);
  border-color: var(--rj-border);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
}
.rj-svc-card--consult { border-top: 2px solid rgba(196, 239, 23, 0.5); }
.rj-svc-card--growth  { border-top: 2px solid rgba(66, 133, 244, 0.45); }
.rj-svc-card--build   { border-top: 2px solid rgba(255, 255, 255, 0.15); }
.rj-svc-card__icon {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(196, 239, 23, 0.12);
  color: var(--rj-accent);
  font-size: 1.1rem;
  margin-bottom: 0.85rem;
}
.rj-svc-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.45rem;
}
.rj-svc-card p {
  font-size: 0.86rem;
  opacity: 0.72;
  line-height: 1.55;
  margin-bottom: 1rem;
  flex: 1;
}
.rj-svc-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.rj-svc-card__price {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--rj-accent);
}
.rj-svc-card__price small {
  font-weight: 400;
  opacity: 0.65;
  font-size: 0.75rem;
}
.rj-svc-card__link {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none !important;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: color 0.2s ease;
}
.rj-svc-card__link:hover { color: var(--rj-accent); }

/* ── Skill pills (centered row) ── */
.rj-skills {
  padding-block: 1.5rem;
}
.rj-skills__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 1.25rem 1.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.rj-skill-pill {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  gap: 0.45rem;
  margin: 0;
  min-width: 5.5rem;
}
.rj-skill-pill__label {
  margin: 0;
  white-space: nowrap;
  line-height: 1.2;
  font-size: 0.92rem;
  font-weight: 700;
  color: #fff;
}
.rj-skill-pill__icon {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin: 0 !important;
  border-radius: 50%;
  background: rgba(196, 239, 23, 0.1);
  border: 1px solid var(--rj-border);
  font-size: 1.2rem;
  color: var(--rj-accent);
}
.rj-skill-pill__icon img { display: none; }
@media (min-width: 768px) {
  .rj-skills { padding-block: 1.75rem; }
  .rj-skills__list { gap: 1.5rem 2.5rem; }
}

/* ── Services mega menu (header) ── */
@media (min-width: 992px) {
  .header-section--style2 .header-wrapper {
    position: relative;
  }
  .menu > li.rj-nav-services {
    position: static !important;
  }
  .menu > li.rj-nav-services.menu-item-has-children > a::after {
    display: none !important;
    content: none !important;
  }
  .menu > li.rj-nav-services > a .rj-nav-caret {
    font-size: 0.6rem;
    margin-left: 0.35rem;
    opacity: 0.55;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }
  .menu > li.rj-nav-services:hover > a .rj-nav-caret {
    transform: rotate(180deg);
    opacity: 0.9;
  }
  .menu > li.rj-nav-services > .rj-mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100% !important;
    max-width: 100%;
    margin: 0;
    padding: 10px 0 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px) !important;
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
    background: transparent;
    box-shadow: none;
    border-radius: 0;
    z-index: 1000;
    pointer-events: none;
  }
  .menu > li.rj-nav-services > .rj-mega-menu.submenu {
    width: 100% !important;
    transform: translateY(8px) !important;
  }
  .menu > li.rj-nav-services:hover > .rj-mega-menu,
  .menu > li.rj-nav-services.rj-mega-open > .rj-mega-menu {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
    pointer-events: auto;
  }
  .rj-mega-menu__shell,
  .menu li .submenu li.rj-mega-menu__shell {
    padding: 0 !important;
    margin: 0 !important;
    width: 100% !important;
    border: none !important;
  }
  .rj-mega-menu__shell > a {
    display: none !important;
  }
  .rj-mega-menu__panel {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    left: 0;
    background: rgba(14, 16, 20, 0.97);
    border-top: 1px solid rgba(196, 239, 23, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 1.35rem 0 1.1rem;
  }
  .rj-mega-menu__panel > .container {
    text-align: left;
    max-width: 1320px;
  }
  .rj-mega-menu__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem 2rem;
    text-align: left;
  }
  .rj-mega-menu__col-head {
    margin-bottom: 0.75rem;
    padding-bottom: 0.55rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  .rj-mega-menu__col-label {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--rj-accent);
  }
  .rj-mega-menu__col-desc {
    display: block;
    font-size: 0.78rem;
    opacity: 0.5;
    margin-top: 0.15rem;
  }
  .rj-mega-menu__list {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .rj-mega-menu__link {
    display: flex !important;
    align-items: center;
    gap: 0.75rem;
    padding: 0.55rem 0.65rem !important;
    margin-bottom: 0.2rem;
    border-radius: 10px !important;
    border: 1px solid transparent !important;
    text-decoration: none !important;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease !important;
    justify-content: flex-start !important;
  }
  .rj-mega-menu__link:hover {
    background: rgba(196, 239, 23, 0.08) !important;
    border-color: rgba(196, 239, 23, 0.2) !important;
    padding-left: 0.65rem !important;
    color: #fff !important;
  }
  .rj-mega-menu__icon {
    flex: 0 0 36px;
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: rgba(196, 239, 23, 0.1);
    border: 1px solid rgba(196, 239, 23, 0.2);
    color: var(--rj-accent);
    font-size: 0.9rem;
  }
  .rj-mega-menu__text {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.1rem;
    min-width: 0;
  }
  .rj-mega-menu__text strong {
    font-size: 0.88rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.3;
  }
  .rj-mega-menu__text small {
    font-size: 0.72rem;
    opacity: 0.5;
    color: rgba(255, 255, 255, 0.7);
  }
  .rj-mega-menu__arrow {
    flex: 0 0 auto;
    font-size: 0.7rem;
    opacity: 0;
    transform: translateX(-4px);
    transition: opacity 0.2s ease, transform 0.2s ease;
    color: var(--rj-accent);
  }
  .rj-mega-menu__link:hover .rj-mega-menu__arrow {
    opacity: 1;
    transform: translateX(0);
  }
  .rj-mega-menu__col--growth .rj-mega-menu__icon {
    background: rgba(66, 133, 244, 0.12);
    border-color: rgba(66, 133, 244, 0.25);
    color: #6ea8fe;
  }
  .rj-mega-menu__col--consult .rj-mega-menu__icon {
    background: rgba(196, 239, 23, 0.12);
  }
  .rj-mega-menu__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 1.15rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }
  .rj-mega-menu__footer-link {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7) !important;
    text-decoration: none !important;
    transition: color 0.2s ease;
  }
  .rj-mega-menu__footer-link:hover {
    color: var(--rj-accent) !important;
  }
  .rj-mega-menu__footer .trk-btn--sm {
    margin-top: 0 !important;
    white-space: nowrap;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .rj-mega-menu__grid {
    gap: 1rem 1.25rem;
  }
  .rj-mega-menu__text strong {
    font-size: 0.82rem;
  }
}

@media (max-width: 991px) {
  .header-section--style2 .menu-area,
  .header-section--style2 .menu.active {
    overflow-x: hidden;
    max-width: 100%;
  }
  .menu > li.rj-nav-services.menu-item-has-children > a::after {
    display: none !important;
    content: none !important;
  }
  .menu > li.rj-nav-services > a .rj-nav-caret {
    font-size: 0.65rem;
    margin-left: 0.35rem;
    opacity: 0.5;
    float: right;
    margin-top: 0.35rem;
  }
  .menu > li.rj-nav-services.open > a .rj-nav-caret {
    transform: rotate(180deg);
  }
  .menu > li.rj-nav-services > .rj-mega-menu {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    overflow: hidden !important;
    padding: 0 !important;
    margin: 0 !important;
    pointer-events: none !important;
  }
  .menu > li.rj-nav-services.open > .rj-mega-menu {
    display: none !important;
  }
  .rj-mega-menu__shell {
    padding: 0 !important;
  }
  .rj-mega-menu__panel {
    width: auto;
    margin-left: 0;
    padding: 0.75rem 0 0.5rem;
  }
  .rj-mega-menu__panel .container {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
  .rj-mega-menu__grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: left;
  }
  .rj-mega-menu__col-head {
    margin-bottom: 0.5rem;
  }
  .rj-mega-menu__list {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .rj-mega-menu__link {
    display: flex !important;
    align-items: center;
    gap: 0.65rem;
    padding: 0.5rem 0.75rem !important;
    border-bottom: none !important;
  }
  .rj-mega-menu__icon {
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: rgba(196, 239, 23, 0.1);
    color: var(--rj-accent);
    font-size: 0.85rem;
  }
  .rj-mega-menu__text strong {
    display: block;
    font-size: 0.88rem;
  }
  .rj-mega-menu__text small {
    font-size: 0.72rem;
    opacity: 0.6;
  }
  .rj-mega-menu__arrow { display: none; }
  .rj-mega-menu__footer {
    flex-direction: column;
    align-items: stretch;
    gap: 0.65rem;
    padding: 0.75rem;
    margin-top: 0.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }
  .rj-mega-menu__footer .trk-btn {
    width: 100%;
    justify-content: center;
  }
}

/* legacy submenu rules override */
.rj-mega-menu.rj-services-submenu .rj-submenu-label,
.rj-services-submenu .rj-submenu-group { display: none; }

.trk-btn--sm {
  padding: 0.45rem 0.85rem !important;
  font-size: 0.82rem !important;
  margin-top: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

/* ── Home services accordion (clean mobile) ── */
.rj-svc-acc {
  gap: 10px !important;
  padding-bottom: 0.5rem;
}

.rj-svc-acc__item {
  border: 1px solid rgba(255, 255, 255, 0.07) !important;
  background: rgba(255, 255, 255, 0.03) !important;
  border-radius: 14px !important;
  overflow: hidden;
}

.rj-svc-acc__item::before,
.rj-svc-acc__item::after {
  display: none !important;
}

.rj-svc-acc__item:has(.accordion-collapse.show) {
  border-color: rgba(196, 239, 23, 0.35) !important;
  background: rgba(255, 255, 255, 0.05) !important;
  box-shadow: 0 0 0 1px rgba(196, 239, 23, 0.08);
}

.rj-svc-acc__header {
  border-radius: 14px !important;
  background: transparent !important;
}

.rj-svc-acc__btn {
  display: flex !important;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  padding: 0.85rem 1rem !important;
  border: 0;
  text-align: left;
}

.rj-svc-acc__btn span {
  font-size: inherit !important;
  font-weight: inherit !important;
  color: inherit !important;
}

.rj-svc-acc__icon {
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--brand-color, #c4ef17);
  font-size: 1rem;
}

.rj-svc-acc__icon i {
  line-height: 1;
}

.rj-svc-acc__label {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.rj-svc-acc__label strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.25;
  color: var(--title-color, #fff);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.rj-svc-acc__label small {
  display: block;
  font-size: 0.72rem;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.5);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.rj-svc-acc__chev {
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.7rem;
  transition: transform 0.2s ease, color 0.2s ease;
}

.rj-svc-acc__btn:not(.collapsed) .rj-svc-acc__chev {
  transform: rotate(180deg);
  color: var(--brand-color, #c4ef17);
}

.rj-svc-acc__body {
  padding: 0 1rem 1rem !important;
}

.rj-svc-acc__body p {
  margin: 0 0 0.85rem !important;
  font-size: 0.84rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.65);
}

.rj-svc-acc__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem 1rem;
}

.rj-svc-acc__link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: color 0.2s ease;
}

.rj-svc-acc__link:hover {
  color: var(--brand-color, #c4ef17);
}

/* Hide legacy circular arrow — link moved inside body */
.rj-svc-acc .services__list-btn {
  display: none !important;
}

@media (max-width: 991.98px) {
  .services__list.rj-svc-acc {
    padding-left: 0 !important;
  }

  .services__list.rj-svc-acc::after {
    display: none !important;
  }

  .services.padding-top.padding-bottom {
    padding-bottom: calc(var(--rj-mobile-bar-h, 72px) + env(safe-area-inset-bottom, 0px) + 2rem) !important;
  }

  .rj-svc-acc__label strong {
    font-size: 0.92rem;
  }
}

@media (min-width: 992px) {
  .rj-svc-acc__btn {
    padding: 1rem 1.25rem !important;
  }

  .rj-svc-acc__label strong {
    font-size: 1.05rem;
  }

  .rj-svc-acc__label small {
    font-size: 0.78rem;
  }
}

/* ── Thank you page ── */
.rj-thankyou {
  padding-top: 5rem !important;
  padding-bottom: 4rem !important;
  min-height: 60vh;
  display: flex;
  align-items: center;
}
.rj-thankyou__card {
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
  padding: 2rem 1.5rem 1.75rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(196, 239, 23, 0.2);
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}
.rj-thankyou__icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(196, 239, 23, 0.12);
  border: 1px solid rgba(196, 239, 23, 0.35);
  color: var(--rj-accent, #c4ef17);
  font-size: 2.25rem;
}
.rj-thankyou__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--rj-accent, #c4ef17);
  background: rgba(196, 239, 23, 0.08);
  border: 1px solid rgba(196, 239, 23, 0.25);
  margin-bottom: 0.85rem;
}
.rj-thankyou h1 {
  font-size: clamp(1.5rem, 5vw, 1.85rem);
  margin-bottom: 0.65rem;
  color: #fff;
}
.rj-thankyou__lead {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 1.25rem;
}
.rj-thankyou__ref {
  display: inline-flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0.65rem 1.1rem;
  margin-bottom: 1.25rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px dashed rgba(255, 255, 255, 0.12);
}
.rj-thankyou__ref span {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.45);
}
.rj-thankyou__ref strong {
  font-size: 1rem;
  color: var(--rj-accent, #c4ef17);
  letter-spacing: 0.02em;
}
.rj-thankyou__steps {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.rj-thankyou__steps li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.7);
  padding: 0.55rem 0.75rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
}
.rj-thankyou__steps li i {
  color: var(--rj-accent, #c4ef17);
  margin-top: 0.15rem;
  flex-shrink: 0;
}
.rj-thankyou__actions {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.rj-thankyou__actions-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}
.rj-thankyou__actions-row .trk-btn {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 10px 20px;
  font-size: 14px;
}
@media (min-width: 992px) {
  .rj-thankyou__actions-row .trk-btn {
    padding: 15px 30px;
    font-size: 16px;
  }
}

/* ── WhatsApp nudge popup ── */
.rj-wa-nudge {
  position: fixed;
  inset: 0;
  z-index: 1001;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 1rem 1rem calc(72px + env(safe-area-inset-bottom, 0px));
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}
.rj-wa-nudge.is-open {
  pointer-events: auto;
  opacity: 1;
  visibility: visible;
}
.rj-wa-nudge__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}
.rj-wa-nudge__panel {
  position: relative;
  width: 100%;
  max-width: 380px;
  padding: 1.35rem 1.25rem 1.15rem;
  background: linear-gradient(180deg, #1e2430 0%, #141820 100%);
  border: 1px solid rgba(196, 239, 23, 0.35);
  border-radius: 14px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.45);
  text-align: center;
  transform: translateY(12px);
  transition: transform 0.25s ease;
}
.rj-wa-nudge.is-open .rj-wa-nudge__panel {
  transform: translateY(0);
}
.rj-wa-nudge__close {
  position: absolute;
  top: 0.6rem;
  right: 0.6rem;
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  cursor: pointer;
}
.rj-wa-nudge__icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.15);
  color: #25d366;
  font-size: 1.65rem;
}
.rj-wa-nudge h3 {
  font-size: 1.15rem;
  margin-bottom: 0.4rem;
  color: #fff;
}
.rj-wa-nudge p {
  font-size: 0.88rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 1rem;
}
.rj-wa-nudge__btn {
  background: #25d366 !important;
  border-color: #25d366 !important;
  color: #fff !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}
@media (min-width: 992px) {
  .rj-wa-nudge {
    align-items: center;
    padding-bottom: 1rem;
  }
}


/* -- Build service page hierarchy -- */
.rj-service-detail--build .project-details__content h1 {
  font-size: clamp(1.75rem, 4vw, 2.45rem);
  line-height: 1.15;
  margin-bottom: 0.75rem;
}
.rj-build-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 0.85rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(196, 239, 23, 0.35);
  background: rgba(196, 239, 23, 0.08);
  color: var(--rj-accent);
  font-size: 0.82rem;
  font-weight: 600;
}
.rj-build-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.25rem 0 0.65rem;
}
.rj-build-hero__note,
.rj-build-hero__meta {
  margin: 0.35rem 0 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.62);
}
.rj-build-hero__meta i { color: var(--rj-accent); margin-right: 0.35rem; }
.rj-build-section {
  padding: 56px 0;
}
@media (max-width: 576px) {
  .rj-build-section { padding: 36px 0; }
}
.rj-build-section__head {
  max-width: 40rem;
  margin-bottom: 1.75rem;
}
.rj-build-section__eyebrow {
  display: inline-block;
  margin-bottom: 0.5rem;
  color: var(--rj-accent);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.rj-build-section__head h2 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.45rem, 3vw, 2rem);
}
.rj-build-section__head p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.55;
}
.rj-build-outcomes__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
}
@media (min-width: 640px) {
  .rj-build-outcomes__grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 992px) {
  .rj-build-outcomes__grid { grid-template-columns: 1fr 1fr 1fr; }
}
.rj-build-outcome {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  padding: 1rem 1.05rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  min-height: 96px;
}
.rj-build-outcome__icon {
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(196, 239, 23, 0.12);
  color: var(--rj-accent);
}
.rj-build-outcome p {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.86);
}
.rj-build-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.25rem;
}
.rj-build-tags span {
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.75);
}
.rj-build-proof { margin: 0; }
.rj-case-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 640px) {
  .rj-case-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1100px) {
  .rj-case-grid { grid-template-columns: 1fr 1fr 1fr; }
}
.rj-case-card {
  display: flex;
  flex-direction: column;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(12, 14, 18, 0.85);
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.rj-case-card:hover {
  transform: translateY(-3px);
  border-color: rgba(196, 239, 23, 0.35);
}
.rj-case-card__media {
  display: block;
  background: #111;
}
.rj-case-card__media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: top center;
}
.rj-case-card__body {
  padding: 1rem 1.05rem 1.15rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}
.rj-case-card__body h3 {
  margin: 0;
  font-size: 1.05rem;
}
.rj-case-card__desc {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.78);
}
.rj-case-card__ps {
  margin: 0;
  display: grid;
  gap: 0.55rem;
}
.rj-case-card__ps div {
  padding: 0.55rem 0.65rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.rj-case-card__ps dt {
  margin: 0 0 0.15rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--rj-accent);
}
.rj-case-card__ps dd {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.82);
}
.rj-case-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: auto;
}
.rj-case-card__tags span {
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  border: 1px solid rgba(196, 239, 23, 0.28);
  background: rgba(196, 239, 23, 0.08);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.72rem;
  font-weight: 600;
}
.rj-build-quote__panel {
  display: grid;
  gap: 1.5rem;
  padding: 1.5rem;
  border-radius: 16px;
  border: 1px solid rgba(196, 239, 23, 0.28);
  background:
    linear-gradient(160deg, rgba(196, 239, 23, 0.08), transparent 40%),
    rgba(18, 22, 30, 0.92);
}
@media (min-width: 900px) {
  .rj-build-quote__panel {
    grid-template-columns: 1fr 1.05fr;
    align-items: start;
    padding: 2rem;
    gap: 2rem;
  }
}
.rj-build-quote__bullets {
  list-style: none;
  margin: 1rem 0 1.25rem;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}
.rj-build-quote__bullets li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
}
.rj-build-quote__bullets i { color: var(--rj-accent); }
.rj-build-quote__alt {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}
.rj-build-quote__form {
  padding: 1.15rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.25);
}
.rj-build-accordion {
  display: grid;
  gap: 0.75rem;
}
.rj-build-acc {
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  overflow: hidden;
}
.rj-build-acc > summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.15rem;
  cursor: pointer;
  font-weight: 600;
  list-style: none;
}
.rj-build-acc > summary::-webkit-details-marker { display: none; }
.rj-build-acc > summary i {
  color: var(--rj-accent);
  transition: transform 0.25s ease;
}
.rj-build-acc[open] > summary i { transform: rotate(45deg); }
.rj-build-acc__body {
  padding: 0 1.15rem 1.25rem;
}
.rj-build-audit__card {
  border-radius: 14px;
  border: 1px dashed rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.025);
  overflow: hidden;
}
.rj-build-audit__card > summary {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.25rem;
  cursor: pointer;
  list-style: none;
}
.rj-build-audit__card > summary::-webkit-details-marker { display: none; }
.rj-build-audit__card > summary strong {
  display: block;
  margin: 0.2rem 0 0.35rem;
  font-size: 1.05rem;
}
.rj-build-audit__card > summary p {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  line-height: 1.45;
}
.rj-build-audit__card > summary i {
  color: var(--rj-accent);
  margin-top: 0.35rem;
  transition: transform 0.25s ease;
}
.rj-build-audit__card[open] > summary i { transform: rotate(45deg); }
.rj-build-audit__body {
  padding: 0 1.25rem 1.25rem;
}
.rj-build-audit__body ul {
  margin: 0 0 0.85rem;
  padding-left: 1.1rem;
  color: rgba(255, 255, 255, 0.78);
}
.rj-build-audit__note {
  margin: 0 0 1rem;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
}

/* -- Ads landing page (web/app service) -- */
/* Theme sets .header-section--style2 { position:absolute } — that caused hero/nav overlap */
.header-section.header-section--style2.header-section--ads-lp {
  position: sticky;
  top: 0;
  left: auto;
  right: auto;
  width: 100%;
  z-index: 999;
  background: rgba(12, 14, 18, 0.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.header-section.header-section--style2.header-section--ads-lp.header-fixed {
  position: sticky;
  animation: none;
  background: rgba(12, 14, 18, 0.98);
}
.header-section--ads-lp .header-btn--ads-lp {
  display: inline-flex;
  align-items: stretch;
  gap: 0.55rem;
}
.header-section--ads-lp .header-btn--ads-lp .trk-btn--outline {
  display: inline-flex !important;
}
@media (max-width: 991px) {
  .header-section--ads-lp .menu-area > .menu { display: none; }
  .header-section--ads-lp .menu-area > .menu.active {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #12161e;
    padding: 1rem;
    border-bottom: 1px solid rgba(255,255,255,.08);
  }
}
.rj-ads-lp {
  padding-bottom: 1rem;
  overflow-x: clip;
  overflow-y: visible;
}
.rj-ads-hero {
  padding: 1.25rem 0 2.25rem;
  background:
    radial-gradient(ellipse at top right, rgba(196,239,23,.12), transparent 55%),
    linear-gradient(180deg, #141820 0%, #0c0e12 100%);
  position: relative;
  z-index: 1;
}
.rj-ads-hero__grid {
  display: grid;
  gap: 1.35rem;
  align-items: center;
}
@media (min-width: 992px) {
  .rj-ads-hero__grid.has-banner {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 2.75rem;
    min-height: 420px;
  }
}
.rj-ads-hero__copy { min-width: 0; }
.rj-ads-hero__media {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.1);
  background: #111;
  box-shadow: 0 18px 44px rgba(0,0,0,.35);
}
.rj-ads-hero__media img,
.rj-ads-hero__media video {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center top;
}
.rj-ads-hero__media video {
  height: 100%;
  min-height: 320px;
  background: #050608;
}
.rj-ads-hero__media--video {
  aspect-ratio: 4 / 3;
}
@media (max-width: 991px) {
  .rj-ads-hero__media {
    max-height: 210px;
  }
  .rj-ads-hero__media img,
  .rj-ads-hero__media video {
    aspect-ratio: 16 / 9;
    max-height: 210px;
    min-height: 0;
  }
  .rj-ads-hero__media--video { aspect-ratio: 16 / 9; }
}
.rj-ads-hero__urgency {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 0.85rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(196,239,23,.35);
  background: rgba(196,239,23,.08);
  color: rgba(255,255,255,.85);
  font-size: 0.8rem;
  font-weight: 600;
}
.rj-ads-hero h1 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.4rem, 4.2vw, 2.4rem);
  line-height: 1.18;
  max-width: 22ch;
  position: relative;
  z-index: 2;
}
.rj-ads-hero__sub {
  margin: 0 0 1rem;
  font-size: 1.05rem;
  line-height: 1.45;
  color: rgba(255,255,255,.78);
  max-width: 36rem;
}
.rj-ads-hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.5rem;
  margin: 0 0 1.25rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255,255,255,.8);
}
.rj-ads-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 0 0 0.85rem;
  max-width: 520px;
}
.rj-ads-hero__cta .trk-btn {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 52px;
  height: 52px;
  padding: 0 1.2rem !important;
  font-size: 1.02rem !important;
  flex: 1 1 200px;
  box-sizing: border-box;
}
.rj-ads-hero__cta .trk-btn--primary {
  background: var(--rj-accent) !important;
  border: 1px solid var(--rj-accent) !important;
  color: #111 !important;
}
.rj-ads-hero__cta .trk-btn--primary:hover,
.rj-ads-hero__cta .trk-btn--primary:focus-visible {
  background: #d4f74a !important;
  border-color: #d4f74a !important;
  color: #111 !important;
}
.rj-ads-hero__cta .trk-btn--outline {
  background: transparent !important;
  border: 1px solid var(--rj-accent) !important;
  color: #fff !important;
}
.rj-ads-hero__cta .trk-btn--outline:hover,
.rj-ads-hero__cta .trk-btn--outline:focus-visible {
  background: rgba(196, 239, 23, 0.12) !important;
  border-color: var(--rj-accent) !important;
  color: #fff !important;
}
.rj-ads-hero__cta .trk-btn::after {
  display: none !important;
  content: none !important;
}
.rj-ads-hero__cta .trk-btn i,
.rj-ads-hero__cta .trk-btn:hover i {
  color: inherit !important;
}
.rj-ads-hero__phone {
  margin: 0.85rem 0 0;
  font-size: 0.95rem;
  color: rgba(255,255,255,.65);
}
.rj-ads-hero__phone a {
  color: var(--rj-accent);
  text-decoration: none;
  font-weight: 600;
}
.rj-ads-hero__note {
  margin: 0.45rem 0 0;
  font-size: 0.85rem;
  color: rgba(255,255,255,.5);
}
/* Below-fold sections: skip layout/paint until near viewport */
.rj-ads-lp .rj-ads-section:not(.rj-ads-desc) {
  content-visibility: auto;
  contain-intrinsic-size: 1px 640px;
}
.rj-ads-section {
  padding: 2.25rem 0;
}
.rj-ads-desc__wrap {
  max-width: 46rem;
}
.rj-ads-desc__body {
  color: rgba(255,255,255,.78);
  font-size: 1rem;
  line-height: 1.65;
}
.rj-ads-desc__body p {
  margin: 0 0 0.85rem;
}
.rj-ads-desc__body p:last-child {
  margin-bottom: 0;
}
.rj-ads-desc__wrap.is-collapsed .rj-ads-desc__body {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  overflow: hidden;
}
.rj-ads-desc__more {
  margin-top: 0.75rem;
  padding: 0;
  border: 0;
  background: none;
  color: var(--rj-accent);
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.rj-ads-desc__more:hover {
  color: #fff;
}
.rj-mega-menu__grid--simple {
  grid-template-columns: 1fr !important;
  max-width: 420px;
}
.rj-ads-section h2 {
  margin: 0 0 0.85rem;
  font-size: clamp(1.35rem, 3.5vw, 1.85rem);
}
.rj-ads-lead {
  margin: 0 0 1.25rem;
  color: rgba(255,255,255,.7);
  line-height: 1.55;
  max-width: 40rem;
}
.rj-ads-value__grid,
.rj-ads-proof__grid,
.rj-ads-cases__grid,
.rj-ads-get__grid {
  display: grid;
  gap: 0.85rem;
}
.rj-ads-cases__grid {
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 768px) {
  .rj-ads-value__grid,
  .rj-ads-proof__grid,
  .rj-ads-get__grid { grid-template-columns: repeat(3, 1fr); }
  .rj-ads-value__grid--4 { grid-template-columns: repeat(2, 1fr); }
  .rj-ads-cases__grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1100px) {
  .rj-ads-value__grid--4 { grid-template-columns: repeat(4, 1fr); }
}
.rj-ads-value__card,
.rj-ads-proof__card,
.rj-ads-case,
.rj-ads-get__col,
.rj-ads-quote__box {
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.03);
  padding: 1.1rem;
}
.rj-ads-value__icon {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(196,239,23,.12);
  color: var(--rj-accent);
  margin-bottom: 0.65rem;
}
.rj-ads-value__card h3,
.rj-ads-case__body h3,
.rj-ads-get__col h3 {
  margin: 0 0 0.4rem;
  font-size: 1.02rem;
}
.rj-ads-value__card p,
.rj-ads-case__body p,
.rj-ads-proof__card p {
  margin: 0;
  color: rgba(255,255,255,.72);
  font-size: 0.92rem;
  line-height: 1.45;
}
.rj-ads-proof__stars {
  color: #f5c518;
  margin-bottom: 0.55rem;
  font-size: 0.85rem;
}
.rj-ads-proof__card footer {
  margin-top: 0.85rem;
  display: grid;
  gap: 0.15rem;
}
.rj-ads-proof__card footer strong { font-size: 0.95rem; }
.rj-ads-proof__card footer span,
.rj-ads-proof__card footer em {
  font-size: 0.82rem;
  color: rgba(255,255,255,.55);
  font-style: normal;
}
.rj-ads-quote__box {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-color: rgba(196,239,23,.3);
  background:
    linear-gradient(160deg, rgba(37,211,102,.1), transparent 45%),
    rgba(18,22,30,.95);
  padding: 1.35rem 1.25rem 1.5rem;
}
.rj-ads-quote__box h2 {
  margin: 0 0 0.55rem;
}
.rj-ads-quote__intro {
  margin: 0 0 1.15rem !important;
  color: rgba(255,255,255,.7);
  line-height: 1.5;
}
.rj-ads-quote__wa,
.rj-ads-quote__box .trk-btn--primary.rj-ads-quote__wa {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  min-height: 52px;
  margin: 0 !important;
  position: relative;
  overflow: hidden;
  z-index: 1;
  background: #25d366 !important;
  border-color: #25d366 !important;
  color: #fff !important;
}
.rj-ads-quote__wa:hover,
.rj-ads-quote__wa:focus-visible,
.rj-ads-quote__box .trk-btn--primary.rj-ads-quote__wa:hover,
.rj-ads-quote__box .trk-btn--primary.rj-ads-quote__wa:focus-visible {
  background: #1fbe5a !important;
  border-color: #1fbe5a !important;
  color: #fff !important;
}
.rj-ads-quote__wa::after,
.rj-ads-quote__box .trk-btn--primary.rj-ads-quote__wa::after,
.rj-ads-quote__alt .trk-btn::after,
.rj-ads-form .trk-btn::after {
  display: none !important;
  content: none !important;
}
.rj-ads-quote__alt .trk-btn--outline {
  background: transparent !important;
  border: 1px solid rgba(255,255,255,.35) !important;
  color: #fff !important;
}
.rj-ads-quote__alt .trk-btn--outline:hover,
.rj-ads-quote__alt .trk-btn--outline:focus-visible {
  background: rgba(196, 239, 23, 0.12) !important;
  border-color: var(--rj-accent) !important;
  color: #fff !important;
}
.rj-ads-quote__alt .trk-btn--outline i,
.rj-ads-quote__alt .trk-btn--outline:hover i {
  color: inherit !important;
}
.rj-ads-form .trk-btn--primary {
  color: #111 !important;
  background: var(--rj-accent) !important;
  border-color: var(--rj-accent) !important;
}
.rj-ads-form .trk-btn--primary:hover,
.rj-ads-form .trk-btn--primary:focus-visible {
  background: #d4f74a !important;
  border-color: #d4f74a !important;
  color: #111 !important;
}
.rj-ads-quote__or {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin: 1.35rem 0 1.15rem !important;
  color: rgba(255,255,255,.45);
  font-size: 0.85rem;
  line-height: 1.2;
}
.rj-ads-quote__alt {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.rj-ads-quote__alt .trk-btn {
  flex: 1 1 160px;
  min-height: 48px;
  justify-content: center;
}
.rj-ads-quote__or::before,
.rj-ads-quote__or::after {
  content: "";
  flex: 1 1 auto;
  height: 1px;
  background: rgba(255,255,255,.14);
}
.rj-ads-quote__or span {
  flex: 0 0 auto;
  white-space: nowrap;
}
.rj-ads-form {
  margin: 0;
  padding: 0;
}
.rj-ads-form__field {
  margin: 0 0 0.9rem;
}
.rj-ads-form__row {
  display: grid;
  gap: 0.75rem;
  margin: 0 0 0.15rem;
}
@media (min-width: 700px) {
  .rj-ads-form__row {
    grid-template-columns: 1fr 1fr;
  }
}
.rj-ads-form__field:last-of-type {
  margin-bottom: 1rem;
}
.rj-ads-form__field label {
  display: block;
  margin: 0 0 0.4rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255,255,255,.85);
}
.rj-ads-form .form-control,
.rj-ads-form select.form-control {
  min-height: 48px;
  font-size: 16px;
}
.rj-ads-form select.form-control {
  appearance: auto;
  cursor: pointer;
  color: #fff;
  background-color: rgba(0,0,0,.35);
  border: 1px solid rgba(255,255,255,.14);
}
.rj-ads-form select.form-control option {
  color: #111;
  background: #fff;
}
.rj-ads-form textarea.form-control { min-height: 96px; }
.rj-ads-form .trk-btn {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 48px;
  margin-top: 0.25rem;
  position: relative;
  overflow: hidden;
}
.rj-ads-form__trust,
.rj-ads-quote__phone {
  margin: 0.9rem 0 0 !important;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,.55);
}
.rj-ads-quote__phone a {
  color: var(--rj-accent);
  font-weight: 600;
  text-decoration: none;
}
.rj-ads-quote__phone a:hover {
  text-decoration: underline;
}
.rj-ads-case {
  padding: 0;
  overflow: hidden;
}
.rj-ads-case img {
  display: block;
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: top center;
}
.rj-ads-case__body { padding: 0.9rem 1rem 1.05rem; }
.rj-ads-process__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}
@media (min-width: 768px) {
  .rj-ads-process__list { grid-template-columns: repeat(4, 1fr); }
}
.rj-ads-process__list li {
  display: flex;
  gap: 0.75rem;
  padding: 1rem;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.03);
}
.rj-ads-process__num {
  flex: 0 0 auto;
  font-weight: 800;
  color: var(--rj-accent);
}
.rj-ads-process__list strong { display: block; margin-bottom: 0.15rem; }
.rj-ads-process__list em {
  display: block;
  font-style: normal;
  font-size: 0.78rem;
  color: rgba(196,239,23,.85);
  margin-bottom: 0.25rem;
}
.rj-ads-process__list p {
  margin: 0;
  font-size: 0.88rem;
  color: rgba(255,255,255,.68);
}
.rj-ads-get__col ul {
  margin: 0;
  padding-left: 1.1rem;
  color: rgba(255,255,255,.75);
  font-size: 0.92rem;
  line-height: 1.55;
}
.rj-ads-final {
  text-align: center;
  padding-bottom: 3rem;
}
.rj-ads-final h2,
.rj-ads-final > .container > p {
  margin-left: auto;
  margin-right: auto;
  max-width: 32rem;
}
.rj-ads-final > .container > p {
  margin-bottom: 1.15rem;
  color: rgba(255,255,255,.7);
}
.rj-ads-final__cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
}
.rj-ads-final__cta .trk-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 52px;
  margin: 0;
  padding: 0.85rem 1.25rem;
  min-width: 168px;
}
.rj-ads-final__cta .trk-btn--primary {
  background: #25d366 !important;
  border-color: #25d366 !important;
  color: #fff !important;
}
.rj-ads-final__cta .trk-btn--primary:hover,
.rj-ads-final__cta .trk-btn--primary:focus-visible {
  background: #1fbe5a !important;
  border-color: #1fbe5a !important;
  color: #fff !important;
}
.rj-ads-final__cta .trk-btn--outline {
  border-color: rgba(255,255,255,.35) !important;
  color: #fff !important;
  background: transparent !important;
}
.rj-ads-final__cta .trk-btn--outline:hover,
.rj-ads-final__cta .trk-btn--outline:focus-visible {
  border-color: var(--rj-accent) !important;
  background: rgba(196, 239, 23, 0.12) !important;
  color: #fff !important;
}
.rj-ads-final__cta .trk-btn::after {
  display: none !important;
  content: none !important;
}
.rj-ads-final__cta .trk-btn i,
.rj-ads-final__cta .trk-btn:hover i {
  color: inherit !important;
}
@media (max-width: 575px) {
  .rj-ads-final__cta {
    flex-direction: column;
    align-items: stretch;
  }
  .rj-ads-final__cta .trk-btn {
    width: 100%;
    min-width: 0;
  }
}
.rj-ads-lp .rj-mobile-dock__bar { gap: 0; }

/* Blog CTAs — WhatsApp / Call (no payment) */
.rj-blog-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  align-items: center;
}
.rj-blog-cta .trk-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 42px;
  padding: 0.55rem 0.95rem;
  font-size: 0.92rem;
}
.rj-blog-cta .trk-btn--primary {
  background: #25d366 !important;
  border-color: #25d366 !important;
  color: #fff !important;
}
@media (max-width: 575px) {
  .rj-blog-cta .trk-btn {
    flex: 1 1 calc(50% - 0.35rem);
    min-width: 0;
  }
}

/* Blog article page — compact & clean */
.rj-blog {
  padding-top: calc(78px + env(safe-area-inset-top, 0px));
  padding-bottom: 0.5rem;
  overflow-x: clip;
}
.rj-blog__hero {
  padding: 0.85rem 0 1rem;
  background:
    radial-gradient(ellipse at top right, rgba(196,239,23,.07), transparent 55%),
    linear-gradient(180deg, #12151b 0%, #0c0e12 100%);
}
.rj-blog__crumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 0.4rem;
  align-items: center;
  margin: 0 0 0.55rem;
  font-size: 0.75rem;
  color: rgba(255,255,255,.42);
}
.rj-blog__crumb a {
  color: rgba(255,255,255,.6);
  text-decoration: none;
}
.rj-blog__crumb a:hover { color: var(--rj-accent); }
.rj-blog__crumb span:last-child {
  color: rgba(255,255,255,.48);
  max-width: 36ch;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.rj-blog__title {
  margin: 0 0 0.55rem;
  max-width: 28ch;
  font-size: clamp(1.25rem, 3.2vw, 1.75rem);
  line-height: 1.25;
  font-weight: 650;
  color: #fff;
}
.rj-blog__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.85rem;
  margin: 0;
  font-size: 0.78rem;
  color: rgba(255,255,255,.55);
}
.rj-blog__meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}
.rj-blog__meta i { color: var(--rj-accent); opacity: 0.85; font-size: 0.72rem; }
.rj-blog__cta { margin-top: 0.25rem; }
.rj-blog__body { padding: 0.85rem 0 2rem; }
.rj-blog__panel {
  max-width: 760px;
  margin: 0 auto;
  padding: 1rem 0.95rem 1.15rem;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 12px;
  background: rgba(255,255,255,.025);
}
@media (min-width: 768px) {
  .rj-blog__panel { padding: 1.25rem 1.35rem 1.4rem; }
}
.rj-blog__cover {
  margin: 0 0 1rem;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.07);
  background: #111;
  max-height: 320px;
}
.rj-blog__cover img {
  display: block;
  width: 100%;
  height: 100%;
  max-height: 320px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.rj-blog__content {
  color: rgba(255,255,255,.8);
  font-size: 0.95rem;
  line-height: 1.65;
}
.rj-blog__content > *:first-child { margin-top: 0; }
.rj-blog__content h1,
.rj-blog__content h2,
.rj-blog__content h3,
.rj-blog__content h4 {
  color: #fff;
  margin: 1.15rem 0 0.45rem;
  line-height: 1.3;
  font-weight: 650;
}
.rj-blog__content h1 { font-size: 1.2rem; }
.rj-blog__content h2 { font-size: 1.1rem; }
.rj-blog__content h3 { font-size: 1.02rem; }
.rj-blog__content h4 { font-size: 0.98rem; }
.rj-blog__content p { margin: 0 0 0.75rem; }
.rj-blog__content ul,
.rj-blog__content ol {
  margin: 0 0 0.75rem;
  padding-left: 1.15rem;
}
.rj-blog__content li { margin-bottom: 0.25rem; }
.rj-blog__content a { color: var(--rj-accent); }
.rj-blog__content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 0.55rem 0;
}
.rj-blog__content table {
  width: 100%;
  display: block;
  overflow-x: auto;
  margin-bottom: 0.75rem;
  font-size: 0.88rem;
}
.rj-blog__content blockquote {
  margin: 0.75rem 0;
  padding: 0.65rem 0.85rem;
  border-left: 3px solid var(--rj-accent);
  background: rgba(255,255,255,.03);
  color: rgba(255,255,255,.72);
  font-size: 0.92rem;
}
.rj-blog__footer-cta {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.25rem;
  padding: 0.95rem 1rem;
  border-radius: 12px;
  border: 1px solid rgba(196,239,23,.22);
  background:
    linear-gradient(160deg, rgba(37,211,102,.08), transparent 50%),
    rgba(18,22,30,.95);
}
.rj-blog__footer-cta strong {
  display: block;
  margin-bottom: 0.15rem;
  font-size: 0.98rem;
  color: #fff;
}
.rj-blog__footer-cta p {
  margin: 0;
  color: rgba(255,255,255,.62);
  font-size: 0.85rem;
  line-height: 1.4;
}
@media (min-width: 768px) {
  .rj-blog__footer-cta {
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 1rem;
  }
}

.rj-blog__next {
  max-width: 760px;
  margin: 1.35rem auto 0;
}
.rj-blog__next h2 {
  margin: 0 0 0.75rem;
  font-size: 1.05rem;
  font-weight: 650;
  color: #fff;
}
.rj-blog__next-grid {
  display: grid;
  gap: 0.65rem;
}
@media (min-width: 700px) {
  .rj-blog__next-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.rj-blog__next-card {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0.85rem 0.9rem;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.03);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.rj-blog__next-card:hover {
  border-color: rgba(196,239,23,.35);
  background: rgba(196,239,23,.05);
}
.rj-blog__next-card strong {
  font-size: 0.92rem;
  color: #fff;
}
.rj-blog__next-card span {
  font-size: 0.78rem;
  line-height: 1.4;
  color: rgba(255,255,255,.55);
}

/* Clear absolute theme header on blog pages */
body:has(.rj-blog) .header-section.header-section--style2 {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(12, 14, 18, 0.97);
}
@media (max-width: 991px) {
  .rj-ads-lp {
    padding-bottom: calc(88px + env(safe-area-inset-bottom, 0px));
  }
  .rj-ads-hero {
    padding: 1rem 0 1.75rem;
  }
  .rj-ads-hero__cta {
    max-width: none;
  }
  .rj-ads-section {
    padding: 1.75rem 0;
  }
  .rj-mobile-dock--build .rj-mobile-dock__bar {
    gap: 8px;
    padding: 8px 10px 8px 8px;
  }
  .rj-mobile-dock--build .rj-mobile-dock__book {
    min-height: 46px;
    height: 46px;
    padding: 0 1.1rem;
  }
  .rj-mobile-dock--build .rj-mobile-dock__icon {
    width: 46px;
    height: 46px;
    font-size: 1.15rem;
    flex-shrink: 0;
  }
}
@media (min-width: 992px) {
  .rj-ads-hero {
    padding: 1.75rem 0 2.75rem;
  }
  .rj-ads-quote__box {
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
  }
  .rj-ads-hero__cta {
    width: auto;
    min-width: 320px;
  }
}

/* Home / listing blog cards — tighter, smaller type */
.blog__item .blog__content {
  padding-top: 0.75rem;
}
.blog__item .blog__meta {
  padding-block: 0.35rem 0.45rem;
}
.blog__item .blog__meta-tag {
  font-size: 0.75rem;
  letter-spacing: 0.02em;
}
.blog__item .blog__title,
.blog__item .blog__content h3,
.blog__item .blog__content h4 {
  font-size: 1.05rem;
  line-height: 1.4;
  margin: 0;
  font-weight: 600;
}
.blog__item .blog__title a,
.blog__item .blog__content h3 a,
.blog__item .blog__content h4 a {
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
}
.blog__item .blog__thumb-floating {
  font-size: 0.72rem;
  padding-block: 4px;
  padding-inline: 10px;
}
@media (min-width: 768px) {
  .blog__item .blog__title,
  .blog__item .blog__content h3,
  .blog__item .blog__content h4 {
    font-size: 1.12rem;
  }
}
@media (min-width: 1200px) {
  .blog__item .blog__meta {
    padding-block: 0.4rem 0.55rem;
  }
}

/* Experience timeline cards — more breathing room */
.experience--style2 .experience__item-inner {
  padding: 1.5rem 1.35rem;
}
.experience--style2 .experience__item-wrapper {
  gap: 1.25rem;
  align-items: center;
}
.experience--style2 .experience__item-content {
  gap: 0.85rem 1.75rem;
  flex: 1;
  min-width: 0;
  margin-bottom: 0;
}
.experience--style2 .experience__item-title h4 {
  margin: 0;
  line-height: 1.35;
}
.experience--style2 .experience__item-description p {
  margin: 0;
  line-height: 1.6;
}
.experience--style2 .experience__item-wrapper > .track_btn.nobtn {
  flex-shrink: 0;
  margin: 0;
}
@media (min-width: 768px) {
  .experience--style2 .experience__item-inner {
    padding: 1.85rem 2rem;
  }
}
@media (min-width: 992px) {
  .experience--style2 .experience__item-inner {
    padding: 2rem 2.35rem;
  }
  .experience--style2 .experience__item-content {
    gap: 1rem 2.5rem;
  }
}
