/* Floating AI assistant chat bubble — single persistent contact entry point (no more stacked buttons) */
.devlip-chat-float {
  position: fixed;
  left: 24px;
  bottom: 24px;
  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: 16px; }
  .devlip-chat-float__label { display: none; }
}

/* Mobile sticky conversion bar — Call / WhatsApp / Book, mobile only. */
.devlip-sticky-cta {
  display: none;
}

@media (max-width: 767px) {
  .devlip-sticky-cta {
    display: flex;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 997;
    background: #0c0c0f;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 8px calc(8px + env(safe-area-inset-bottom, 0px));
    gap: 8px;
  }
  .devlip-sticky-cta__btn {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    padding: 8px 4px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.04);
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.01em;
    min-height: 44px;
  }
  .devlip-sticky-cta__btn i {
    font-size: 16px;
  }
  .devlip-sticky-cta__btn--primary {
    background: linear-gradient(135deg, #e10600, #8b0f1c);
  }
  .devlip-sticky-cta__btn--whatsapp i {
    color: #25d366;
  }
  .devlip-sticky-cta__btn--primary i {
    color: #fff;
  }

  /* Push the chat bubble and back-to-top button above the sticky bar so
     nothing overlaps, and give scrollable content room at the bottom so the
     bar never permanently hides the last bit of the footer. */
  .devlip-chat-float { bottom: 78px; }
  .devlip-chat-panel { bottom: 144px; }
  .xb-backtotop { bottom: 78px !important; }
  /* Real bug fix: the sticky bar itself is genuinely 80px tall (8px + icon
     + label + 8px, measured directly), but this reserved only 64px — a
     real 16px shortfall that hid the last ~16px of every mobile page
     behind the bar. That's exactly where the contact page's "Service
     Interest" dropdown sits, making it unclickable/unselectable on mobile
     and silently blocking that form's submission. Matches the bar's own
     safe-area-inset-bottom addition so notched phones (iPhone home
     indicator) stay correctly clear too. */
  body.devlip-site { padding-bottom: calc(84px + env(safe-area-inset-bottom, 0px)); }
}

@media (max-width: 480px) {
  .devlip-chat-float { bottom: 72px; }
  .devlip-chat-panel { bottom: 138px; }
  .xb-backtotop { bottom: 72px !important; }
}

/* Chat panel */
.devlip-chat-panel {
  position: fixed;
  left: 24px;
  bottom: 92px;
  z-index: 1000;
  width: 340px;
  max-width: calc(100vw - 48px);
  max-height: min(70vh, 540px);
  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;
}
@media (max-width: 480px) {
  .devlip-chat-panel { left: 16px; bottom: 82px; }
}
.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-bubble--faq {
  border: 1px solid rgba(225, 6, 0, 0.3);
  background: linear-gradient(165deg, rgba(225, 6, 0, 0.08), transparent 60%), #1b1c25;
}
.devlip-chat-bubble__source {
  display: inline-block;
  margin-top: 8px;
  color: #ff6b7a;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
}
.devlip-chat-bubble__source:hover {
  text-decoration: underline;
}
.devlip-chat-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 2px;
}
.devlip-chat-actions__btn {
  display: block;
  text-align: center;
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  background: #1b1c25;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.devlip-chat-actions__btn.is-primary {
  background: #25d366;
  color: #06210f;
  border-color: transparent;
}
.devlip-chat-panel__quick {
  display: none;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0 14px 12px;
  flex-shrink: 0;
}
.devlip-chat-chip {
  background: #1b1c25;
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #e4e4e8;
  font-size: 12.5px;
  font-weight: 600;
  padding: 7px 12px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease;
}
.devlip-chat-chip:hover {
  background: #c41227;
  border-color: #c41227;
  color: #fff;
}
.devlip-chat-panel__foot {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  flex-shrink: 0;
}
.devlip-chat-panel__row {
  display: flex;
  gap: 8px;
}
.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;
  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.
   Specificity must beat ytwealth.css's ".ai-agency .xb-contact-item .xb-item--number"
   (3 classes) at the 767px breakpoint, or that rule wins and resets the size to 48px. */
