/* ==========================================================================
   YRS Growth Engine Elementor Addons - Master Design Tokens & Styles
   ========================================================================== */

:root {
  --yrs-bg-deep: #0b0c10;
  --yrs-bg-card: #150714;
  --yrs-bg-card-alt: #180818;
  --yrs-bg-highlight: #20091e;
  --yrs-brand-primary: #dc2670;
  --yrs-brand-dark: #881337;
  --yrs-brand-light: #fb7185;
  --yrs-brand-accent: #f43f5e;
  --yrs-brand-emerald: #10b981;
  --yrs-text-primary: #f8fafc;
  --yrs-text-muted: #94a3b8;
  --yrs-text-light-muted: #cbd5e1;
  --yrs-border-subtle: rgba(220, 38, 112, 0.25);
  --yrs-border-hover: rgba(220, 38, 112, 0.8);
  --yrs-glow: 0 0 35px rgba(220, 38, 112, 0.4);
}

/* --------------------------------------------------------------------------
   General Wrapper & Typography Reset
   -------------------------------------------------------------------------- */
.yrs-growth-wrapper {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important;
  color: var(--yrs-text-primary);
  background-color: var(--yrs-bg-deep);
  box-sizing: border-box;
  position: relative;
  width: 100%;
}

.yrs-growth-wrapper *,
.yrs-growth-wrapper *::before,
.yrs-growth-wrapper *::after {
  box-sizing: border-box;
}

.yrs-growth-wrapper .yrs-font-display,
.yrs-font-display {
  font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important;
}

/* --------------------------------------------------------------------------
   STRICT SVG SIZING & ICON BOXES
   -------------------------------------------------------------------------- */
.yrs-growth-wrapper svg {
  display: inline-block !important;
  vertical-align: middle !important;
  flex-shrink: 0 !important;
  box-sizing: content-box !important;
  max-width: 100%;
}

.yrs-growth-wrapper svg.w-3, .yrs-growth-wrapper .w-3 svg { width: 12px !important; height: 12px !important; max-width: 12px !important; max-height: 12px !important; }
.yrs-growth-wrapper svg.w-3\.5, .yrs-growth-wrapper .w-3\.5 svg { width: 14px !important; height: 14px !important; max-width: 14px !important; max-height: 14px !important; }
.yrs-growth-wrapper svg.w-4, .yrs-growth-wrapper .w-4 svg { width: 16px !important; height: 16px !important; max-width: 16px !important; max-height: 16px !important; }
.yrs-growth-wrapper svg.w-5, .yrs-growth-wrapper .w-5 svg { width: 20px !important; height: 20px !important; max-width: 20px !important; max-height: 20px !important; }
.yrs-growth-wrapper svg.w-6, .yrs-growth-wrapper .w-6 svg { width: 24px !important; height: 24px !important; max-width: 24px !important; max-height: 24px !important; }
.yrs-growth-wrapper svg.w-8, .yrs-growth-wrapper .w-8 svg { width: 32px !important; height: 32px !important; max-width: 32px !important; max-height: 32px !important; }

/* --------------------------------------------------------------------------
   PREMIUM PILL SELECTORS (Service & Budget in Contact Form)
   -------------------------------------------------------------------------- */
.yrs-pill-btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0.6rem 1.15rem !important;
  border-radius: 9999px !important;
  font-size: 0.8125rem !important;
  font-weight: 500 !important;
  cursor: pointer !important;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  background-color: #151b24 !important;
  color: #cbd5e1 !important;
  outline: none !important;
  box-shadow: none !important;
}

.yrs-pill-btn:hover {
  color: #ffffff !important;
  background-color: #202936 !important;
  border-color: rgba(255, 255, 255, 0.18) !important;
}

.yrs-pill-btn.yrs-active {
  background-color: #ffffff !important;
  color: #0c1015 !important;
  font-weight: 700 !important;
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.25) !important;
  border-color: #ffffff !important;
  transform: translateY(-1px) !important;
}

/* Sleek minimal underlined inputs */
.yrs-underlined-input {
  width: 100% !important;
  background: transparent !important;
  border: none !important;
  border-bottom: 1px solid #334155 !important;
  border-radius: 0 !important;
  padding: 0.6rem 0 !important;
  font-size: 0.875rem !important;
  color: #ffffff !important;
  transition: border-color 0.2s ease !important;
  outline: none !important;
}

