/* Floating WhatsApp button — persistent on every page */
.devlip-whatsapp-float {
  position: fixed;
  left: 24px;
  bottom: 24px;
  z-index: 999;
  width: 56px;
  height: 56px;
  text-decoration: none;
}
.devlip-whatsapp-float__ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25d366;
  opacity: 0.55;
  animation: devlipWaPulse 2.4s ease-out infinite;
}
.devlip-whatsapp-float__btn {
  position: relative;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.4);
  flex-shrink: 0;
}
.devlip-whatsapp-float__label {
  position: absolute;
  left: 68px;
  top: 50%;
  transform: translate(-8px, -50%);
  background: #15161d;
  color: #fff;
  font-size: 13.5px;
  font-weight: 600;
  padding: 9px 14px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  pointer-events: none;
}
.devlip-whatsapp-float:hover .devlip-whatsapp-float__label {
  opacity: 1;
  transform: translate(0, -50%);
}
@keyframes devlipWaPulse {
  0% { transform: scale(1); opacity: 0.55; }
  100% { transform: scale(1.9); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .devlip-whatsapp-float__ring { animation: none; display: none; }
}
@media (max-width: 480px) {
  .devlip-whatsapp-float { left: 16px; bottom: 16px; }
  .devlip-whatsapp-float__label { display: none; }
}

/* Floating AI chat bubble — stacked above the WhatsApp button, never touching it */
.devlip-chat-float {
  position: fixed;
  left: 24px;
  bottom: 96px;
  z-index: 998;
  width: 56px;
  height: 56px;
  border: none;
  background: none;
  padding: 0;
  cursor: pointer;
}
.devlip-chat-float__btn {
  position: relative;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e10600, #8b0f1c);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  box-shadow: 0 10px 26px rgba(196, 18, 39, 0.45);
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.devlip-chat-float:hover .devlip-chat-float__btn {
  transform: translateY(-2px);
}
.devlip-chat-float__label {
  position: absolute;
  left: 68px;
  top: 50%;
  transform: translate(-8px, -50%);
  background: #15161d;
  color: #fff;
  font-size: 13.5px;
  font-weight: 600;
  padding: 9px 14px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
  pointer-events: none;
}
.devlip-chat-float:hover .devlip-chat-float__label {
  opacity: 1;
  transform: translate(0, -50%);
}
@media (max-width: 480px) {
  .devlip-chat-float { left: 16px; bottom: 84px; }
  .devlip-chat-float__label { display: none; }
}

/* Chat panel */
.devlip-chat-panel {
  position: fixed;
  left: 24px;
  bottom: 164px;
  z-index: 1000;
  width: 340px;
  max-width: calc(100vw - 48px);
  max-height: min(70vh, 520px);
  background: #101117;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  box-shadow: 0 30px 70px -20px rgba(0, 0, 0, 0.7);
  display: none;
  flex-direction: column;
  overflow: hidden;
}
.devlip-chat-panel.is-open {
  display: flex;
}
.devlip-chat-panel__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 18px;
  background: linear-gradient(135deg, #e10600, #8b0f1c);
  color: #fff;
}
.devlip-chat-panel__head-title {
  font-size: 14.5px;
  font-weight: 800;
}
.devlip-chat-panel__head-sub {
  font-size: 12px;
  opacity: 0.85;
  margin-top: 2px;
}
.devlip-chat-panel__close {
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: #fff;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.devlip-chat-panel__body {
  flex: 1;
  overflow-y: auto;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.devlip-chat-bubble {
  max-width: 88%;
  padding: 10px 13px;
  border-radius: 12px;
  font-size: 13.5px;
  line-height: 1.5;
}
.devlip-chat-bubble--bot {
  align-self: flex-start;
  background: #1b1c25;
  color: #e4e4e8;
  border-bottom-left-radius: 4px;
}
.devlip-chat-bubble--user {
  align-self: flex-end;
  background: #c41227;
  color: #fff;
  border-bottom-right-radius: 4px;
}
.devlip-chat-panel__foot {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.devlip-chat-panel__row {
  display: flex;
  gap: 8px;
}
.devlip-chat-panel__email {
  width: 100%;
  background: #1b1c25;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 9px 12px;
  color: #fff;
  font-size: 13px;
  font-family: inherit;
}
.devlip-chat-panel__email:focus {
  outline: 2px solid #c41227;
  outline-offset: 1px;
}
.devlip-chat-panel__email::placeholder {
  color: rgba(255, 255, 255, 0.4);
}
.devlip-chat-panel__input {
  flex: 1;
  background: #1b1c25;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 10px 12px;
  color: #fff;
  font-size: 13.5px;
  resize: none;
  font-family: inherit;
}
.devlip-chat-panel__input:focus {
  outline: 2px solid #c41227;
  outline-offset: 1px;
}
.devlip-chat-panel__send {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: none;
  background: #c41227;
  color: #fff;
  font-size: 15px;
  cursor: pointer;
  flex-shrink: 0;
}
.devlip-chat-panel__send:hover {
  background: #e10600;
}

/* Fix 4-digit stat numbers overflowing their fixed-width container and wrapping mid-number */
.devlip-stat-4digit {
  font-size: 50px !important;
  white-space: nowrap;
}
@media (max-width: 1199px) {
  .devlip-stat-4digit { font-size: 46px !important; }
}
@media only screen and (max-width: 1023px) {
  .devlip-stat-4digit { font-size: 36px !important; }
}

/* Fix oversized heading wrapping into 5+ lines in the narrow contact-form column */
.devlip-tight-title {
  font-size: 40px !important;
  line-height: 1.2 !important;
}
@media (max-width: 1199px) {
  .devlip-tight-title { font-size: 34px !important; }
}

/* DEVLIP brand accents on top of ytwealth template — keep layout intact */
@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700&family=Space+Grotesk:wght@500;600;700&display=swap");

.devlip-site .xb-header-logo img,
.devlip-site .xb-logo-mobile img {
  max-height: 58px;
  width: auto;
  background: transparent !important;
  mix-blend-mode: normal;
}

.devlip-site .yt-footer__logo img {
  max-height: 56px;
  width: auto;
  background: transparent !important;
}

.devlip-site .yt-lux__logo img {
  max-height: none !important;
  width: min(340px, 72vw) !important;
  height: auto !important;
  background: transparent !important;
  filter: none !important;
  box-shadow: none !important;
}

.devlip-site .yt-lux__logo {
  filter: none !important;
  box-shadow: none !important;
  animation: none !important;
  transform: none !important;
}

.devlip-site .yt-lux__shine {
  display: none !important;
}


.devlip-site .yt-hub__core img {
  max-width: 72%;
  height: auto;
}

/* Industries center mark — sit in middle of the marquee frame */
.devlip-site .xb-industries-wrapper {
  position: relative;
}

.devlip-site .xb-industries-logo {
  position: absolute !important;
  left: 0 !important;
  right: 0 !important;
  top: 8% !important;
  z-index: 6;
  width: min(420px, 72%);
  max-width: 420px;
  margin: 0 auto !important;
  transform: none !important;
  pointer-events: none;
  text-align: center;
  visibility: visible !important;
  opacity: 1 !important;
}

.devlip-site .xb-industries-logo img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: inline-block;
  filter: drop-shadow(0 0 40px rgba(225, 6, 0, 0.4));
}

@media (max-width: 991px) {
  .devlip-site .xb-industries-logo {
    top: 10% !important;
    width: min(300px, 70%);
  }
}

@media (max-width: 767px) {
  .devlip-site .xb-industries-logo {
    top: 6% !important;
    width: min(250px, 80%);
  }
}

/* Soft red accent aligned to DEVLIP mark */
.devlip-site .thm-btn,
.devlip-site .agency-btn {
  --devlip-accent: #e10600;
}

/* Fix agency-btn hover ghost (split .text/.arrow pills) */
.devlip-site .thm-btn.agency-btn,
.devlip-site a.thm-btn.agency-btn {
  position: relative;
  display: inline-flex !important;
  align-items: center;
  gap: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
  background: #e10600 !important;
  border: 1px solid #e10600 !important;
  border-radius: 100px !important;
  box-shadow: 0 10px 28px rgba(225, 6, 0, 0.32) !important;
  transform: none !important;
}

.devlip-site .thm-btn.agency-btn::before,
.devlip-site .thm-btn.agency-btn::after,
.devlip-site .thm-btn::before,
.devlip-site .thm-btn::after {
  display: none !important;
  content: none !important;
  animation: none !important;
}

.devlip-site .thm-btn.agency-btn .text,
.devlip-site .thm-btn.agency-btn .arrow {
  background: transparent !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  transform: none !important;
  -webkit-transition: color 0.25s ease !important;
  transition: color 0.25s ease !important;
}

.devlip-site .thm-btn.agency-btn .text {
  padding: 16px 8px 16px 26px !important;
  color: #fff !important;
  font-weight: 700;
}

.devlip-site .thm-btn.agency-btn .arrow {
  padding: 6px 14px 6px 4px !important;
  display: inline-flex !important;
  align-items: center;
}

.devlip-site .thm-btn.agency-btn .arrow-icon {
  background: rgba(0, 0, 0, 0.22) !important;
}

.devlip-site .thm-btn.agency-btn:hover,
.devlip-site a.thm-btn.agency-btn:hover {
  background: #ff2a22 !important;
  border-color: #ff2a22 !important;
  color: #fff !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 14px 34px rgba(225, 6, 0, 0.4) !important;
}

.devlip-site .thm-btn.agency-btn:hover .text,
.devlip-site .thm-btn.agency-btn:hover .arrow {
  background: transparent !important;
  border-radius: 0 !important;
  color: #fff !important;
}

.devlip-site .header-btn .thm-btn:not(.agency-btn) {
  overflow: hidden !important;
}

.devlip-site .header-btn .thm-btn:not(.agency-btn):hover {
  transform: translateY(-2px);
}

.devlip-site .yt-live-badge,
.devlip-site .yt-growth,
.devlip-site .yt-kpi-growth,
.devlip-site .yt-live-live,
.devlip-site .yt-lux__tag {
  color: #ff4d4d;
}

.devlip-site .yt-live-dot,
.devlip-site .yt-live-live i {
  color: #e10600;
}

.devlip-site .yt-footer__topline {
  background: linear-gradient(90deg, transparent, #e10600, transparent);
}

.devlip-site .yt-footer__watermark {
  opacity: 0.04;
  letter-spacing: 0.12em;
  font-size: clamp(48px, 9vw, 120px) !important;
  line-height: 0.7 !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
  transform: none !important;
}

.devlip-site .yt-footer__bottom {
  padding: 18px 0 16px !important;
}

.devlip-site .yt-footer .container {
  padding-bottom: 0 !important;
}

.devlip-site .yt-footer__grid {
  padding-bottom: 28px !important;
}
@media (min-width: 992px) {
  .devlip-site .yt-footer__grid {
    grid-template-columns: 1.3fr 0.8fr 0.8fr 1fr !important;
  }
}

/* Home hero — same look, centered, no video */
.devlip-site .yt-hero-centered {
  display: flex;
  align-items: center;
  min-height: 100vh;
  min-height: 100dvh;
  padding-top: 120px;
  padding-bottom: 80px;
}

.devlip-site .yt-hero-centered .hero-content {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.devlip-site .yt-hero-centered .hero-content .title,
.devlip-site .yt-hero-centered .hero-content .sub-title {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.devlip-site .yt-hero-centered .hero-content .sub-title {
  max-width: 36rem;
}

.devlip-site .yt-hero-centered .hero-btn {
  display: flex;
  justify-content: center;
}

.devlip-site .yt-hero-centered .hero-content .title {
  font-family: "Space Grotesk", sans-serif !important;
  font-weight: 600 !important;
  letter-spacing: -0.03em !important;
  line-height: 1.12 !important;
  max-width: 16ch;
  margin-left: auto;
  margin-right: auto;
}

.devlip-site .yt-hero-centered .hero-content .sub-title {
  font-family: "Manrope", sans-serif !important;
  font-weight: 400 !important;
  line-height: 1.7 !important;
}

/* Niches strip — tight, no huge gap before reviews */
.devlip-site section.industries.devlip-niches {
  padding-top: clamp(60px, 7vw, 90px) !important;
  padding-bottom: clamp(40px, 5vw, 60px) !important;
}

/* ── Sexy DEVLIP reviews — tight top, no empty void ── */
.devlip-site .devlip-reviews {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-top: clamp(28px, 3.5vw, 48px) !important;
  padding-bottom: clamp(80px, 9vw, 120px) !important;
}

.devlip-site .devlip-reviews__glow {
  position: absolute;
  top: 0;
  left: 50%;
  width: min(560px, 80vw);
  height: 220px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse, rgba(225, 6, 0, 0.18), transparent 72%);
  pointer-events: none;
  z-index: 0;
  filter: blur(6px);
}

.devlip-site .devlip-reviews .container,
.devlip-site .devlip-reviews .xb-testimonial-slider {
  position: relative;
  z-index: 1;
}

.devlip-site .devlip-reviews .sec-title .sub-title {
  color: #e10600 !important;
  letter-spacing: 0.16em;
  font-weight: 700;
}

.devlip-site .devlip-reviews .sec-title .title {
  font-family: "Space Grotesk", sans-serif !important;
  font-weight: 600 !important;
  letter-spacing: -0.03em !important;
  line-height: 1.15 !important;
  max-width: 18ch;
  margin-left: auto;
  margin-right: auto;
}

.devlip-site .devlip-reviews__brand {
  color: #e10600 !important;
}

.devlip-site .devlip-reviews__lead {
  margin: 16px auto 0;
  max-width: 32rem;
  font-family: "Manrope", sans-serif;
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.55);
}

.devlip-site .devlip-reviews .xb-testimonial-item .xb-item--inner {
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.045) 0%, transparent 42%),
    linear-gradient(209deg, rgba(22, 22, 26, 0.98) 0%, rgba(8, 8, 10, 0.96) 100%) !important;
  border: 1px solid rgba(225, 6, 0, 0.28) !important;
  border-radius: 20px !important;
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.06) !important;
  padding: 36px 32px !important;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.3s ease, box-shadow 0.4s ease;
  min-height: 280px;
  display: flex;
  flex-direction: column;
}

.devlip-site .devlip-reviews .xb-testimonial-item .xb-item--inner:hover {
  transform: translateY(-8px);
  border-color: rgba(225, 6, 0, 0.5) !important;
  box-shadow:
    0 32px 70px rgba(225, 6, 0, 0.14),
    0 24px 60px rgba(0, 0, 0, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.08) !important;
}

.devlip-site .devlip-reviews .xb-item--rating {
  gap: 6px !important;
  margin-bottom: 22px !important;
  align-items: center;
}

.devlip-site .devlip-reviews .xb-item--rating li i {
  color: #e10600 !important;
  font-size: 0.85rem;
}

.devlip-site .devlip-reviews__score {
  margin-left: 8px !important;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: #fff !important;
  letter-spacing: 0.04em;
}

.devlip-site .devlip-reviews .xb-item--content {
  font-family: "Manrope", sans-serif !important;
  font-size: 1.08rem !important;
  line-height: 1.7 !important;
  color: rgba(255, 255, 255, 0.88) !important;
  margin-bottom: auto !important;
  flex: 1;
}

.devlip-site .devlip-reviews .xb-item--author {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  gap: 14px;
}

.devlip-site .devlip-reviews .xb-item--avatar {
  width: 52px !important;
  height: 52px !important;
  border-radius: 14px !important;
  border: 1px solid rgba(225, 6, 0, 0.4) !important;
  overflow: hidden;
  box-shadow: 0 0 0 3px rgba(225, 6, 0, 0.12);
}

.devlip-site .devlip-reviews .xb-item--name {
  font-family: "Space Grotesk", sans-serif !important;
  font-weight: 600 !important;
  font-size: 1.05rem !important;
  color: #fff !important;
  margin: 0 0 4px !important;
}

.devlip-site .devlip-reviews .xb-item--desig {
  font-family: "Manrope", sans-serif !important;
  font-size: 0.8rem !important;
  color: #e10600 !important;
  letter-spacing: 0.04em;
  font-weight: 600;
}

/* Team page — CEO spotlight + department member grids */
.devlip-ceo-spotlight {
  display: grid;
  grid-template-columns: minmax(220px, 320px) 1fr;
  gap: 48px;
  align-items: center;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--fl-line, rgba(255, 255, 255, 0.08));
  border-radius: 24px;
  padding: 40px;
}
.devlip-ceo-spotlight__photo {
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
}
.devlip-ceo-spotlight__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.devlip-ceo-spotlight__role {
  display: inline-block;
  margin: 6px 0 18px;
  color: var(--color-primary, #e10600);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.85rem;
}
.devlip-team-dept {
  margin-top: 64px;
}
.devlip-team-dept__head {
  margin-bottom: 32px;
}
.devlip-team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
}
.devlip-team-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--fl-line, rgba(255, 255, 255, 0.08));
  border-radius: 18px;
  padding: 22px;
  text-align: center;
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.devlip-team-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.2);
}
.devlip-team-card__photo {
  width: 108px;
  height: 108px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 16px;
  border: 2px solid rgba(255, 255, 255, 0.12);
}
.devlip-team-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.devlip-team-card h4 {
  margin: 0 0 4px;
  font-size: 1.05rem;
  color: #fff;
}
.devlip-team-card__role {
  display: block;
  color: var(--color-primary, #e10600);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.devlip-team-card p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.62);
  margin: 0;
}
@media (max-width: 767px) {
  .devlip-ceo-spotlight {
    grid-template-columns: 1fr;
    padding: 28px;
    gap: 24px;
  }
}

/* Non-clickable category labels inside the Services dropdown */
.devlip-menu-heading,
.devlip-nav-heading {
  pointer-events: none;
  margin: 14px 20px 6px !important;
  padding: 0 18px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-primary);
  opacity: 0.85;
}
.devlip-menu-heading:first-child,
.devlip-nav-heading:first-child {
  margin-top: 0 !important;
}