.devlip-stat-4digit,
.ai-agency .xb-contact-item .xb-item--number.devlip-stat-4digit {
  font-size: 50px !important;
  white-space: nowrap;
}
@media (max-width: 1199px) {
  .devlip-stat-4digit,
  .ai-agency .xb-contact-item .xb-item--number.devlip-stat-4digit { font-size: 46px !important; }
}
@media only screen and (max-width: 1023px) {
  .devlip-stat-4digit,
  .ai-agency .xb-contact-item .xb-item--number.devlip-stat-4digit { font-size: 36px !important; }
}
@media only screen and (max-width: 767px) {
  .devlip-stat-4digit,
  .ai-agency .xb-contact-item .xb-item--number.devlip-stat-4digit { font-size: 30px !important; }
}
@media only screen and (max-width: 400px) {
  .devlip-stat-4digit,
  .ai-agency .xb-contact-item .xb-item--number.devlip-stat-4digit { font-size: 26px !important; }
}

/* Homepage services accordion on mobile: main.css stacks every service full-height
   (each card forced open, ~635-810px tall) — with 18 services that's 11,000px+ of
   scrolling. Turn it into a horizontal swipe carousel instead. */
@media (max-width: 767px) {
  .ai-agency .xb-service-wrap {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    gap: 14px;
    padding: 4px 4px 14px;
  }
  .ai-agency .xb-service-wrap::-webkit-scrollbar { display: none; }
  .ai-agency .xb-service-item {
    width: 84vw !important;
    min-width: 84vw !important;
    max-width: 360px;
    flex: 0 0 auto !important;
    scroll-snap-align: start;
    height: auto !important;
    min-height: 480px;
  }
  .ai-agency .xb-service-item .xb-item--item {
    padding: 32px 22px 28px;
  }
  .ai-agency .xb-service-item .xb-item--img img {
    max-height: 160px !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: #ff6b7a;
}

.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.1fr 0.7fr 2.8fr 0.9fr !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 — department member grid */
.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;
}

/* Service directory in the footer: every service stays visible without turning
   the footer into one long, difficult-to-scan list. */