.yrs-underlined-input:focus {
  border-bottom-color: #ffffff !important;
}

.yrs-underlined-input::placeholder {
  color: #64748b !important;
}

/* --------------------------------------------------------------------------
   FAQ ACCORDION - CLEAN SINGLE CARD LOOK WITH CSS 45deg ROTATION
   -------------------------------------------------------------------------- */
.yrs-faq-icon-box {
  width: 32px !important;
  height: 32px !important;
  min-width: 32px !important;
  min-height: 32px !important;
  border-radius: 9999px !important;
  background-color: #1e0a1e !important;
  color: #fb7185 !important;
  border: 1px solid rgba(220, 38, 112, 0.3) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
  flex-shrink: 0 !important;
}

.yrs-faq-icon-box svg {
  width: 14px !important;
  height: 14px !important;
  stroke-width: 2.5 !important;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.yrs-faq-item {
  border: 1px solid rgba(220, 38, 112, 0.22) !important;
  background: #140614 !important;
  border-radius: 18px !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
  overflow: hidden !important;
  position: relative !important;
  box-sizing: border-box !important;
  width: 100% !important;
}

.yrs-faq-item:hover {
  background: #19081a !important;
  border-color: rgba(220, 38, 112, 0.5) !important;
  transform: translateY(-1px) !important;
}

.yrs-faq-item.yrs-active-faq {
  background: linear-gradient(180deg, #1d091e 0%, #110512 100%) !important;
  border-color: rgba(220, 38, 112, 0.75) !important;
  box-shadow: 0 10px 35px -5px rgba(220, 38, 112, 0.35) !important;
}

/* Strict reset and multi-line wrapping for FAQ header */
.yrs-faq-item button.yrs-faq-header,
.yrs-faq-item div.yrs-faq-header,
.yrs-faq-header {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  width: 100% !important;
  min-width: 0 !important;
  background: transparent !important;
  background-color: transparent !important;
  border: none !important;
  border-width: 0 !important;
  outline: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  margin: 0 !important;
  text-align: left !important;
  cursor: pointer !important;
  white-space: normal !important;
  word-break: break-word !important;
  overflow-wrap: break-word !important;
  line-height: normal !important;
  box-sizing: border-box !important;
  appearance: none !important;
  -webkit-appearance: none !important;
}

.yrs-faq-header:focus,
.yrs-faq-header:active,
.yrs-faq-header:hover {
  background: transparent !important;
  background-color: transparent !important;
  border: none !important;
  border-width: 0 !important;
  outline: none !important;
  box-shadow: none !important;
}

.yrs-faq-title-wrap {
  flex: 1 1 auto !important;
  min-width: 0 !important;
  max-width: calc(100% - 44px) !important;
  white-space: normal !important;
  word-break: break-word !important;
  overflow-wrap: break-word !important;
  box-sizing: border-box !important;
}

.yrs-faq-header *,
.yrs-faq-item * {
  box-sizing: border-box !important;
}

.yrs-faq-header h3,
.yrs-faq-item h3,
.yrs-growth-wrapper .yrs-faq-item h3 {
  margin: 0 !important;
  padding: 0 !important;
  white-space: normal !important;
  word-break: break-word !important;
  overflow-wrap: break-word !important;
  word-wrap: break-word !important;
  hyphens: auto !important;
  line-height: 1.35 !important;
  display: block !important;
  max-width: 100% !important;
}

.yrs-faq-item.yrs-active-faq .yrs-faq-icon-box {
  background-color: #dc2670 !important;
  border-color: #dc2670 !important;
  color: #ffffff !important;
  box-shadow: 0 0 15px rgba(220, 38, 112, 0.6) !important;
}

.yrs-faq-item.yrs-active-faq .yrs-faq-icon-box svg {
  transform: rotate(45deg) !important;
}

.yrs-faq-body {
  box-sizing: border-box !important;
}

.yrs-faq-body p {
  margin: 0 !important;
  word-break: break-word !important;
  overflow-wrap: break-word !important;
}

/* Brand Direct Image Logo Styling */
.yrs-brand-logo-img {
  display: block !important;
  width: auto !important;
  max-width: 100% !important;
  height: auto !important;
  object-fit: contain !important;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.yrs-brand-logo-img:hover {
  opacity: 0.95;
}

/* --------------------------------------------------------------------------
   YRS Sticky Navbar - Scoped, Self-Contained Styles
   -------------------------------------------------------------------------- */
.yrs-header-outer-wrapper {
  position: sticky;
  top: 0;
  z-index: 999;
  width: 100%;
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  box-sizing: border-box;
}

/* Top Announcement Bar */
.yrs-header-announcement-bar {
  width: 100%;
  background: #17050d;
  border-bottom: 1px solid rgba(220, 38, 112, 0.25);
  font-size: 12px;
  padding: 8px 16px;
  text-align: center;
  box-sizing: border-box;
  position: relative;
  z-index: 1000;
}
.yrs-announcement-content {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  color: #cbd5e1;
}
.yrs-announcement-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 2px 10px;
  border-radius: 9999px;
  background: rgba(220, 38, 112, 0.2);
  color: #fb7185;
  font-weight: 700;
  font-size: 11px;
  border: 1px solid rgba(220, 38, 112, 0.4);
  letter-spacing: 0.02em;
}
.yrs-announcement-ping {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fb7185;
  display: inline-block;
  box-shadow: 0 0 6px #fb7185;
}
.yrs-announcement-text {
  font-size: 12px;
  color: #e2e8f0;
}
.yrs-announcement-text strong {
  color: #ffffff;
  font-weight: 600;
}
.yrs-announcement-link {
  color: #fb7185 !important;
  font-weight: 600;
  text-decoration: underline !important;
  text-underline-offset: 3px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: color 0.2s ease;
}
.yrs-announcement-link:hover {
  color: #ffffff !important;
}

/* Main Navigation Bar */
.yrs-main-nav-bar {
  width: 100%;
  background: rgba(11, 12, 16, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(220, 38, 112, 0.22);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
  box-sizing: border-box;
}
.yrs-navbar-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  box-sizing: border-box;
}

/* Brand Logo Area */
.yrs-header-logo-wrap {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none !important;
}
.yrs-brand-logo-img {
  height: 38px;
  width: auto;
  object-fit: contain;
  display: block;
}
.yrs-fallback-logo-box {
  display: flex;
  align-items: center;
  gap: 10px;
}
.yrs-fallback-logo-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, #dc2670, #881337);
  padding: 2px;
  box-shadow: 0 0 18px rgba(220, 38, 112, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}
.yrs-fallback-logo-inner {
  width: 100%;
  height: 100%;
  background: #120512;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  color: #ffffff;
  font-size: 13px;
  font-family: monospace;
}
.yrs-fallback-logo-text {
  font-size: 20px;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 6px;
}
.yrs-fallback-logo-tag {
  font-size: 10px;
  font-weight: 700;
  color: #fb7185;
  background: rgba(220, 38, 112, 0.15);
  border: 1px solid rgba(220, 38, 112, 0.3);
  padding: 2px 6px;
  border-radius: 4px;
  font-family: monospace;
  text-transform: uppercase;
}

/* Desktop Floating Pill Navigation */
.yrs-nav-desktop-pill {
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(23, 8, 21, 0.85);
  border: 1px solid rgba(220, 38, 112, 0.25);
  border-radius: 9999px;
  padding: 6px 14px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.05), 0 4px 20px rgba(0, 0, 0, 0.3);
  box-sizing: border-box;
}
.yrs-nav-link {
  color: #cbd5e1 !important;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none !important;
  padding: 6px 14px;
  border-radius: 9999px;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}
.yrs-nav-link:hover {
  color: #ffffff !important;
  background: rgba(220, 38, 112, 0.18);
}
.yrs-nav-divider {
  width: 1px;
  height: 16px;
  background: rgba(255, 255, 255, 0.15);
  margin: 0 4px;
  display: inline-block;
}
.yrs-nav-link-aeo {
  color: #fb7185 !important;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none !important;
  padding: 6px 14px;
  border-radius: 9999px;
  background: rgba(220, 38, 112, 0.16);
  border: 1px solid rgba(220, 38, 112, 0.35);
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  cursor: pointer;
}
.yrs-nav-link-aeo:hover {
  color: #ffffff !important;
  background: rgba(220, 38, 112, 0.3);
  border-color: #fb7185;
  box-shadow: 0 0 15px rgba(220, 38, 112, 0.4);
}

/* Header Right Area */
.yrs-header-right-area {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
.yrs-status-indicator {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
  line-height: 1.3;
}
.yrs-status-title-wrap {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #34d399;
  font-size: 11px;
  font-weight: 700;
}
.yrs-status-ping-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #34d399;
  box-shadow: 0 0 8px #34d399;
  display: inline-block;
}
.yrs-status-subtitle {
  font-size: 10px;
  color: #94a3b8;
  font-family: monospace;
}

/* CTA Button (Desktop/Tablet) */
.yrs-header-cta-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 1.5px;
  border-radius: 14px;
  text-decoration: none !important;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(220, 38, 112, 0.45);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  cursor: pointer;
  flex-shrink: 0;
  box-sizing: border-box;
}
.yrs-header-cta-btn:hover {
  transform: scale(1.02);
  box-shadow: 0 0 32px rgba(220, 38, 112, 0.75);
}
.yrs-header-cta-btn:active {
  transform: scale(0.98);
}
.yrs-cta-border-glow {
  position: absolute;
  inset: 0;
  border-radius: 14px;
  background: linear-gradient(90deg, #fb7185, #dc2670, #881337);
}
.yrs-cta-inner-body {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 12.5px;
  background: linear-gradient(135deg, #dc2670 0%, #9f1239 100%);
  color: #ffffff !important;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.01em;
  white-space: nowrap;
  box-sizing: border-box;
}
.yrs-cta-inner-body svg {
  transition: transform 0.2s ease;
}
.yrs-header-cta-btn:hover .yrs-cta-inner-body svg:last-child {
  transform: translateX(3px);
}

/* Mobile Hamburger Toggle Button */
.yrs-header-mobile-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border-radius: 10px;
  background: #1a0815;
  border: 1px solid rgba(220, 38, 112, 0.35);
  color: #f1f5f9;
  cursor: pointer;
  transition: all 0.2s ease;
  flex-shrink: 0;
  box-sizing: border-box;
}
.yrs-header-mobile-toggle:hover {
  border-color: #fb7185;
  color: #ffffff;
  background: #250d23;
}

/* Mobile Drawer Dropdown */
.yrs-header-mobile-drawer {
  display: none;
  background: #0e0712;
  border-top: 1px solid rgba(220, 38, 112, 0.3);
  border-bottom: 1px solid rgba(220, 38, 112, 0.3);
  padding: 16px 20px 24px;
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.85);
  box-sizing: border-box;
}
.yrs-header-mobile-drawer.yrs-open {
  display: block !important;
}
.yrs-mobile-nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 14px;
}
.yrs-mobile-nav-link {
  padding: 7px 14px;
  font-size: 12px;
  font-weight: 600;
  color: #e2e8f0 !important;
  background: #190918;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  text-decoration: none !important;
  display: inline-block;
  transition: all 0.2s ease;
}
.yrs-mobile-nav-link:hover {
  color: #ffffff !important;
  background: #250d23;
  border-color: rgba(220, 38, 112, 0.4);
}
.yrs-mobile-touchpoints-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  padding-bottom: 14px;
}
.yrs-mobile-touchpoint-btn {
  padding: 10px 12px;
  font-size: 12px;
  font-weight: 600;
  color: #e2e8f0 !important;
  background: #190918;
  border: 1px solid rgba(220, 38, 112, 0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none !important;
  transition: all 0.2s ease;
}
.yrs-mobile-touchpoint-btn:hover {
  background: #250d23;
  border-color: rgba(220, 38, 112, 0.5);
  color: #ffffff !important;
}
.yrs-mobile-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 13px 20px;
  border-radius: 12px;
  background: linear-gradient(90deg, #fb7185, #dc2670, #881337);
  color: #ffffff !important;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none !important;
  box-shadow: 0 0 20px rgba(220, 38, 112, 0.5);
  transition: all 0.2s ease;
  box-sizing: border-box;
  cursor: pointer;
}
.yrs-mobile-cta-btn:hover {
  box-shadow: 0 0 30px rgba(220, 38, 112, 0.8);
  opacity: 0.95;
}

/* --------------------------------------------------------------------------
   Desktop & Mobile Header Navigation Visibility
   -------------------------------------------------------------------------- */
/* Big Screens (Desktop & Tablet: >= 768px):
   - Hamburger toggle is STRICTLY HIDDEN
   - Desktop navigation menu is VISIBLE
   - Header CTA button is VISIBLE
*/
@media (min-width: 768px) {
  .yrs-growth-wrapper .yrs-nav-desktop-pill,
  .yrs-nav-desktop-pill,
  .yrs-growth-wrapper .yrs-desktop-nav,
  .yrs-desktop-nav {
    display: flex !important;
  }
  .yrs-growth-wrapper .yrs-header-right-area,
  .yrs-header-right-area {
    display: flex !important;
  }
  .yrs-growth-wrapper .yrs-header-cta-btn,
  .yrs-header-cta-btn,
  .yrs-growth-wrapper .yrs-desktop-cta,
  .yrs-desktop-cta {
    display: inline-flex !important;
  }
  .yrs-growth-wrapper .yrs-header-mobile-toggle,
  .yrs-header-mobile-toggle,
  .yrs-growth-wrapper .yrs-mobile-toggle,
  .yrs-mobile-toggle {
    display: none !important;
  }
  .yrs-growth-wrapper .yrs-header-mobile-drawer,
  .yrs-header-mobile-drawer,
  .yrs-growth-wrapper #yrs-mobile-menu,
  #yrs-mobile-menu {
    display: none !important;
  }
}