/* Footer "What We Do" — explicit Business Systems / Web & Growth columns (matches the nav grouping) */
.devlip-footer-services {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 28px;
}
@media (max-width: 991px) {
  .devlip-footer-services {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 480px) {
  .devlip-footer-services {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}
.devlip-footer-services__heading {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-primary, #c41227);
  opacity: 0.85;
  margin: 0 0 14px;
}
.devlip-footer-services__heading--more {
  margin-top: 8px;
}
.devlip-footer-service-group {
  margin-bottom: 18px;
}
.devlip-footer-service-group > a {
  display: block;
  font-size: 14.5px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 8px;
  transition: color 0.25s;
}
.devlip-footer-service-group > a:hover {
  color: var(--color-primary, #e10600);
}
.devlip-footer-service-group ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.devlip-footer-service-group ul li {
  margin-bottom: 6px !important;
}
.devlip-footer-service-group ul li a {
  font-size: 13px !important;
  font-weight: 400 !important;
  color: rgba(255, 255, 255, 0.55) !important;
  padding-left: 0 !important;
}
.devlip-footer-service-group ul li a::before {
  display: none !important;
}
.devlip-footer-service-group ul li a:hover {
  color: var(--color-primary, #e10600) !important;
}
@media (max-width: 767px) {
  .devlip-footer-services {
    grid-template-columns: 1fr;
  }
}

/* Official platform badges (icon-based, no trademarked screenshots/logos as images) */
.devlip-platform-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin: 30px 0 6px;
}
.devlip-platform-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.03);
  color: var(--color-white);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
}
.devlip-platform-badge i {
  font-size: 20px;
  color: var(--color-primary);
}
.devlip-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.04);
  color: var(--color-white);
  font-weight: 600;
  font-size: 13px;
  margin-bottom: 14px;
}
.devlip-hero-badge i {
  font-size: 16px;
  color: var(--color-primary);
}