.yt-footer__col:has(.devlip-footer-services) {
  min-width: 0;
}
.devlip-footer-services {
  display: grid;
  grid-template-columns: repeat(3, minmax(150px, 1fr));
  gap: 14px;
  width: 100%;
}
.devlip-footer-services__col {
  min-width: 0;
  padding: 18px 16px 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.035);
}
.devlip-footer-services__heading {
  display: flex;
  align-items: center;
  min-height: 28px;
  margin: 0 0 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 13px;
  letter-spacing: 0.1em;
}
.devlip-footer-services__heading--more {
  margin: 16px 0 10px;
}
.devlip-footer-service-group {
  margin: 0 0 12px;
}
.devlip-footer-service-group > a {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 14.5px;
  font-weight: 400;
  line-height: 1.35;
}
.devlip-footer-service-group > a:hover,
.devlip-footer-service-group > a:focus-visible {
  color: #fff;
  text-decoration: underline;
  text-decoration-color: var(--color-primary, #e10600);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}
.devlip-footer-service-group ul {
  margin-top: 7px;
}
.devlip-footer-service-group ul li {
  margin-bottom: 5px !important;
}
.devlip-footer-service-group ul li a {
  display: block;
  font-size: 14.5px !important;
  font-weight: 400 !important;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.92) !important;
}
.devlip-footer-service-group ul li a:hover,
.devlip-footer-service-group ul li a:focus-visible {
  color: #fff !important;
}
.yt-footer__col a:focus-visible {
  outline: 2px solid var(--color-primary, #e10600);
  outline-offset: 4px;
  border-radius: 2px;
}
@media (min-width: 1200px) {
  .yt-footer__grid {
    grid-template-columns: minmax(210px, 1.05fr) minmax(120px, 0.55fr) minmax(490px, 2.5fr) minmax(180px, 0.9fr);
    gap: 28px;
  }
}
@media (max-width: 991px) {
  .yt-footer__col:has(.devlip-footer-services) {
    grid-column: 1 / -1;
  }
  .devlip-footer-services {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 640px) {
  .devlip-footer-services {
    display: flex;
    grid-template-columns: unset;
    flex-wrap: nowrap;
    gap: 12px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin: 0 -4px;
    padding: 0 4px 6px;
    -webkit-mask-image: linear-gradient(to right, #000 calc(100% - 24px), transparent 100%);
    mask-image: linear-gradient(to right, #000 calc(100% - 24px), transparent 100%);
  }
  .devlip-footer-services::-webkit-scrollbar {
    display: none;
  }
  .devlip-footer-services__col {
    flex: 0 0 84%;
    max-width: 320px;
    scroll-snap-align: start;
    padding: 16px;
  }
}

/* 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);
}
.yt-footer__cta {
  align-self: flex-start;
  width: fit-content;
  max-width: max-content;
  margin: 6px 0 20px;
  padding: 13px 26px !important;
  font-size: 12px !important;
  letter-spacing: 0.08em;
  border-radius: 999px !important;
  white-space: nowrap;
  background: linear-gradient(135deg, #e10600 0%, #c41227 48%, #8f0d1c 100%) !important;
  box-shadow:
    0 10px 28px rgba(196, 18, 39, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}
.yt-footer__contact li:last-child i {
  color: var(--color-primary, #e10600);
}
.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;
  }

  /* Defensive fallback: if the preloader JS ever fails to fire on a mobile
     browser, force it out of the way after a fixed max duration so it can
     never block scrolling or leave a stuck empty block in the page. */
  .devlip-site .preloader.yt-lux {
    animation: devlipForceHidePreloader 0.4s ease 4s forwards;
  }
  @keyframes devlipForceHidePreloader {
    to { opacity: 0; visibility: hidden; pointer-events: none; }
  }
}

/* Keyboard focus visibility — restores a visible indicator for keyboard nav only,
   without re-introducing the mouse-click focus ring main.css intentionally removed. */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
summary:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid #e10600 !important;
  outline-offset: 3px !important;
  border-radius: 4px;
}

.devlip-chat-float__btn:focus-visible,
.devlip-chat-panel__close:focus-visible,
.devlip-chat-panel__send:focus-visible {
  outline: 2px solid #e10600 !important;
  outline-offset: 3px !important;
}

/* Mobile nav drawer: the Services submenu expands to ~36 items, taller than
   100vh. The drawer itself clips overflow, but nothing made the inner
   scroll container actually scroll, so expanded items were unreachable. */
.xb-header-menu-scroll {
  height: 100%;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

/* Hide the floating chat launcher while a visitor is actively filling out
   a lead form, on every page — a fixed-position button will otherwise
   overlap whatever form field happens to scroll under it. */
body:has(form[action="leads.php"]:focus-within) .devlip-chat-float {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

/* Back-to-top button removed per request. */
.xb-backtotop {
  display: none !important;
}

/* Paired with devlip-tracking.js's footer IntersectionObserver — fades the
   chat launcher out once the footer (with its Privacy Policy / Terms
   links) scrolls into view, so it never sits on top of them. */
.devlip-chat-float.is-near-footer {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

/* Quick-contact panel form fields (replaces the old conversational chat UI). */
.devlip-chat-panel__form {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
}
.devlip-chat-field {
  padding: 0 18px 14px;
}
.devlip-chat-field label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #9a9ba6;
  margin-bottom: 6px;
}
.devlip-chat-field input,
.devlip-chat-field select,
.devlip-chat-field textarea {
  width: 100%;
  background: #1b1c25;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 10px 12px;
  color: #fff;
  font-size: 13.5px;
  font-family: inherit;
}
.devlip-chat-field textarea {
  resize: vertical;
  min-height: 44px;
}
.devlip-chat-field input:focus,
.devlip-chat-field select:focus,
.devlip-chat-field textarea:focus {
  outline: 2px solid #c41227;
  outline-offset: 1px;
}
.devlip-chat-panel__submit {
  display: block;
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: none;
  background: #c41227;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
}
.devlip-chat-panel__submit:hover {
  background: #e10600;
}

/* Fiverr trust badge — kept in Fiverr's own light branding (not the site's
   dark theme) so it reads as an authentic, recognizable platform badge
   rather than a re-skinned imitation. Real stats confirmed by the user. */
.devlip-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin: 24px auto 0;
  padding: 14px 22px;
  background: #fff;
  border-radius: 14px;
  text-decoration: none;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
  transition: transform 0.2s ease;
}
.devlip-trust-badge:hover {
  transform: translateY(-2px);
}
.devlip-trust-badge__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  background: #1dbf73;
  color: #fff;
  font-weight: 800;
  font-size: 15px;
  border-radius: 10px;
}
.devlip-trust-badge__body {
  display: flex;
  flex-direction: column;
  gap: 3px;
  text-align: left;
}
.devlip-trust-badge__seller {
  align-self: flex-start;
  background: rgba(29, 191, 115, 0.14);
  color: #1dbf73;
  font-size: 12px;
  font-weight: 700;
  padding: 2px 9px;
  border-radius: 999px;
}
.devlip-trust-badge__brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #1a1a1a;
  font-weight: 800;
  font-size: 17px;
}
.devlip-trust-badge__dot { color: #1dbf73; }
.devlip-trust-badge__stars {
  display: inline-flex;
  gap: 1px;
  color: #ffb800;
  font-size: 12px;
}
.devlip-trust-badge__reviews {
  color: #6b6b6b;
  font-size: 12.5px;
  text-decoration: underline;
}
@media (max-width: 480px) {
  .devlip-trust-badge {
    padding: 12px 16px;
    gap: 10px;
  }
  .devlip-trust-badge__brand {
    font-size: 15px;
  }
}

/* Wrapper so the Fiverr + Upwork badges sit side by side, matching visual
   weight. Upwork badge intentionally has no stats/score yet — real
   numbers pending, not invented (see Fiverr badge comment above). */
.devlip-trust-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
}
.devlip-trust-badges .devlip-trust-badge {
  margin-top: 0;
}
.devlip-trust-badge__icon--upwork {
  background: #14a800;
}
.devlip-trust-badge__brand--upwork {
  font-size: 17px;
  margin-top: 2px;
}

.devlip-trust-badge__seller--upwork {
  background: rgba(20, 168, 0, 0.14);
  color: #14a800;
}

/* ── Design tokens ──────────────────────────────────────────────────────
   Formalizes values already established across the site (brand red scale,
   card radii, shadow depths) as named custom properties, so new work has a
   single source of truth to reference instead of re-deriving the same
   numbers. Declaring these changes nothing on its own — see the two rule
   blocks below for where they're actually put to use. */
:root {
  --devlip-radius-sm: 10px;
  --devlip-radius-md: 14px;
  --devlip-radius-lg: 20px;
  --devlip-radius-pill: 999px;

  --devlip-shadow-card: 0 24px 60px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  --devlip-shadow-card-hover: 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);
  --devlip-shadow-cta: 0 10px 28px rgba(225, 6, 0, 0.32);

  --devlip-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ── Advanced Money Calculator — sliders, niche chips, stat cards ── */
.devlip-money-sliders {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px 28px;
  margin-bottom: 22px;
}
@media (max-width: 640px) {
  .devlip-money-sliders { grid-template-columns: 1fr; }
}
.devlip-money-slider__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 8px;
}
.devlip-money-slider__head label {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.72);
}
.devlip-money-slider__head output {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: #ff6b7a;
}
.devlip-money-slider input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  border-radius: var(--devlip-radius-pill);
  background: rgba(255, 255, 255, 0.12);
  outline: none;
  cursor: pointer;
  accent-color: #e10600;
}
.devlip-money-slider input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid #e10600;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
  cursor: pointer;
  transition: transform 0.15s ease;
}
.devlip-money-slider input[type="range"]::-webkit-slider-thumb:hover {
  transform: scale(1.12);
}
.devlip-money-slider input[type="range"]::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid #e10600;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
  cursor: pointer;
}
.devlip-money-slider input[type="range"]::-moz-range-track {
  height: 6px;
  border-radius: var(--devlip-radius-pill);
  background: rgba(255, 255, 255, 0.12);
}