/* Mobile Screen Only (< 768px):
   - Desktop navigation menu is STRICTLY HIDDEN
   - Header CTA button is STRICTLY HIDDEN from the header bar
   - Hamburger toggle is VISIBLE on the right side
   - Mobile menu drawer displays when opened
*/
@media (max-width: 767px) {
  .yrs-growth-wrapper .yrs-nav-desktop-pill,
  .yrs-nav-desktop-pill,
  .yrs-growth-wrapper .yrs-desktop-nav,
  .yrs-desktop-nav {
    display: none !important;
  }
  .yrs-growth-wrapper .yrs-header-cta-btn,
  .yrs-header-cta-btn,
  .yrs-growth-wrapper .yrs-desktop-cta,
  .yrs-desktop-cta,
  .yrs-growth-wrapper .yrs-status-indicator,
  .yrs-status-indicator {
    display: none !important;
  }
  .yrs-growth-wrapper .yrs-header-mobile-toggle,
  .yrs-header-mobile-toggle,
  .yrs-growth-wrapper .yrs-mobile-toggle,
  .yrs-mobile-toggle {
    display: inline-flex !important;
  }
  .yrs-growth-wrapper .yrs-header-mobile-drawer.yrs-open,
  .yrs-header-mobile-drawer.yrs-open,
  .yrs-growth-wrapper #yrs-mobile-menu.yrs-open,
  #yrs-mobile-menu.yrs-open {
    display: block !important;
  }
}