/* Nested "E-commerce" services flyout (desktop) */
.main-menu > ul > li .submenu > li.menu-item-has-children {
  position: relative;
}
.main-menu > ul > li .submenu > li.menu-item-has-children > .submenu {
  margin-top: -20px;
}
.main-menu > ul > li .submenu > li.menu-item-has-children:hover > .submenu {
  opacity: 1;
  visibility: visible;
}

/* Nested "E-commerce" sub-services (mobile flat list, visually grouped) */
.xb-menu-primary .devlip-nav-sub > a,
.xb-header-nav .devlip-nav-sub > a {
  padding-left: 28px !important;
  font-size: 13px !important;
  opacity: 0.82;
  position: relative;
}
.xb-menu-primary .devlip-nav-sub > a::before,
.xb-header-nav .devlip-nav-sub > a::before {
  content: "\2013";
  position: absolute;
  left: 14px;
}
.xb-menu-primary .devlip-nav-sub.active > a,
.xb-header-nav .devlip-nav-sub.active > a {
  opacity: 1;
  color: var(--color-primary);
}

/* Same grouping treatment for the footer "What We Do" list */
.yt-footer .devlip-nav-sub {
  padding-left: 16px;
  position: relative;
}
.yt-footer .devlip-nav-sub::before {
  content: "\2013";
  position: absolute;
  left: 0;
  opacity: 0.6;
}

@media (max-width: 767px) {
  .devlip-site .devlip-reviews {
    padding-top: 24px !important;
    padding-bottom: 64px !important;
  }
  .devlip-site .devlip-reviews .xb-testimonial-item .xb-item--inner {
    min-height: 0;
    padding: 28px 22px !important;
  }
  .devlip-site .xb-header-logo img {
    max-height: 48px;
  }
  .devlip-site .yt-lux__logo img {
    width: min(280px, 78vw) !important;
    filter: none !important;
  }
}

/* Who We Help — industries section */
.devlip-who-help {
  background: #0a0b0f;
  padding: 100px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.devlip-who-help__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 60px;
  max-width: 760px;
  margin: 0 auto;
}
.devlip-who-help__item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.82);
  font-size: 17px;
  font-weight: 600;
  transition: color 0.25s ease, padding-left 0.25s ease;
}
.devlip-who-help__item i {
  color: #e10600;
  font-size: 13px;
  flex-shrink: 0;
}
a.devlip-who-help__item:hover {
  color: #ffffff;
  padding-left: 10px;
}
@media (max-width: 640px) {
  .devlip-who-help { padding: 64px 0; }
  .devlip-who-help__grid { grid-template-columns: 1fr; gap: 0; }
}