.devlip-money-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 10px;
}
.devlip-money-chips {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 10px;
  margin-bottom: 22px;
}
.devlip-money-chip {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  padding: 12px 16px;
  border-radius: var(--devlip-radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  cursor: pointer;
  text-align: left;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s var(--devlip-ease);
}
.devlip-money-chip:hover {
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}
.devlip-money-chip__name {
  font-size: 13.5px;
  font-weight: 700;
  color: #fff;
}
.devlip-money-chip__rpm {
  font-size: 12px;
  font-weight: 600;
  color: #ff6b7a;
}
.devlip-money-chip.is-active {
  border-color: #e10600;
  background: linear-gradient(165deg, rgba(225, 6, 0, 0.14), transparent 70%), rgba(225, 6, 0, 0.06);
  box-shadow: 0 0 0 1px rgba(225, 6, 0, 0.4);
}

.devlip-money-optional {
  margin-bottom: 8px;
}
.devlip-money-optional label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 8px;
}
/* .yt-tag-tool__input's dark styling only applies inside a
   .yt-tag-tool__input-row wrapper (ytwealth-inner.css) -- this field lives
   outside that row, so it fell through to main.css's plain light-gray
   input reset. Style it directly instead of forcing an unrelated wrapper. */
.devlip-money-optional input {
  width: 100%;
  height: auto !important;
  padding: 12px 16px !important;
  background: rgba(255, 255, 255, 0.04) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  border-radius: var(--devlip-radius-sm) !important;
  color: #fff !important;
  font-size: 14.5px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.devlip-money-optional input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}