/* --------------------------------------------------------------------------
   Ecosystem Visual "Channels" Indicator
   -------------------------------------------------------------------------- */
.yrs-channels-connector {
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  margin: 0 auto !important;
  z-index: 10 !important;
}

@media (min-width: 1024px) {
  .yrs-channels-connector-desktop {
    display: flex !important;
  }
  .yrs-channels-connector-mobile {
    display: none !important;
  }
}

@media (max-width: 1023px) {
  .yrs-channels-connector-desktop {
    display: none !important;
  }
  .yrs-channels-connector-mobile {
    display: flex !important;
  }
}

.yrs-channels-circle {
  width: 2.25rem !important;
  height: 2.25rem !important;
  border-radius: 9999px !important;
  background: radial-gradient(circle, #2a0a22 0%, #170415 100%) !important;
  border: 1.5px solid rgba(220, 38, 112, 0.55) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: #fb7185 !important;
  box-shadow: 0 0 16px rgba(220, 38, 112, 0.45) !important;
  transition: all 0.3s ease !important;
}

.yrs-channels-circle svg {
  transform: none !important;
}

.yrs-channels-circle:hover {
  transform: scale(1.1) !important;
  border-color: #fb7185 !important;
  box-shadow: 0 0 24px rgba(220, 38, 112, 0.75) !important;
}

.yrs-channels-label {
  font-size: 10px !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.12em !important;
  color: #94a3b8 !important;
  margin-top: 0.35rem !important;
  font-family: 'Space Grotesk', sans-serif !important;
}

/* --------------------------------------------------------------------------
   Pill Action Link (Why Us Section)
   -------------------------------------------------------------------------- */
.yrs-pill-action-link {
  display: inline-flex !important;
  flex-wrap: wrap !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  white-space: normal !important;
  word-break: break-word !important;
  line-height: 1.45 !important;
  max-width: 100% !important;
  width: auto !important;
  gap: 0.5rem !important;
  padding: 0.75rem 1.25rem !important;
  border-radius: 1rem !important;
  background-color: #170817 !important;
  border: 1px solid rgba(220, 38, 112, 0.35) !important;
  color: #fb7185 !important;
  font-size: 0.8125rem !important;
  font-weight: 700 !important;
  text-decoration: none !important;
  transition: all 0.25s ease !important;
  box-shadow: 0 0 20px rgba(220, 38, 112, 0.15) !important;
}

@media (min-width: 640px) {
  .yrs-pill-action-link {
    flex-wrap: nowrap !important;
    padding: 0.65rem 1.5rem !important;
    border-radius: 9999px !important;
    font-size: 0.875rem !important;
  }
}

.yrs-pill-action-link:hover {
  background-color: #240b21 !important;
  border-color: #dc2670 !important;
  color: #ffffff !important;
  box-shadow: 0 0 30px rgba(220, 38, 112, 0.35) !important;
  transform: translateY(-1px) !important;
}

/* --------------------------------------------------------------------------
   Animations & Keyframes
   -------------------------------------------------------------------------- */
@keyframes yrsPulseGlow {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 0.85; transform: scale(1.04); }
}