.devlip-money-optional input:focus {
  border-color: rgba(225, 6, 0, 0.6) !important;
  box-shadow: 0 0 0 4px rgba(225, 6, 0, 0.12);
}

.devlip-money-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
@media (max-width: 640px) {
  .devlip-money-stats { grid-template-columns: 1fr; }
}
.devlip-money-stat {
  padding: 18px 16px;
  border-radius: var(--devlip-radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  text-align: center;
}
.devlip-money-stat span {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 8px;
}
.devlip-money-stat b {
  font-family: "Space Grotesk", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
}
.devlip-money-stat--accent {
  border-color: rgba(225, 6, 0, 0.5);
  background: linear-gradient(165deg, rgba(225, 6, 0, 0.14), transparent 70%), rgba(225, 6, 0, 0.06);
}
.devlip-money-stat--accent b {
  color: #ff6b7a;
}

/* ── Card hover consistency ─────────────────────────────────────────────
   Feature/service/industries cards only changed border-color on hover
   (ytwealth.css:542-548) while testimonial cards already got a full
   lift + glow treatment. Bringing the flatter set up to the same standard
   used elsewhere on the site, not inventing a new pattern. */
.ai-agency .xb-feature-item .xb-item--inner,
.ai-agency .xb-service-item,
.ai-agency .xb-industries-item {
  transition: transform 0.4s var(--devlip-ease), border-color 0.3s ease, box-shadow 0.4s ease;
}
.ai-agency .xb-feature-item .xb-item--inner:hover,
.ai-agency .xb-service-item:hover,
.ai-agency .xb-industries-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--devlip-shadow-card-hover);
}

/* ── Interactive Homepage Revenue & RPM Calculator ────────────────── */
.devlip-live-calc {
  position: relative;
  padding: 100px 0;
  background: #07070b;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.devlip-live-calc__wrap {
  max-width: 1050px;
  margin: 0 auto;
  background: rgba(16, 17, 24, 0.85);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 28px;
  padding: 48px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}
@media (max-width: 767px) {
  .devlip-live-calc__wrap { padding: 24px 18px; border-radius: 20px; }
}
.devlip-live-calc__header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 40px;
}
.devlip-live-calc__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(225, 6, 0, 0.12);
  border: 1px solid rgba(225, 6, 0, 0.3);
  color: #ff6b7a;
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}
.devlip-live-calc__title {
  font-family: "Space Grotesk", sans-serif;
  font-size: 34px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}
@media (max-width: 767px) {
  .devlip-live-calc__title { font-size: 26px; }
}
.devlip-live-calc__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 36px;
  align-items: stretch;
}
@media (max-width: 991px) {
  .devlip-live-calc__grid { grid-template-columns: 1fr; }
}
.devlip-live-calc__slider-box {
  margin-bottom: 28px;
}
.devlip-live-calc__slider-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}
.devlip-live-calc__slider-head label {
  font-weight: 600;
  font-size: 14px;
  color: #fff;
  margin: 0;
}
.devlip-live-calc__slider-val {
  font-family: "Space Grotesk", monospace;
  font-weight: 700;
  font-size: 18px;
  color: #ff6b7a;
}
.devlip-live-calc__range {
  width: 100%;
  height: 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.12);
  outline: none;
  cursor: pointer;
  accent-color: #e10600;
}
.devlip-live-calc__niches {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
@media (max-width: 575px) {
  .devlip-live-calc__niches { grid-template-columns: repeat(2, 1fr); }
}
.devlip-live-calc__niche-btn {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 12px;
  text-align: left;
  cursor: pointer;
  transition: all 0.2s ease;
  color: #fff;
}
.devlip-live-calc__niche-btn:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.2);
}
.devlip-live-calc__niche-btn.active {
  background: rgba(225, 6, 0, 0.16);
  border-color: #e10600;
  box-shadow: 0 0 16px rgba(225, 6, 0, 0.25);
}
.devlip-live-calc__niche-name {
  display: block;
  font-size: 12px;
  font-weight: 600;
}
.devlip-live-calc__niche-rpm {
  display: block;
  font-size: 12px;
  font-family: monospace;
  color: #ff6b7a;
  margin-top: 2px;
}
.devlip-live-calc__result-panel {
  background: linear-gradient(165deg, rgba(225, 6, 0, 0.16) 0%, rgba(13, 14, 20, 0.9) 100%);
  border: 1px solid rgba(225, 6, 0, 0.4);
  border-radius: 20px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.devlip-live-calc__res-kicker {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.6);
}
.devlip-live-calc__res-main {
  font-family: "Space Grotesk", sans-serif;
  font-size: 42px;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin: 8px 0 16px;
}
.devlip-live-calc__res-main span {
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
}
.devlip-live-calc__breakdown {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 16px;
  margin-bottom: 24px;
}
.devlip-live-calc__row {
  display: flex;
  justify-content: space-between;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 8px;
}
.devlip-live-calc__row b {
  color: #fff;
  font-family: monospace;
}
.devlip-live-calc__row--total {
  border-top: 1px dashed rgba(255, 255, 255, 0.15);
  padding-top: 8px;
  margin-top: 8px;
  font-weight: 700;
  color: #fff;
}
.devlip-live-calc__row--total b {
  color: #f5c451;
  font-size: 14px;
}
.devlip-live-calc__cta {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, #e10600, #8b0f1c);
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  padding: 14px 20px;
  border-radius: 100px;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(225, 6, 0, 0.35);
  transition: all 0.2s ease;
}
.devlip-live-calc__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(225, 6, 0, 0.5);
  color: #fff;
}

/* ── Structured SEO FAQ Accordion ─────────────────────────────────── */
.devlip-faq-sec {
  padding: 110px 0;
  background: #090a0f;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.devlip-faq-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color 0.2s ease;
}
.devlip-faq-item:hover {
  border-color: rgba(225, 6, 0, 0.3);
}
.devlip-faq-btn {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  text-align: left;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  font-family: "Space Grotesk", sans-serif;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.devlip-faq-btn i {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4);
  transition: transform 0.25s ease, color 0.2s ease;
}
.devlip-faq-item.active .devlip-faq-btn i {
  transform: rotate(180deg);
  color: #ff6b7a;
}
.devlip-faq-body {
  display: none;
  padding: 0 24px 22px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.65;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding-top: 14px;
}
.devlip-faq-item.active .devlip-faq-body {
  display: block;
}

/* ── Hero CRO & Lead Conversion Enhancements ───────────────────────── */
.devlip-hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(225, 6, 0, 0.12);
  border: 1px solid rgba(225, 6, 0, 0.35);
  color: #ff6b7a;
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 24px;
  box-shadow: 0 4px 15px rgba(225, 6, 0, 0.15);
}
.devlip-hero-pill__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 10px #10b981;
  animation: devlipPulse 2s infinite;
}
@keyframes devlipPulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70% { transform: scale(1.1); box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.devlip-hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 32px;
}
.devlip-hero-btn--wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(37, 211, 102, 0.15);
  border: 1px solid rgba(37, 211, 102, 0.4);
  color: #25d366;
  font-weight: 700;
  font-size: 14px;
  padding: 14px 26px;
  border-radius: 100px;
  text-decoration: none;
  transition: all 0.25s ease;
}
.devlip-hero-btn--wa:hover {
  background: #25d366;
  color: #000;
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.35);
  transform: translateY(-2px);
}
.devlip-hero-btn--ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  padding: 14px 24px;
  border-radius: 100px;
  text-decoration: none;
  transition: all 0.25s ease;
}
.devlip-hero-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
  transform: translateY(-2px);
}

.devlip-hero-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 28px;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.7);
}
.devlip-hero-trust span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.devlip-hero-trust span i {
  color: #ff6b7a;
  font-size: 13px;
}