@keyframes yrsPing {
  75%, 100% { transform: scale(2); opacity: 0; }
}

@keyframes yrsSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.yrs-animate-pulse-glow {
  animation: yrsPulseGlow 6s ease-in-out infinite !important;
}

.yrs-animate-ping {
  animation: yrsPing 1.5s cubic-bezier(0, 0, 0.2, 1) infinite !important;
}

.yrs-animate-spin {
  animation: yrsSpin 1s linear infinite !important;
}

/* --------------------------------------------------------------------------
   Gradients & Text Utilities
   -------------------------------------------------------------------------- */
.yrs-bg-gradient-brand {
  background: linear-gradient(135deg, #dc2670 0%, #881337 100%) !important;
}

.yrs-bg-gradient-cta {
  background: linear-gradient(135deg, #f43f5e 0%, #dc2670 50%, #be123c 100%) !important;
}

.yrs-text-gradient-brand,
.yrs-growth-wrapper .bg-clip-text {
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
}

/* --------------------------------------------------------------------------
   Ambient Orbs & Glows
   -------------------------------------------------------------------------- */
.yrs-glow-orb {
  position: absolute;
  border-radius: 9999px;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
}

/* --------------------------------------------------------------------------
   Touchpoint Highlight Effect
   -------------------------------------------------------------------------- */
.yrs-touchpoint-highlight {
  box-shadow: 0 0 35px rgba(220, 38, 112, 0.75) !important;
  border-color: #dc2670 !important;
  transform: translateY(-3px) scale(1.02);
  transition: all 0.3s ease;
}

/* --------------------------------------------------------------------------
   Modal Dialog Styles
   -------------------------------------------------------------------------- */
.yrs-modal-overlay {
  position: fixed !important;
  inset: 0 !important;
  z-index: 99999 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 1rem !important;
  background-color: rgba(0, 0, 0, 0.85) !important;
  backdrop-filter: blur(12px) !important;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.yrs-modal-overlay.yrs-open {
  opacity: 1 !important;
  visibility: visible !important;
}

.yrs-modal-dialog {
  transform: scale(0.95);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  background-color: #110612 !important;
}

.yrs-modal-overlay.yrs-open .yrs-modal-dialog {
  transform: scale(1);
}

.hidden {
  display: none;
}

.yrs-modal-step.hidden {
  display: none !important;
}

/* --------------------------------------------------------------------------
   Client Logos Grid Styling
   -------------------------------------------------------------------------- */
.yrs-client-logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: 12px;
  background-color: rgba(21, 7, 20, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.25s ease;
  filter: grayscale(100%);
  opacity: 0.6;
}

.yrs-client-logo-item:hover {
  filter: grayscale(0%);
  opacity: 1;
  border-color: rgba(220, 38, 112, 0.4);
  background-color: rgba(28, 9, 26, 0.8);
  transform: translateY(-2px);
}

.yrs-client-logo-item img {
  max-height: 28px;
  width: auto;
  object-fit: contain;
}

/* --------------------------------------------------------------------------
   Custom Scrollbar
   -------------------------------------------------------------------------- */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #0b0c10; }
::-webkit-scrollbar-thumb { background: #27141f; border-radius: 4px; border: 2px solid #0b0c10; }
::-webkit-scrollbar-thumb:hover { background: #dc2670; }
