/*  beepcoder – Main Stylesheet (consolidated from beepcoder-core.css + style.css) */

/*  Reset & Base  */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --orange:   #F97316;
  --orange2:  #EF4444;
  --grad:     linear-gradient(135deg, #F97316 0%, #EF4444 100%);
  --grad-rev: linear-gradient(135deg, #EF4444 0%, #F97316 100%);
  --dark:     #0F0D2A;
  --dark2:    #1A1740;
  --navy:     #1E1B4B;
  --text:     #374151;
  --muted:    #6B7280;
  --light:    #F9FAFB;
  --white:    #FFFFFF;
  --border:   #E5E7EB;
  --radius:   16px;
  --radius-sm: 10px;
  --shadow:   0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.14);
  --transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  --beep-header-height: 72px;
  --beep-offset-top: var(--beep-header-height);
}

body.admin-bar {
  --beep-offset-top: calc(32px + var(--beep-header-height));
}

@media screen and (max-width: 782px) {
  body.admin-bar {
    --beep-offset-top: calc(46px + var(--beep-header-height));
  }

  body.admin-bar .beep-navbar {
    top: 46px;
  }
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
}

img { max-width: 100%; display: block; }

a  { text-decoration: none; color: inherit; }

ul { list-style: none; }

.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
}

@media (min-width: 1200px) {
  .container,
  .container-xl,
  .container-lg,
  .container-md,
  .container-sm {
    max-width: 1320px;
  }
}

/* -- Gradient Text -- */
.beep-gradient-text {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* -- Section Labels -- */
.beep-section-label {
  display: table;
  margin-left: auto;
  margin-right: auto;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  background: rgba(249,115,22,0.1);
  padding: 6px 14px;
  border-radius: 99px;
  margin-bottom: 14px;
}

.beep-section-label.light {
  color: #fff;
  background: rgba(255,255,255,0.15);
}

.beep-section-title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 16px;
}

.beep-section-title.light { color: var(--white); }

.beep-section-sub {
  font-size: 17px;
  color: var(--muted);
  max-width: 620px;
  margin-bottom: 56px;
}

.beep-section-title-wrapper {
  text-align: center;
}

.beep-section-title-wrapper .beep-section-title,
.beep-section-title-wrapper .beep-section-sub {
  text-align: inherit;
}

.beep-section-title-wrapper .beep-section-label {
  display: inline-block;
  margin-left: auto;
  margin-right: auto;
}

.beep-section-title-wrapper .beep-section-sub {
  margin-left: auto;
  margin-right: auto;
}

.beep-section-title-wrapper .beep-section-sub:last-child {
  margin-bottom: 56px;
}

.beep-section-title-wrapper--left {
  text-align: left;
}

.beep-section-title-wrapper--left .beep-section-label {
  margin-left: 0;
  margin-right: auto;
}

.beep-section-title-wrapper--left .beep-section-title {
  margin-bottom: 0;
}

.beep-section-title-wrapper--left .beep-section-sub {
  margin-left: 0;
  margin-right: auto;
}

.beep-section-title-wrapper--right {
  text-align: right;
}

.beep-section-title-wrapper--right .beep-section-label {
  margin-left: auto;
  margin-right: 0;
}

.beep-section-title-wrapper--right .beep-section-sub {
  margin-left: auto;
  margin-right: 0;
}

@media (max-width: 767.98px) {
  .beep-section-label {
    font-size: 11px;
    letter-spacing: 1.2px;
    padding: 5px 12px;
    margin-bottom: 12px;
    max-width: 100%;
    text-wrap: balance;
  }

  .beep-section-title-wrapper .beep-section-label {
    display: inline-block;
  }

  .beep-section-title {
    font-size: clamp(24px, 7vw, 32px);
    margin-bottom: 12px;
    line-height: 1.25;
    text-wrap: balance;
  }

  .beep-section-sub {
    margin-bottom: 28px;
    font-size: 15px;
    line-height: 1.65;
    text-wrap: pretty;
    max-width: 100%;
  }

  .beep-section-title-wrapper .beep-section-sub:last-child {
    margin-bottom: 28px;
  }
}

/* -- Buttons -- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 36px;
  height: 54px;
  border-radius: 99px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
  text-decoration: none;
  line-height: 1;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: color 0.3s ease;
}

/* -- Primary: gradient fill → white skew-slides in on hover -- */
.btn-primary {
  background: var(--grad);
  border-color: transparent;
  color: var(--white);
}

.btn-primary::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: -20%;
  right: -20%;
  top: -4%;
  height: 150%;
  width: 150%;
  background: var(--white);
  transform: skewX(45deg) scale(0, 1);
  transition: transform 0.5s ease;
}

.btn-primary:hover {
  color: var(--orange);
  border-color: transparent;
}

.btn-primary:hover::after {
  transform: skewX(45deg) scale(1, 1);
}

/* -- Outline: gradient border (via box-shadow trick) → gradient skew-slides in on hover -- */
.btn-outline {
  background-color: transparent;
  border-color: transparent;
  color: var(--orange);
  box-shadow: inset 0 0 0 2px var(--orange);
}

.btn-outline::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: -20%;
  right: -20%;
  top: -4%;
  height: 150%;
  width: 150%;
  background: var(--grad);
  transform: skewX(45deg) scale(0, 1);
  transition: transform 0.5s ease;
}

.btn-outline:hover {
  color: var(--white);
  box-shadow: none;
}

.btn-outline:hover::after {
  transform: skewX(45deg) scale(1, 1);
}

/* -- Outline-white: for dark section backgrounds → gradient skew-slides in -- */
.btn-outline-white {
  border-color: transparent !important;
  box-shadow: inset 0 0 0 2px rgba(255,255,255,0.5) !important;
  color: var(--white) !important;
}

.btn-outline-white::after {
  background: var(--grad) !important;
}

.btn-outline-white:hover {
  color: var(--white) !important;
  box-shadow: none !important;
}

/* -- Ghost (subtle glass, used in dark hero overlays) -- */
.btn-ghost {
  border-color: rgba(255,255,255,0.4);
  color: var(--white);
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(6px);
}

.btn-ghost::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: -20%;
  right: -20%;
  top: -4%;
  height: 150%;
  width: 150%;
  background: rgba(255,255,255,0.15);
  transform: skewX(45deg) scale(0, 1);
  transition: transform 0.5s ease;
}

.btn-ghost:hover {
  color: var(--white);
}

.btn-ghost:hover::after {
  transform: skewX(45deg) scale(1, 1);
}

/* -- Sizes -- */
.btn-lg  { height: 58px; padding: 0 44px; font-size: 16px; }
.btn-sm  { height: 40px; padding: 0 20px; font-size: 13px; border-radius: 99px; }

/* Compact navbar CTAs */
.beep-nav-ctas .btn { height: 40px; padding: 0 22px; font-size: 13px; font-weight: 600; }

.beep-center-btn { text-align: center; margin-top: 48px; }

/* Legacy alias kept for compatibility */
.beep-btn-lg { height: 58px; padding: 0 44px; font-size: 16px; }

/* ----------------------------------------
   NAVBAR
   ---------------------------------------- */
.beep-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
  background: transparent;
}

body.admin-bar .beep-navbar {
  top: 32px;
}

.beep-navbar.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  padding: 12px 0;
}

.beep-navbar.menu-open {
  background: transparent !important;
  backdrop-filter: none !important;
  box-shadow: none !important;
}

.beep-navbar.scrolled .beep-logo-dark  { display: block; }

.beep-navbar.scrolled .beep-logo-white { display: none;  }

.beep-navbar:not(.scrolled) .beep-logo-dark  { display: none;  }

.beep-navbar:not(.scrolled) .beep-logo-white { display: block; }

.beep-brand-single-logo .beep-logo-dark { display: none; }

.beep-brand-single-logo .beep-logo-white { display: block; }

.beep-navbar.scrolled .beep-brand-single-logo .beep-logo-dark { display: block !important; }

.beep-navbar.scrolled .beep-brand-single-logo .beep-logo-white { display: none !important; }

.beep-nav-inner {
  display: flex;
  align-items: center;
  gap: 32px;
}

.beep-brand img { height: 40px; }

.beep-nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 1;
}

.beep-main-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
  justify-content: flex-end;
}

.beep-main-nav > li {
  position: relative;
}

/* Mobile-only elements hidden on desktop */
.beep-mobile-nav-header,
.beep-mobile-nav-footer { display: none; }

/* Nav body is visible on desktop as a flex row — right-aligned */
.beep-mobile-nav-body {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 1;
  justify-content: flex-end;
}

.beep-nav-links a {
  font-weight: 500;
  font-size: 15px;
  padding: 8px 14px;
  border-radius: 8px;
  color: rgba(255,255,255,0.9);
  transition: var(--transition);
}

.beep-nav-links a:hover { color: var(--white); background: rgba(255,255,255,0.1); }

.beep-navbar.scrolled .beep-nav-links a { color: var(--text); }

.beep-navbar.scrolled .beep-nav-links a:hover { color: var(--orange); background: rgba(249,115,22,0.08); }

.beep-navbar.scrolled .beep-nav-links a.nav-active { color: var(--orange); font-weight: 700; }

.beep-navbar:not(.scrolled) .beep-nav-links a.nav-active { color: var(--white); font-weight: 700; }

/* -- Dropdown Nav -- */
.beep-nav-item {
  position: relative;
}

.beep-nav-parent-row {
  display: flex;
  align-items: center;
}

.beep-nav-item > a,
.beep-nav-parent-row > a,
.beep-has-submenu > .beep-nav-parent-row > a {
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  flex: 1;
}

.beep-nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: transparent;
  border: none;
  padding: 8px 10px;
  cursor: pointer;
  color: inherit;
  line-height: 1;
}

@media (min-width: 992px) {
  .beep-nav-toggle {
    pointer-events: none;
    padding: 8px 6px;
  }
}

.beep-nav-arrow, .beep-sub-arrow {
  font-size: 10px;
  transition: transform 0.25s ease;
  pointer-events: none;
}

/* Dropdown panel */
.beep-dropdown {
  list-style: none;
  margin: 0;
  padding: 8px 0;
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 210px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.13);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
  z-index: 1000;
}

.beep-nav-item:hover > .beep-dropdown,
.beep-nav-item.open > .beep-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.beep-nav-item:hover .beep-nav-toggle .beep-nav-arrow,
.beep-nav-item.open .beep-nav-toggle .beep-nav-arrow {
  transform: rotate(180deg);
}

.beep-has-submenu:hover > .beep-nav-parent-row .beep-nav-toggle .beep-sub-arrow,
.beep-has-submenu.open > .beep-nav-parent-row .beep-nav-toggle .beep-sub-arrow {
  transform: translateX(3px);
}

.beep-dropdown li > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 18px !important;
  font-size: 14px !important;
  font-weight: 500;
  color: var(--navy) !important;
  border-radius: 0 !important;
  background: transparent !important;
  white-space: nowrap;
  transition: background 0.15s, color 0.15s;
}

.beep-dropdown li > a:hover {
  background: rgba(249,115,22,0.07) !important;
  color: var(--orange) !important;
}

/* Submenu */
.beep-has-submenu {
  position: relative;
}

.beep-submenu {
  list-style: none;
  margin: 0;
  padding: 8px 0;
  position: absolute;
  top: 0;
  left: 100%;
  min-width: 200px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.13);
  opacity: 0;
  visibility: hidden;
  transform: translateX(6px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  z-index: 1001;
}

.beep-has-submenu:hover > .beep-submenu,
.beep-has-submenu.open > .beep-submenu {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.beep-submenu li > a {
  display: block !important;
  padding: 9px 18px !important;
  font-size: 14px !important;
  font-weight: 500;
  color: var(--navy) !important;
  border-radius: 0 !important;
  background: transparent !important;
  transition: background 0.15s, color 0.15s;
}

.beep-submenu li > a:hover {
  background: rgba(249,115,22,0.07) !important;
  color: var(--orange) !important;
}

/* Scrolled state overrides */
.beep-navbar.scrolled .beep-dropdown,
.beep-navbar.scrolled .beep-submenu { box-shadow: 0 12px 40px rgba(0,0,0,0.10); }

.beep-nav-ctas {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* On transparent nav (dark hero bg), outline button shows white ring */
.beep-navbar:not(.scrolled) .beep-nav-ctas .btn-outline {
  box-shadow: inset 0 0 0 2px rgba(255,255,255,0.6);
  color: var(--white);
}

.beep-navbar:not(.scrolled) .beep-nav-ctas .btn-outline::after {
  background: rgba(255,255,255,0.15);
}

.beep-navbar:not(.scrolled) .beep-nav-ctas .btn-outline:hover {
  color: var(--white);
  box-shadow: none;
}

.beep-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}

.beep-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.beep-navbar.scrolled .beep-hamburger span { background: var(--navy); }

@media (max-width: 991.98px) {
  .beep-nav-inner {
    flex-wrap: nowrap;
    gap: 12px;
  }

  .beep-nav-inner.container {
    max-width: 100%;
  }

  .beep-brand {
    flex-shrink: 0;
    z-index: 1002;
  }

  .beep-hamburger {
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1002;
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.1);
    margin-left: auto;
  }

  .beep-navbar.scrolled .beep-hamburger {
    border-color: rgba(30, 27, 75, 0.14);
    background: rgba(30, 27, 75, 0.05);
  }

  .beep-hamburger span {
    transform-origin: center;
  }

  .beep-hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .beep-hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .beep-hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .beep-nav-ctas {
    display: none !important;
  }

  .beep-nav-links {
    position: fixed;
    inset: 0;
    flex: none;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 0;
    background: linear-gradient(165deg, #0f0d2a 0%, #1a1740 100%);
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(100%);
    transition: opacity 0.32s ease, visibility 0.32s, transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
  }

  body.admin-bar .beep-nav-links {
    top: 46px;
  }

  @media (min-width: 783px) {
    body.admin-bar .beep-nav-links {
      top: 32px;
    }
  }

  .beep-nav-links.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(0);
    z-index: 1003;
  }

  .beep-navbar.menu-open .beep-nav-inner > .beep-brand,
  .beep-navbar.menu-open .beep-nav-inner > .beep-hamburger {
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
  }

  .beep-mobile-nav-header,
  .beep-mobile-nav-footer {
    display: flex;
  }

  .beep-mobile-nav-header {
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    flex-shrink: 0;
  }

  .beep-mobile-nav-brand {
    flex: 1;
    min-width: 0;
  }

  .beep-mobile-nav-brand .beep-brand {
    display: inline-flex;
    visibility: visible;
    opacity: 1;
    pointer-events: none;
  }

  .beep-mobile-nav-brand .beep-logo-white {
    display: block !important;
  }

  .beep-mobile-nav-brand .beep-logo-dark {
    display: none !important;
  }

  .beep-mobile-nav-brand .beep-brand-single-logo .beep-logo-white {
    display: block !important;
  }

  .beep-mobile-nav-brand img {
    height: 36px;
    width: auto;
  }

  .beep-mobile-close {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    line-height: 1;
    transition: var(--transition);
  }

  .beep-mobile-close:hover {
    background: rgba(249, 115, 22, 0.2);
    border-color: rgba(249, 115, 22, 0.4);
    color: #fff;
  }

  .beep-mobile-nav-body {
    flex: 1;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: 12px 16px 20px;
    gap: 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .beep-main-nav {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 2px;
    justify-content: flex-start;
  }

  .beep-main-nav > li {
    width: 100%;
  }

  .beep-nav-links .beep-main-nav > li > a,
  .beep-nav-links .beep-nav-parent-row > a,
  .beep-nav-links .beep-mobile-nav-body a {
    display: flex;
    width: 100%;
    color: rgba(255, 255, 255, 0.92) !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    padding: 14px 16px !important;
    border-radius: 10px !important;
    background: transparent !important;
  }

  .beep-nav-parent-row {
    width: 100%;
    gap: 0;
  }

  .beep-nav-parent-row > a {
    flex: 1;
    min-width: 0;
  }

  .beep-nav-toggle {
    width: 48px;
    min-height: 48px;
    padding: 0;
    margin-right: 4px;
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.92);
    background: transparent;
  }

  .beep-nav-toggle .beep-nav-arrow,
  .beep-nav-toggle .beep-sub-arrow {
    font-size: 12px;
    transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .beep-nav-toggle:hover,
  .beep-nav-toggle:focus-visible {
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    outline: none;
  }

  .beep-nav-links .beep-main-nav > li > a:hover,
  .beep-nav-links .beep-nav-parent-row > a:hover,
  .beep-nav-links .beep-mobile-nav-body a:hover {
    background: rgba(255, 255, 255, 0.06) !important;
    color: #fff !important;
  }

  .beep-nav-links .beep-main-nav > li > a.nav-active,
  .beep-nav-links .beep-nav-parent-row > a.nav-active {
    color: var(--orange) !important;
  }

  .beep-dropdown,
  .beep-submenu {
    position: static;
    display: block;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: none;
    box-shadow: none;
    background: rgba(0, 0, 0, 0.22);
    border-radius: 10px;
    margin: 0 0 0 8px;
    padding: 0;
    min-width: 0;
    pointer-events: none;
    transition:
      max-height 0.34s cubic-bezier(0.4, 0, 0.2, 1),
      opacity 0.26s ease,
      margin 0.26s ease,
      padding 0.26s ease,
      visibility 0s linear 0.34s;
  }

  .beep-nav-item.open > .beep-dropdown,
  .beep-has-submenu.open > .beep-submenu {
    max-height: 520px;
    opacity: 1;
    visibility: visible;
    margin: 2px 0 6px 8px;
    padding: 4px 0;
    pointer-events: auto;
    transition:
      max-height 0.34s cubic-bezier(0.4, 0, 0.2, 1),
      opacity 0.26s ease,
      margin 0.26s ease,
      padding 0.26s ease,
      visibility 0s;
  }

  /* Never let desktop :hover override an opened mobile submenu */
  .beep-nav-item:not(.open):hover > .beep-dropdown,
  .beep-has-submenu:not(.open):hover > .beep-submenu {
    max-height: 0;
    opacity: 0;
    visibility: hidden;
    margin: 0 0 0 8px;
    padding: 0;
    pointer-events: none;
  }

  .beep-nav-item:not(.open):hover .beep-nav-toggle .beep-nav-arrow,
  .beep-has-submenu:not(.open):hover .beep-nav-toggle .beep-sub-arrow {
    transform: none;
  }

  .beep-nav-item.open > .beep-nav-parent-row .beep-nav-toggle .beep-nav-arrow {
    transform: rotate(180deg);
  }

  .beep-has-submenu.open > .beep-nav-parent-row .beep-nav-toggle .beep-sub-arrow {
    transform: rotate(90deg);
  }

  .beep-nav-item:hover > .beep-dropdown,
  .beep-nav-item.open > .beep-dropdown,
  .beep-has-submenu:hover > .beep-submenu,
  .beep-has-submenu.open > .beep-submenu {
    transform: none !important;
  }

  .beep-dropdown li > a,
  .beep-submenu li > a {
    color: rgba(255, 255, 255, 0.85) !important;
    font-size: 15px !important;
    padding: 11px 16px !important;
  }

  .beep-dropdown li > a:hover,
  .beep-submenu li > a:hover {
    background: rgba(255, 255, 255, 0.06) !important;
    color: #fff !important;
  }

  .beep-mobile-nav-footer {
    flex-direction: column;
    gap: 10px;
    padding: 16px 20px 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    flex-shrink: 0;
  }

  .beep-mobile-nav-footer .btn {
    width: 100%;
    justify-content: center;
    height: 46px;
    border-radius: 99px;
    font-size: 15px;
    font-weight: 600;
  }

  .beep-mobile-nav-footer .btn-outline-white {
    background: transparent !important;
    box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.45) !important;
    color: #fff !important;
  }

  .beep-mobile-nav-footer .btn-outline-white::after {
    display: none;
  }

  .beep-mobile-nav-footer .btn-primary {
    background: var(--grad) !important;
    border-color: transparent !important;
    color: #fff !important;
    box-shadow: none;
  }

  .beep-mobile-nav-footer .btn-primary::after {
    display: none;
  }

  .beep-navbar.menu-open {
    z-index: 1002;
  }

  /* Same mobile drawer UI whether header is transparent or scrolled/sticky */
  body.beep-mobile-menu-open .beep-nav-links.open .beep-mobile-nav-body a,
  body.beep-mobile-menu-open .beep-nav-links.open .beep-nav-parent-row > a,
  body.beep-mobile-menu-open .beep-nav-links.open .beep-dropdown li > a,
  body.beep-mobile-menu-open .beep-nav-links.open .beep-submenu li > a {
    color: rgba(255, 255, 255, 0.92) !important;
    background: transparent !important;
  }

  body.beep-mobile-menu-open .beep-nav-links.open .beep-mobile-nav-body a:hover,
  body.beep-mobile-menu-open .beep-nav-links.open .beep-nav-parent-row > a:hover,
  body.beep-mobile-menu-open .beep-nav-links.open .beep-dropdown li > a:hover,
  body.beep-mobile-menu-open .beep-nav-links.open .beep-submenu li > a:hover {
    color: #fff !important;
    background: rgba(255, 255, 255, 0.06) !important;
  }

  body.beep-mobile-menu-open .beep-nav-links.open .beep-mobile-nav-body a.nav-active,
  body.beep-mobile-menu-open .beep-nav-links.open .beep-nav-parent-row > a.nav-active {
    color: var(--orange) !important;
    background: transparent !important;
  }

  body.beep-mobile-menu-open .beep-nav-links.open .beep-nav-toggle {
    color: rgba(255, 255, 255, 0.92);
  }

  body.beep-mobile-menu-open .beep-nav-links.open .beep-nav-toggle:hover,
  body.beep-mobile-menu-open .beep-nav-links.open .beep-nav-toggle:focus-visible {
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
  }

  body.beep-mobile-menu-open .beep-mobile-nav-brand .beep-logo-white,
  body.beep-mobile-menu-open .beep-mobile-nav-brand .beep-brand-single-logo .beep-logo-white {
    display: block !important;
  }

  body.beep-mobile-menu-open .beep-mobile-nav-brand .beep-logo-dark,
  body.beep-mobile-menu-open .beep-mobile-nav-brand .beep-brand-single-logo .beep-logo-dark {
    display: none !important;
  }
}

/* ----------------------------------------
   HERO – Animated Mesh + Plugin Stack
   ---------------------------------------- */
.beep-hero {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(135deg, #0A0820 0%, #15123A 100%);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  isolation: isolate;
}

/* Animated mesh background */
.beep-mesh-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

.beep-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.55;
  will-change: transform;
}

.beep-blob-1 {
  width: 520px; height: 520px;
  background: radial-gradient(circle, #F97316 0%, transparent 70%);
  top: -120px; left: -120px;
  animation: blobMove1 22s ease-in-out infinite;
}

.beep-blob-2 {
  width: 620px; height: 620px;
  background: radial-gradient(circle, #8B5CF6 0%, transparent 70%);
  top: 20%; right: -160px;
  animation: blobMove2 26s ease-in-out infinite;
}

.beep-blob-3 {
  width: 420px; height: 420px;
  background: radial-gradient(circle, #EC4899 0%, transparent 70%);
  bottom: -100px; left: 30%;
  animation: blobMove3 24s ease-in-out infinite;
}

.beep-blob-4 {
  width: 460px; height: 460px;
  background: radial-gradient(circle, #3B82F6 0%, transparent 70%);
  top: 30%; left: 35%;
  animation: blobMove4 28s ease-in-out infinite;
}

@keyframes blobMove1 {
  0%,100% { transform: translate(0,0)       scale(1); }
  33%     { transform: translate(120px,80px) scale(1.15); }
  66%     { transform: translate(-60px,140px) scale(0.9); }
}

@keyframes blobMove2 {
  0%,100% { transform: translate(0,0)         scale(1); }
  33%     { transform: translate(-100px,60px) scale(1.1); }
  66%     { transform: translate(80px,-80px)  scale(0.95); }
}

@keyframes blobMove3 {
  0%,100% { transform: translate(0,0)        scale(1); }
  33%     { transform: translate(80px,-100px) scale(1.2); }
  66%     { transform: translate(-120px,-40px) scale(0.85); }
}

@keyframes blobMove4 {
  0%,100% { transform: translate(0,0)         scale(1); }
  33%     { transform: translate(-80px,-60px) scale(0.9); }
  66%     { transform: translate(100px,80px)  scale(1.15); }
}

/* Grid overlay */
.beep-grid-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(ellipse at center, black 25%, transparent 75%);
          mask-image: radial-gradient(ellipse at center, black 25%, transparent 75%);
  pointer-events: none;
}

/* Subtle noise grain */
.beep-noise-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.04;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.beep-hero-inner {
  position: relative;
  z-index: 2;
  flex: 1;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  align-items: center;
  gap: 64px;
  padding-top: calc(var(--beep-offset-top) + 48px);
  padding-bottom: 80px;
}

/* Trust badge */
.beep-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 8px 18px 8px 14px;
  border-radius: 99px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  margin-bottom: 26px;
}

.beep-trust-badge strong { color: #fff; font-weight: 700; }

.beep-dot-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10B981;
  box-shadow: 0 0 0 0 rgba(16,185,129,0.7);
  animation: pulseDot 2s infinite;
  flex-shrink: 0;
}

@keyframes pulseDot {
  0%,100% { box-shadow: 0 0 0 0 rgba(16,185,129,0.7); }
  50%     { box-shadow: 0 0 0 9px rgba(16,185,129,0); }
}

.beep-hero-content h1 {
  font-size: clamp(34px, 5vw, 60px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 22px;
}

.beep-hero-content > p {
  font-size: 17px;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 540px;
}

.beep-hero-content > p strong { color: var(--white); }

.beep-hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.beep-hero-btns .btn i { font-size: 14px; }

.beep-hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
}

.beep-hstat { padding: 0 26px; }

.beep-hstat:first-child { padding-left: 0; }

.beep-hstat strong {
  display: block;
  font-size: 30px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.beep-hstat strong .beep-counter-up,
.beep-hstat strong .beep-hstat-suffix {
  display: inline;
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
  letter-spacing: inherit;
  line-height: inherit;
}

.beep-hstat .beep-counter-up {
  min-width: 0.5em;
}

.beep-hstat > span {
  display: block;
  font-size: 12.5px;
  color: rgba(255,255,255,0.5);
}

.beep-hstat-divider {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.2), transparent);
}

/* -- Orbit Graphic -- */
.beep-hero-graphic {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 480px;
}

.beep-orbit-ring {
  position: relative;
  width: 460px;
  height: 460px;
  flex-shrink: 0;
}

/* Glow ring behind everything */
.beep-orbit-ring::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(249,115,22,0.08) 30%, transparent 70%);
  pointer-events: none;
}

/* Spinning dashed track */
.beep-orbit-track {
  position: absolute;
  inset: 12px;
  border-radius: 50%;
  border: 1.5px dashed rgba(249,115,22,0.3);
  animation: spinSlow 24s linear infinite;
}

.beep-orbit-track-inner {
  position: absolute;
  inset: 80px;
  border-radius: 50%;
  border: 1px dashed rgba(139,92,246,0.2);
  animation: spinSlow 18s linear infinite reverse;
}

/* Glowing ring border */
.beep-orbit-ring-glow {
  position: absolute;
  inset: 12px;
  border-radius: 50%;
  box-shadow: 0 0 60px rgba(249,115,22,0.08), inset 0 0 60px rgba(249,115,22,0.04);
  pointer-events: none;
}

@keyframes spinSlow { to { transform: rotate(360deg); } }

/* Center logo */
.beep-orbit-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  background: var(--grad);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 4;
  box-shadow:
    0 0 0 12px rgba(249,115,22,0.12),
    0 0 0 28px rgba(249,115,22,0.06),
    0 20px 60px rgba(249,115,22,0.5);
  opacity: 0;
  animation: orbitCenterIn 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.8s forwards;
}

.beep-orbit-center img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

/* Orbit items — horizontal glass pills */
.beep-orbit-item {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px 10px 10px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 99px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.25), inset 0 1px 0 rgba(255,255,255,0.1);
  transform: translate(-50%, -50%);
  z-index: 5;
  white-space: nowrap;
  cursor: default;
  transition: var(--transition);
  opacity: 0;
  animation: orbitItemIn 0.65s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.beep-orbit-item:hover {
  background: rgba(255,255,255,0.13);
  border-color: rgba(249,115,22,0.5);
  box-shadow: 0 12px 40px rgba(249,115,22,0.25), inset 0 1px 0 rgba(255,255,255,0.1);
  transform: translate(-50%, -50%) scale(1.07);
}

.beep-orbit-item span {
  font-size: 12.5px;
  font-weight: 600;
  color: rgba(255,255,255,0.92);
  letter-spacing: 0.1px;
}

.beep-oi-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--white);
  flex-shrink: 0;
}

/* Individual icon colours */
.beep-oi-1 .beep-oi-icon { background: linear-gradient(135deg,#F97316,#FB923C); box-shadow: 0 4px 12px rgba(249,115,22,0.5); }

.beep-oi-2 .beep-oi-icon { background: linear-gradient(135deg,#8B5CF6,#A78BFA); box-shadow: 0 4px 12px rgba(139,92,246,0.5); }

.beep-oi-3 .beep-oi-icon { background: linear-gradient(135deg,#3B82F6,#60A5FA); box-shadow: 0 4px 12px rgba(59,130,246,0.5); }

.beep-oi-4 .beep-oi-icon { background: linear-gradient(135deg,#10B981,#34D399); box-shadow: 0 4px 12px rgba(16,185,129,0.5); }

.beep-oi-5 .beep-oi-icon { background: linear-gradient(135deg,#EC4899,#F472B6); box-shadow: 0 4px 12px rgba(236,72,153,0.5); }

/* Positions at r=190px from centre of 460×460 ring */
.beep-oi-1 { top: calc(50% - 210px); left: 50%; animation-delay: 1.05s; }

.beep-oi-2 { top: calc(50% - 60px); left: calc(50% + 186px); animation-delay: 1.20s; }

.beep-oi-3 { top: calc(50% + 160px); left: calc(50% + 116px); animation-delay: 1.35s; }

.beep-oi-4 { top: calc(50% + 160px); left: calc(50% - 116px); animation-delay: 1.50s; }

.beep-oi-5 { top: calc(50% - 60px); left: calc(50% - 186px); animation-delay: 1.65s; }

/* CSS entry animations — avoids GSAP transform conflict */
@keyframes orbitItemIn {
  from { opacity: 0; transform: translate(-50%, -50%) scale(0.2); }
  to   { opacity: 1; transform: translate(-50%, -50%) scale(1);   }
}

@keyframes orbitCenterIn {
  from { opacity: 0; transform: translate(-50%, -50%) scale(0); }
  to   { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}

/* Hero responsive (WP header offset) */
@media (max-width: 991px) {
  .beep-hero { min-height: auto; }
  .beep-hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
    padding-top: calc(var(--beep-offset-top) + 32px);
    text-align: center;
  }
  .beep-hero-content > p {
    margin-left: auto;
    margin-right: auto;
  }
  .beep-hero-btns { justify-content: center; }
  .beep-hero-stats { justify-content: center; flex-wrap: wrap; }
  .beep-trust-badge { margin-left: auto; margin-right: auto; }
}

@media (max-width: 768px) {
  .hero-visual,
  .beep-hero-graphic { display: none; }
  .beep-hstat:first-child { padding-left: 26px; }
  .beep-hero-stats { flex-direction: row; }
}

/* -- Plugin showcase stack (kept for compatibility) -- */
.hero-visual {
  position: relative;
  height: 520px;
}

.plugin-stack {
  position: relative;
  width: 100%;
  height: 100%;
}

.plugin-card {
  position: absolute;
  background: rgba(255,255,255,0.97);
  border-radius: 18px;
  padding: 20px 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow:
    0 24px 60px rgba(0,0,0,0.35),
    0 2px 6px rgba(0,0,0,0.15),
    inset 0 1px 0 rgba(255,255,255,0.4);
  backdrop-filter: blur(20px);
  width: 380px;
  max-width: 100%;
  border: 1px solid rgba(255,255,255,0.5);
  will-change: transform;
}

.pc-1 {
  top: 30px;
  right: 10px;
  z-index: 3;
  transform: rotate(-2deg);
  animation: floatCard1 6s ease-in-out infinite;
}

.pc-2 {
  top: 200px;
  right: 60px;
  z-index: 2;
  transform: rotate(1.5deg);
  animation: floatCard2 7s ease-in-out infinite;
}

.pc-3 {
  top: 370px;
  right: 20px;
  z-index: 1;
  transform: rotate(-1deg);
  animation: floatCard3 6.5s ease-in-out infinite;
}

@keyframes floatCard1 {
  0%,100% { transform: translateY(0)     rotate(-2deg); }
  50%     { transform: translateY(-14px) rotate(-2deg); }
}

@keyframes floatCard2 {
  0%,100% { transform: translateY(0)     rotate(1.5deg); }
  50%     { transform: translateY(-10px) rotate(1.5deg); }
}

@keyframes floatCard3 {
  0%,100% { transform: translateY(0)     rotate(-1deg); }
  50%     { transform: translateY(-16px) rotate(-1deg); }
}

.pc-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--white);
  flex-shrink: 0;
}

.pc-icon.orange { background: linear-gradient(135deg,#F97316,#FB923C); box-shadow: 0 6px 20px rgba(249,115,22,0.4); }

.pc-icon.purple { background: linear-gradient(135deg,#8B5CF6,#A78BFA); box-shadow: 0 6px 20px rgba(139,92,246,0.4); }

.pc-icon.blue   { background: linear-gradient(135deg,#3B82F6,#60A5FA); box-shadow: 0 6px 20px rgba(59,130,246,0.4); }

.pc-content { flex: 1; min-width: 0; padding-right: 50px; }

.pc-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}

.pc-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: #6B7280;
  font-weight: 500;
}

.pc-rating {
  color: #F59E0B;
  font-weight: 700;
}

.pc-rating i { font-size: 11px; margin-right: 2px; }

.pc-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #D1D5DB;
}

.pc-tag {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 10px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 6px;
  letter-spacing: 0.8px;
}

.pc-tag.free {
  background: rgba(16,185,129,0.12);
  color: #059669;
}

.pc-tag.pro {
  background: linear-gradient(135deg,#F97316,#EF4444);
  color: var(--white);
  box-shadow: 0 2px 8px rgba(249,115,22,0.4);
}

/* -- Floating glass badges -- */
.float-badge {
  position: absolute;
  background: rgba(255,255,255,0.08);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 99px;
  padding: 9px 18px;
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  z-index: 4;
}

.float-badge i { color: var(--orange); font-size: 13px; }

.fb-1 { top: 30px;    left: 20px;  animation: floatBadge 6s ease-in-out infinite; }

.fb-2 { top: 50%;     right: 0px;  transform: translateY(-50%); animation: floatBadgeY 7s ease-in-out infinite 1.2s; }

.fb-3 { bottom: 40px; left: 80px;  animation: floatBadge 5.5s ease-in-out infinite 0.6s; }

@keyframes floatBadgeY {
  0%,100% { transform: translateY(-50%); }
  50%     { transform: translateY(calc(-50% - 12px)); }
}

@keyframes floatBadge {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-12px); }
}

.beep-hero-wave {
  position: relative;
  z-index: 2;
  line-height: 0;
  margin-top: -1px;
}

.beep-hero-wave svg { width: 100%; height: 60px; display: block; }

/* ----------------------------------------
   PRODUCTS
   ---------------------------------------- */
.beep-plugins {
  padding: 96px 0;
  background: var(--light);
}

.beep-plugins-showcase > .container {
  text-align: center;
}

.beep-plugins-showcase .beep-section-title-wrapper .beep-section-label {
  display: inline-block;
  margin-bottom: 14px;
}

.beep-plugins-showcase .beep-section-title-wrapper .beep-section-sub {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 56px;
  max-width: 42rem;
}

/* Filter tabs */
.beep-plugin-filters {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 52px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 99px;
  padding: 6px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.beep-pf-btn {
  padding: 9px 26px;
  border-radius: 99px;
  border: none;
  background: transparent;
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  transition: var(--transition);
  font-family: inherit;
}

.beep-pf-btn:hover { color: var(--navy); }

.beep-pf-btn.active {
  background: var(--grad);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(249,115,22,0.35);
}

/* Product grid — keeps custom grid so filter JS hides entire grid cells cleanly */
.beep-plugin-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

/* Product card */
.beep-plugin-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.beep-plugin-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.beep-plugin-card.hidden { display: none; }

/* Banner */
.beep-plugin-banner {
  position: relative;
  height: 140px;
  background: linear-gradient(135deg, var(--banner-a), var(--banner-b));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.beep-plugin-banner-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.beep-plugin-banner.has-banner-image::before {
  z-index: 1;
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--banner-a) 84%, transparent), color-mix(in srgb, var(--banner-b) 84%, transparent)),
    radial-gradient(circle at 30% 50%, rgba(255,255,255,0.15), transparent 60%);
}

.beep-plugin-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.15), transparent 60%);
}

.beep-plugin-banner::after {
  content: '';
  position: absolute;
  bottom: -30px; right: -30px;
  width: 120px; height: 120px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
}

.beep-plugin-banner-icon {
  width: 72px;
  height: 72px;
  background: rgba(255,255,255,0.2);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: var(--white);
  position: relative;
  z-index: 2;
  border: 1px solid rgba(255,255,255,0.3);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  backdrop-filter: blur(6px);
  transition: var(--transition);
}

.beep-plugin-card:hover .beep-plugin-banner-icon {
  transform: scale(1.1) rotate(-5deg);
}

/* Badge */
.beep-plugin-badge {
  position: absolute;
  top: 14px; right: 14px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 4px 12px;
  border-radius: 6px;
  z-index: 3;
}

.beep-plugin-badge.free {
  background: rgba(255,255,255,0.2);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.4);
}

.beep-plugin-badge.pro {
  background: var(--white);
  color: var(--orange);
}

/* Body */
.beep-plugin-body {
  padding: 24px 24px 16px;
  flex: 1;
}

.beep-plugin-body h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.beep-plugin-body p {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 16px;
}

.beep-plugin-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 12.5px;
  font-weight: 600;
}

.beep-plugin-rating { color: #F59E0B; }

.beep-plugin-rating i { margin-right: 3px; }

.beep-plugin-installs { color: var(--muted); }

.beep-plugin-installs i { margin-right: 3px; color: var(--orange); }

/* Footer */
.beep-plugin-footer {
  padding: 16px 24px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border);
}

.beep-plugin-price {
  font-size: 16px;
  font-weight: 800;
}

.beep-free-price { color: #10B981; }

.beep-pro-price  { color: var(--orange); }

/* btn-sm defined in buttons section above */

/* -- Plugin showcase cards (home featured layout) -- */
.beep-plugin-card-showcase {
  overflow: visible;
  text-align: center;
  padding-bottom: 30px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 2px 12px rgba(15, 23, 42, 0.04);
  transition: var(--transition);
}

.beep-plugin-card-showcase:hover {
  transform: translateY(-6px);
}

.beep-plugin-showcase-top {
  position: relative;
  height: 196px;
  background: var(--showcase-bg, #eef2ff);
  border-radius: calc(var(--radius) - 1px) calc(var(--radius) - 1px) 0 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 20px 36px;
}

.beep-plugin-showcase-top:has(.beep-plugin-showcase-img) {
  display: block;
  padding: 0;
}

.beep-plugin-showcase-img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 196px;
  max-width: none;
  max-height: none;
  object-fit: cover;
  object-position: center center;
}

.beep-plugin-showcase-icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  margin: -34px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 26px;
  line-height: 1;
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.18);
  border: 4px solid var(--white);
}

.beep-plugin-showcase-icon i,
.beep-plugin-showcase-icon svg {
  color: var(--white) !important;
  fill: currentColor;
  font-size: 26px;
  width: 1em;
  height: 1em;
  line-height: 1;
  display: block;
}

.beep-plugin-showcase-icon svg path {
  fill: currentColor !important;
}

.beep-plugin-showcase-icon.blue   { background: linear-gradient(135deg, #3B82F6, #60A5FA); }
.beep-plugin-showcase-icon.purple { background: linear-gradient(135deg, #8B5CF6, #EC4899); }
.beep-plugin-showcase-icon.orange { background: linear-gradient(135deg, #F97316, #FBBF24); }
.beep-plugin-showcase-icon.green  { background: linear-gradient(135deg, #10B981, #34D399); }
.beep-plugin-showcase-icon.red    { background: linear-gradient(135deg, #EF4444, #F87171); }
.beep-plugin-showcase-icon.teal   { background: linear-gradient(135deg, #14B8A6, #2DD4BF); }

.beep-plugin-showcase-body {
  padding: 18px 28px 0;
}

.beep-plugin-showcase-body h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.beep-plugin-showcase-body p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
  margin: 0 auto;
  max-width: 34ch;
}

.beep-plugin-showcase-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 22px;
  padding: 11px 28px;
  border-radius: 999px;
  border: 1px solid #d7dce5;
  background: var(--white);
  color: #334155;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

.beep-plugin-showcase-btn:hover {
  color: var(--navy);
  border-color: #c7ceda;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
  transform: translateY(-1px);
}

.beep-plugin-grid-showcase {
  gap: 32px;
}

/* Plugin widgets — responsive */
@media (max-width: 991.98px) {
  .beep-plugins {
    padding: 72px 0;
  }

  .beep-plugins-showcase .beep-section-title-wrapper .beep-section-sub {
    margin-bottom: 40px;
  }

  .beep-plugin-filters {
    flex-wrap: wrap;
    justify-content: center;
    border-radius: 16px;
    width: 100%;
    max-width: 100%;
    padding: 8px;
    gap: 6px;
    margin-bottom: 36px;
  }

  .beep-pf-btn {
    padding: 8px 18px;
    font-size: 13px;
  }

  .beep-plugin-grid,
  .beep-plugin-grid-showcase,
  .elementor-widget-beep-plugins .beep-plugin-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 24px;
  }

  .beep-plugin-showcase-top {
    height: 170px;
    padding: 20px 16px 32px;
  }

  .beep-plugin-showcase-top:has(.beep-plugin-showcase-img) {
    height: auto;
  }

  .beep-plugin-showcase-img {
    min-height: 170px;
  }

  .beep-plugin-showcase-icon {
    width: 62px;
    height: 62px;
    margin-top: -31px;
    font-size: 24px;
    border-width: 3px;
  }

  .beep-plugin-showcase-icon i,
  .beep-plugin-showcase-icon svg {
    font-size: 24px;
  }

  .beep-plugin-showcase-body {
    padding: 16px 20px 0;
  }

  .beep-plugin-showcase-body h3 {
    font-size: 17px;
  }

  .beep-plugin-showcase-body p {
    font-size: 13.5px;
    max-width: none;
  }

  .beep-plugin-card-showcase {
    padding-bottom: 24px;
  }

  .beep-plugin-banner {
    height: 120px;
  }

  .beep-plugin-banner-icon {
    width: 64px;
    height: 64px;
    font-size: 26px;
  }

  .beep-plugin-body {
    padding: 20px 18px 14px;
  }

  .beep-plugin-body h3 {
    font-size: 16px;
  }

  .beep-plugin-footer {
    padding: 14px 18px 18px;
    flex-wrap: wrap;
    gap: 10px;
  }

  .beep-plugins-main {
    padding: 56px 0 64px;
  }

  .beep-plugins-bar {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }

  .beep-plugins-search {
    max-width: none;
    width: 100%;
  }

  .beep-plugin-cats {
    margin-bottom: 28px;
  }
}

@media (max-width: 767.98px) {
  .beep-plugin-grid,
  .beep-plugin-grid-showcase,
  .elementor-widget-beep-plugins .beep-plugin-grid {
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 20px;
  }

  .beep-center-btn {
    margin-top: 36px;
  }

  .beep-center-btn .btn {
    width: 100%;
    max-width: 320px;
  }

  .beep-plugin-spotlight .beep-spotlight-features {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575.98px) {
  .beep-plugins {
    padding: 56px 0;
  }

  .beep-plugins-showcase .beep-section-title-wrapper .beep-section-sub {
    margin-bottom: 32px;
  }

  .beep-plugin-filters {
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .beep-plugin-filters::-webkit-scrollbar {
    display: none;
  }

  .beep-pf-btn {
    flex-shrink: 0;
  }

  .beep-plugin-showcase-top {
    height: 160px;
  }

  .beep-plugin-showcase-img {
    min-height: 160px;
  }

  .beep-plugin-showcase-body {
    padding: 14px 18px 0;
  }

  .beep-plugin-showcase-btn {
    margin-top: 18px;
    padding: 10px 22px;
    font-size: 13px;
    min-height: 44px;
    width: min(100%, 280px);
  }

  .beep-plugin-card-showcase {
    width: 100%;
    min-width: 0;
  }

  .beep-plugin-grid > *,
  .beep-plugin-grid-showcase > * {
    min-width: 0;
  }

  .beep-plugin-meta {
    flex-wrap: wrap;
    gap: 8px 14px;
  }

  .beep-plugin-cats {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 4px;
    margin-bottom: 24px;
  }

  .beep-cat-btn {
    flex-shrink: 0;
  }

  .beep-plugin-footer {
    flex-direction: column;
    align-items: stretch;
  }

  .beep-plugin-footer .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ----------------------------------------
   FEATURED SERVICES
   ---------------------------------------- */
.beep-featured {
  padding: 96px 0;
  background: var(--white);
}

.beep-featured .beep-section-title,
.beep-featured .beep-section-sub { display: block; }

.beep-featured .beep-section-label { display: inline-block; margin-bottom: 14px; }

.beep-featured > .container { text-align: center; }

/* .beep-cards-grid grid handled by Bootstrap row g-4 */
/* Override Bootstrap's .beep-card defaults */
.beep-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: var(--transition);
  cursor: default;
  word-wrap: normal;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.beep-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: transparent;
  transform: translateY(-6px);
}

.beep-card-img { margin-bottom: 20px; }

.beep-card-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: var(--white);
}

.beep-card-icon-wrap.orange { background: linear-gradient(135deg,#F97316,#FB923C); }

.beep-card-icon-wrap.purple { background: linear-gradient(135deg,#8B5CF6,#A78BFA); }

.beep-card-icon-wrap.blue   { background: linear-gradient(135deg,#3B82F6,#60A5FA); }

.beep-card-icon-wrap.green  { background: linear-gradient(135deg,#10B981,#34D399); }

.beep-card-icon-wrap.red    { background: linear-gradient(135deg,#EF4444,#F87171); }

.beep-card-icon-wrap.teal   { background: linear-gradient(135deg,#14B8A6,#2DD4BF); }

.beep-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.beep-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.beep-card-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

.beep-card-link:hover { gap: 10px; }

/* ----------------------------------------
   EXPLORE / STATS
   ---------------------------------------- */
.beep-explore {
  padding: 96px 0;
  background: var(--light);
}

/* .beep-stats-grid grid handled by Bootstrap row g-4 */
.beep-stats-grid { margin-top: 48px; }

.beep-stat-card {
  border-radius: var(--radius);
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.beep-stat-card:hover { transform: translateY(-4px); }

/* Dark card */
.beep-dark-card {
  background: var(--dark2);
  color: var(--white);
}

.beep-dark-card .beep-stat-card-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top right, rgba(249,115,22,0.15), transparent 60%);
}

.beep-dark-card h3 { font-size: 20px; font-weight: 700; margin: 12px 0 10px; color: var(--white); }

.beep-dark-card p  { font-size: 14px; color: rgba(255,255,255,0.6); margin-bottom: 20px; }

/* Gradient card */
.beep-gradient-card {
  background: var(--grad);
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
}

.beep-stat-number {
  font-size: 56px;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}

.beep-stat-number span { font-size: 36px; }

.beep-gradient-card p { font-size: 15px; color: rgba(255,255,255,0.8); margin: 6px 0 20px; }

.beep-stat-avatars {
  display: flex;
}

.beep-stat-avatars img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.5);
  object-fit: cover;
  margin-left: -8px;
}

.beep-stat-avatars img:first-child { margin-left: 0; }

/* Accent card */
.beep-accent-card {
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.beep-accent-card h3 { font-size: 18px; font-weight: 700; color: var(--navy); margin: 12px 0 8px; }

.beep-accent-card p  { font-size: 14px; color: var(--muted); margin-bottom: 16px; }

.beep-stars { color: #F59E0B; font-size: 18px; letter-spacing: 2px; }

/* Light card */
.beep-light-card {
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.beep-light-card h3 { font-size: 18px; font-weight: 700; color: var(--navy); margin: 12px 0 8px; }

.beep-light-card p  { font-size: 14px; color: var(--muted); margin-bottom: 20px; }

/* Shared stat icons */
.beep-stat-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--white);
  background: var(--grad);
  position: relative;
  z-index: 1;
}

.beep-stat-icon.accent  { background: linear-gradient(135deg,#F59E0B,#EF4444); }

.beep-stat-icon.beep-blue-icon { background: linear-gradient(135deg,#3B82F6,#8B5CF6); }

.beep-stat-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
  position: relative;
  z-index: 1;
}

.beep-dark-card .beep-stat-link { color: rgba(255,255,255,0.7); }

.beep-stat-link:hover { gap: 10px; }

/* ----------------------------------------
   MARQUEE
   ---------------------------------------- */
.beep-marquee-section {
  background: var(--navy);
  padding: 18px 0;
  overflow: hidden;
}

.beep-marquee-track { overflow: hidden; }

.beep-marquee-content {
  display: flex;
  align-items: center;
  gap: 32px;
  white-space: nowrap;
  animation: marqueeScroll 28s linear infinite;
  width: max-content;
}

.beep-marquee-content span {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.beep-marquee-content i {
  color: var(--orange);
  font-size: 6px;
}

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ----------------------------------------
   WHY CHOOSE US
   ---------------------------------------- */
.beep-why {
  padding: 96px 0;
  background: var(--white);
}

/* .beep-why-inner grid handled by Bootstrap row g-5 align-items-start */
.beep-why-left .beep-section-title-wrapper .beep-section-label { display: inline-block; margin-bottom: 14px; }

.beep-why-left h2 {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 18px;
}

.beep-why-left > p {
  color: var(--muted);
  font-size: 16px;
  margin-bottom: 32px;
}

.beep-why-images {
  position: relative;
  height: 280px;
}

.beep-why-img { border-radius: var(--radius); object-fit: cover; }

.beep-why-img-main {
  width: 75%;
  height: 240px;
  position: absolute;
  top: 0; left: 0;
  box-shadow: var(--shadow-lg);
}

.beep-why-img-sm {
  width: 48%;
  height: 160px;
  position: absolute;
  bottom: 0; right: 0;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--white);
}

/* .beep-why-right grid handled by Bootstrap row g-3 */
.beep-feature-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--light);
  border-radius: var(--radius-sm);
  padding: 20px;
  transition: var(--transition);
}

.beep-feature-item:hover { box-shadow: var(--shadow); background: var(--white); }

.beep-fi-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--white);
}

.beep-fi-icon.orange { background: linear-gradient(135deg,#F97316,#FB923C); }

.beep-fi-icon.purple { background: linear-gradient(135deg,#8B5CF6,#A78BFA); }

.beep-fi-icon.blue   { background: linear-gradient(135deg,#3B82F6,#60A5FA); }

.beep-fi-icon.green  { background: linear-gradient(135deg,#10B981,#34D399); }

.beep-fi-icon.red    { background: linear-gradient(135deg,#EF4444,#F87171); }

.beep-fi-icon.teal   { background: linear-gradient(135deg,#14B8A6,#2DD4BF); }

.beep-fi-text h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
  line-height: 1.4;
}

.beep-fi-text p {
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.6;
}

/* ----------------------------------------
   TEAM
   ---------------------------------------- */
.beep-team-section {
  padding: 96px 0;
  background: var(--light);
}

/* .beep-team-grid grid handled by Bootstrap row g-4 */
.beep-team-section .row > [class*="col-"],
.beep-team-grid > [class*="col-"] {
  display: flex;
}

.beep-team-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  border: 1px solid var(--border);
  transition: var(--transition);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
}

.beep-team-card.beep-team-card--lg {
  padding: 0;
}

.beep-team-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-6px); border-color: transparent; }

.beep-team-photo {
  --team-ring: 3px;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 16px;
  border: var(--team-ring) solid transparent;
  background: var(--grad);
  padding: var(--team-ring);
  position: relative;
  flex-shrink: 0;
}

.beep-team-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  transition: transform 0.5s;
}

.beep-team-card h4 { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }

.beep-team-card span { font-size: 13px; color: var(--muted); }

.beep-team-socials {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: auto;
  padding-top: 16px;
}

.beep-team-socials a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: var(--muted);
  transition: var(--transition);
  text-decoration: none;
}

.beep-team-socials a:hover {
  background: var(--grad);
  color: var(--white);
}

/* ----------------------------------------
   TESTIMONIALS
   ---------------------------------------- */
.beep-testimonials {
  padding: 96px 0;
  background: var(--dark);
  background-image:
    radial-gradient(ellipse at 30% 0%,   rgba(249,115,22,0.12) 0%, transparent 55%),
    radial-gradient(ellipse at 70% 100%, rgba(139,92,246,0.1)  0%, transparent 55%);
  text-align: center;
}

/* -- Testimonial Swiper -- */
.beep-testi-outer {
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 900px;
  margin: 48px auto 0;
}

.beep-testi-swiper-wrap {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.beep-testi-swiper {
  width: 100%;
  overflow: hidden !important;
}

.beep-testi-swiper .swiper-wrapper { align-items: stretch; }

/* External arrow buttons */
.beep-testi-arrow {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  font-size: 15px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  align-self: center;
}

.beep-testi-arrow:hover { background: var(--orange); border-color: var(--orange); }

.beep-testi-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 44px 40px 36px;
  backdrop-filter: blur(8px);
  text-align: center;
}

.beep-quote-icon {
  font-size: 32px;
  color: var(--orange);
  margin-bottom: 20px;
  opacity: 0.7;
}

.beep-testi-card p {
  font-size: 17px;
  color: rgba(255,255,255,0.85);
  line-height: 1.8;
  margin-bottom: 28px;
  font-style: italic;
}

.beep-testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: center;
}

.beep-testi-author img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--orange);
  flex-shrink: 0;
}

.beep-testi-author strong { display: block; font-size: 15px; color: var(--white); }

.beep-testi-author span   { font-size: 13px; color: rgba(255,255,255,0.5); }

/* Pagination bullets — external (not inside swiper) */
.beep-testi-pagination {
  position: static !important;
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 4px;
}

.beep-testi-pagination .swiper-pagination-bullet {
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 99px;
  background: rgba(255,255,255,0.35);
  opacity: 1;
  cursor: pointer;
  transition: all 0.3s;
}

.beep-testi-pagination .swiper-pagination-bullet-active {
  background: var(--orange);
  width: 24px;
}

@media (max-width: 991.98px) {
  .beep-testimonials {
    padding: 72px 0;
  }

  .beep-testi-outer {
    margin-top: 36px;
    gap: 16px;
  }

  .beep-testi-card {
    padding: 32px 28px 28px;
  }
}

@media (max-width: 767.98px) {
  .beep-testimonials {
    padding: 56px 0;
  }

  .beep-testimonials > .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .beep-testi-outer {
    flex-direction: column;
    align-items: stretch;
    margin-top: 28px;
    gap: 14px;
    max-width: 100%;
  }

  .beep-testi-swiper-wrap {
    width: 100%;
    order: 1;
    gap: 14px;
  }

  .beep-testi-arrow {
    display: none;
  }

  .beep-testi-card {
    padding: 28px 20px 24px;
    border-radius: 14px;
  }

  .beep-quote-icon {
    font-size: 26px;
    margin-bottom: 14px;
  }

  .beep-testi-card p {
    font-size: 15px;
    line-height: 1.75;
    margin-bottom: 20px;
  }

  .beep-testi-author {
    gap: 12px;
  }

  .beep-testi-author img {
    width: 42px;
    height: 42px;
  }

  .beep-testi-author strong {
    font-size: 14px;
  }

  .beep-testi-author span {
    font-size: 12px;
  }

  .beep-testi-pagination {
    margin-top: 0;
  }

  .beep-port-testi {
    padding: 56px 0;
  }

  .beep-pt-outer {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }

  .beep-pt-wrap {
    width: 100%;
    gap: 14px;
  }

  .beep-pt-arrow {
    display: none;
  }

  .beep-tstrip-card {
    padding: 24px 20px;
  }

  .beep-tstrip-card::before {
    font-size: 56px;
    top: 16px;
    left: 16px;
  }

  .beep-tstrip-card p {
    font-size: 13.5px;
  }
}

@media (max-width: 575.98px) {
  .beep-testimonials {
    padding: 48px 0;
  }

  .beep-testi-card {
    padding: 24px 16px 20px;
  }

  .beep-testi-card p {
    font-size: 14px;
  }
}

/* ----------------------------------------
   BLOG
   ---------------------------------------- */
.beep-blog {
  padding: 96px 0;
  background: var(--white);
}

.beep-blog-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
}

.beep-blog-header .beep-section-title-wrapper .beep-section-label { display: inline-block; }

/* Blog cards */
.beep-blog-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.beep-blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.1);
  border-color: transparent;
}

.beep-blog-img {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.beep-blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.beep-blog-card:hover .beep-blog-img img { transform: scale(1.05); }

.beep-blog-tag {
  position: absolute;
  top: 14px; left: 14px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: var(--grad);
  color: var(--white);
  padding: 4px 12px;
  border-radius: 99px;
}

.beep-blog-body { padding: 24px; }

/* Blog meta */
.beep-blog-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 12px;
  align-items: flex-start;
  width: 100%;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--muted);
}

.beep-blog-meta span { font-weight: 500; }

.beep-blog-body h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.5;
  margin-bottom: 16px;
}

@media (max-width: 767.98px) {
  .beep-blog {
    padding: 56px 0;
  }

  .beep-blog > .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .beep-blog-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
    margin-bottom: 32px;
  }

  .beep-blog-header .beep-section-title-wrapper--left {
    text-align: center;
    width: 100%;
  }

  .beep-blog-header .beep-section-title-wrapper--left .beep-section-label {
    margin-left: auto;
    margin-right: auto;
  }

  .beep-blog-header .beep-section-title-wrapper--left .beep-section-title {
    margin-bottom: 0;
  }

  .beep-blog-header .btn {
    width: 100%;
    max-width: 320px;
    height: 48px;
    padding: 0 24px;
    font-size: 14px;
  }
}

/* ----------------------------------------
   TRUSTED BY
   ---------------------------------------- */
.beep-trusted {
  padding: 64px 0;
  background: var(--light);
  text-align: center;
}

.beep-trusted-title {
  font-size: 17px;
  color: var(--muted);
  margin-bottom: 36px;
}

.beep-trusted-title strong { color: var(--navy); }

.beep-trusted-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.beep-tlogo {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 26px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 99px;
  font-size: 15px;
  font-weight: 700;
  color: #6B7280;
  transition: var(--transition);
}

.beep-tlogo i { font-size: 18px; color: var(--orange); }

.beep-tlogo:hover {
  border-color: var(--orange);
  color: var(--navy);
  box-shadow: 0 4px 16px rgba(249,115,22,0.15);
  transform: translateY(-2px);
}

/* ----------------------------------------
   NEWSLETTER
   ---------------------------------------- */
.beep-newsletter {
  padding: 96px 0;
  background: var(--navy);
  background-image:
    radial-gradient(ellipse at 20% 50%, rgba(249,115,22,0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(139,92,246,0.12) 0%, transparent 60%);
  text-align: center;
}

.beep-newsletter-inner { max-width: 640px; }

.beep-newsletter h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 14px;
}

.beep-newsletter p {
  color: rgba(255,255,255,0.65);
  margin-bottom: 36px;
  font-size: 16px;
}

.beep-newsletter-form {
  display: flex;
  gap: 0;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 99px;
  padding: 6px 6px 6px 24px;
  max-width: 540px;
  margin: 0 auto 14px;
  align-items: center;
}

.beep-newsletter-form input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  color: var(--white);
  font-size: 15px;
  font-family: inherit;
  min-width: 0;
}

.beep-newsletter-form input::placeholder { color: rgba(255,255,255,0.4); }

/* Button inside the pill form — override radius & height to match pill */
.beep-newsletter-form .btn {
  flex-shrink: 0;
  border-radius: 99px;
  height: 48px;
  padding: 0 30px;
}

.beep-newsletter-note { font-size: 13px; color: rgba(255,255,255,0.4); }

/* ----------------------------------------
   FOOTER
   ---------------------------------------- */
.beep-footer {
  position: relative;
  background: var(--beep-footer-bg, var(--dark));
  color: rgba(255,255,255,0.7);
  overflow: hidden;
  isolation: isolate;
}

.beep-footer-top,
.beep-footer-bottom {
  position: relative;
  z-index: 2;
}

/* .beep-footer-top grid handled by Bootstrap row g-4 */
.beep-footer-top {
  padding: 80px 0 60px;
}

.beep-footer-logo { height: 36px; margin-bottom: 18px; }

.beep-footer-brand p {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255,255,255,0.55);
  margin-bottom: 24px;
}

.beep-footer-brand p strong { color: rgba(255,255,255,0.8); }

.beep-footer-socials {
  display: flex;
  gap: 10px;
}

.beep-footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}

.beep-footer-socials a:hover { background: var(--grad); color: var(--white); }

.beep-footer-col h5 {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
}

.beep-footer-col ul { padding-left: 0; list-style: none; margin: 0; }

.beep-footer-col ul li { margin-bottom: 10px; }

.beep-footer-col ul li a {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  transition: var(--transition);
}

.beep-footer-col ul li a:hover { color: var(--orange); padding-left: 4px; }

.beep-footer-widget .menu,
.beep-footer-widget .widget_nav_menu ul {
  padding-left: 0;
  list-style: none;
  margin: 0;
}

.beep-footer-widget .menu li,
.beep-footer-widget .widget_nav_menu ul li {
  margin-bottom: 10px;
}

.beep-footer-widget .menu a,
.beep-footer-widget .widget_nav_menu ul li a {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  transition: var(--transition);
  text-decoration: none;
}

.beep-footer-widget .menu a:hover,
.beep-footer-widget .widget_nav_menu ul li a:hover {
  color: var(--orange);
  padding-left: 4px;
}

.beep-footer-widget .textwidget {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255,255,255,0.55);
}

.beep-footer-widget .textwidget a {
  color: rgba(255,255,255,0.55);
  transition: var(--transition);
}

.beep-footer-widget .textwidget a:hover {
  color: var(--orange);
}

.beep-footer-widget .beep-footer-logo {
  height: 36px;
  margin-bottom: 18px;
}

.beep-footer-widget .beep-footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}

.beep-footer-widget .beep-contact-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.beep-footer-widget-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
}

.beep-contact-list { display: flex; flex-direction: column; gap: 12px; }

.beep-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 0;
}

.beep-contact-list li i {
  color: var(--orange);
  margin-top: 3px;
  font-size: 13px;
  flex-shrink: 0;
}

.beep-contact-list li a { color: rgba(255,255,255,0.55); transition: var(--transition); }

.beep-contact-list li a:hover { color: var(--orange); }

.beep-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 24px;
}

.beep-footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.beep-footer-bottom p { font-size: 14px; color: rgba(255,255,255,0.4); }

.beep-footer-legal {
  display: flex;
  gap: 20px;
}

.beep-footer-legal-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.beep-footer-legal-menu li {
  margin: 0;
}

.beep-footer-legal a {
  font-size: 14px;
  color: rgba(255,255,255,0.4);
  transition: var(--transition);
}

.beep-footer-legal a:hover { color: var(--orange); }

@media (max-width: 767.98px) {
  .beep-footer-bottom {
    padding: 24px 16px;
  }

  .beep-footer-bottom-inner {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 14px;
  }

  .beep-footer-bottom p {
    margin: 0;
    width: 100%;
    line-height: 1.6;
  }

  .beep-footer-legal {
    width: 100%;
    justify-content: center;
  }

  .beep-footer-legal-menu {
    justify-content: center;
    gap: 16px 24px;
  }
}

/* ----------------------------------------
   BACK TO TOP
   ---------------------------------------- */
.beep-back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--grad);
  color: var(--white);
  border: none;
  font-size: 16px;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(249,115,22,0.45);
  transition: var(--transition);
  z-index: 999;
}

.beep-back-to-top.visible { display: flex; }

.beep-back-to-top:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(249,115,22,0.55); }

/* ----------------------------------------
   PAGE HERO (inner pages)
   ---------------------------------------- */
.beep-page-hero {
  position: relative;
  background: linear-gradient(135deg, var(--beep-hero-bg-1, #0A0820) 0%, var(--beep-hero-bg-2, #15123A) 100%);
  padding: calc(var(--beep-offset-top) + var(--beep-hero-padding-top, 98px)) 0 var(--beep-hero-padding-bottom, 90px);
  text-align: center;
  overflow: hidden;
  isolation: isolate;
}

.beep-page-hero.beep-page-hero-has-image {
  background-image:
    linear-gradient(135deg, color-mix(in srgb, var(--beep-hero-bg-1, #0A0820) 88%, transparent), color-mix(in srgb, var(--beep-hero-bg-2, #15123A) 88%, transparent)),
    var(--beep-hero-bg-image);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.beep-page-hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.beep-page-hero h3,
.beep-page-hero-title {
  font-size: clamp(34px, 5vw, 54px);
  font-weight: 900;
  color: var(--beep-hero-title-color, var(--white));
  margin: 0 0 16px;
  line-height: 1.15;
}

.beep-page-hero p {
  font-size: 17px;
  color: rgba(255,255,255,0.7);
  max-width: 560px;
  margin: 0 auto 26px;
  line-height: 1.7;
}

.beep-breadcrumb {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: calc(100% - 32px);
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  background: var(--beep-breadcrumb-pill-bg, rgba(255,255,255,0.07));
  border: 1px solid var(--beep-breadcrumb-pill-border, rgba(255,255,255,0.12));
  padding: 8px 20px;
  border-radius: 99px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  gap: 12px;
}

.beep-breadcrumb .breadcrumb_list,
.beep-breadcrumb .breadcrumbs,
.beep-breadcrumb .bcn-breadcrumb-trail {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.beep-breadcrumb .breadcrumb_list > span,
.beep-breadcrumb .breadcrumbs > span {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.beep-breadcrumb a {
  color: var(--beep-breadcrumb-link-color, rgba(255,255,255,0.82));
  text-decoration: none;
  transition: var(--transition);
}

.beep-breadcrumb a:hover {
  color: var(--beep-breadcrumb-current-color, var(--orange));
}

.beep-breadcrumb a span {
  color: inherit;
  font-weight: inherit;
}

.beep-breadcrumb-sep,
.beep-breadcrumb .bcn-sep,
.beep-breadcrumb .separator {
  display: inline-flex;
  align-items: center;
  color: rgba(255,255,255,0.35);
  font-size: 10px;
  line-height: 1;
}

.beep-breadcrumb-current,
.beep-breadcrumb .current-item,
.beep-breadcrumb span[property="name"]:not(a span) {
  color: var(--beep-breadcrumb-current-color, var(--orange));
  font-weight: 600;
}

.beep-breadcrumb i {
  font-size: 10px;
  line-height: 1;
}

/* Inner pages without a hero banner */
body:not(:has(.beep-page-hero)) > section.tp-blog-area,
body:not(:has(.beep-page-hero)) > section.beepcoder-main,
body:not(:has(.beep-page-hero)) > section.beep-page-section,
body:not(:has(.beep-page-hero)) > section.beep-404-section {
  padding-top: calc(var(--beep-offset-top) + 48px);
}

/* ----------------------------------------
   PROCESS (services page)
   ---------------------------------------- */
.beep-process {
  padding: 96px 0;
  background: var(--light, #F8FAFC);
}

.beep-process-grid { margin-top: 16px; }

.beep-process-step {
  position: relative;
  background: var(--white);
  border-radius: var(--radius);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 36px 28px;
  box-shadow: 0 4px 24px rgba(15,23,42,0.06);
  transition: var(--transition);
}

.beep-process-step:hover { transform: translateY(-6px); box-shadow: 0 14px 40px rgba(15,23,42,0.10); }

.beep-step-num {
  position: absolute;
  top: 22px;
  right: 24px;
  font-size: 34px;
  font-weight: 900;
  color: rgba(15,23,42,0.07);
  line-height: 1;
}

.beep-step-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--white);
  margin-bottom: 20px;
}

.beep-step-icon.orange { background: linear-gradient(135deg,#F97316,#FB923C); }

.beep-step-icon.purple { background: linear-gradient(135deg,#8B5CF6,#A78BFA); }

.beep-step-icon.blue   { background: linear-gradient(135deg,#3B82F6,#60A5FA); }

.beep-step-icon.green  { background: linear-gradient(135deg,#10B981,#34D399); }

.beep-process-step h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.beep-process-step p {
  font-size: 14px;
  color: var(--text);
  line-height: 1.7;
  margin: 0;
}

/* ----------------------------------------
   RESPONSIVE
   ---------------------------------------- */
@media (max-width: 1024px) {
  .beep-plugin-grid,
  .beep-plugin-grid-showcase,
  .elementor-widget-beep-plugins .beep-plugin-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .beep-orbit-ring { width: 300px; height: 300px; }
}

@media (max-width: 767.98px) {
  .beep-plugin-grid,
  .beep-plugin-grid-showcase,
  .elementor-widget-beep-plugins .beep-plugin-grid {
    grid-template-columns: minmax(0, 1fr) !important;
  }
}

@media (max-width: 768px) {
  .beep-pd-section { padding: 56px 0; }
  .beep-pd-ft-header,
  .beep-pd-ft-row { grid-template-columns: 1fr 80px 80px; padding: 12px 16px; }
  .beep-pd-review-summary { padding: 24px 20px; gap: 24px; }
  .beep-pd-billing-toggle { flex-wrap: wrap; }
  .beep-pd-hero-badges { grid-template-columns: 1fr 1fr; max-width: 240px; }
  .beep-pd-sticky-inner .btn { display: none; }
}

@media (max-width: 480px) {
  .beep-pd-quick-facts { grid-template-columns: 1fr 1fr; }
  .beep-pd-ft-header .beep-pd-ft-feature,
  .beep-pd-ft-row .beep-pd-ft-feature { font-size: 13px; }
  .beep-pd-gallery-grid { grid-template-columns: 1fr; }
}

/* ----------------------------------------
   SERVICE DETAILS PAGE
   ---------------------------------------- */
/* -- Overview -- */
.beep-sd-overview {
  padding: 100px 0 80px;
}

.beep-sd-overview .col-lg-6 {
  overflow: visible;
}

.beep-sd-overview-text {
  text-align: left;
}

.beep-sd-overview-text .beep-section-label {
  display: inline-block;
  margin-left: 0;
  margin-right: auto;
}

.beep-sd-overview-text .beep-section-title {
  text-align: left;
  margin-bottom: 20px;
}

.beep-sd-overview-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 32px;
}

.beep-sd-img-wrap {
  position: relative;
  display: block;
  width: 100%;
  padding: 16px 36px 40px 12px;
  overflow: visible;
}

.beep-sd-img-wrap::before {
  content: "";
  position: absolute;
  top: 8%;
  left: 6%;
  right: 4%;
  bottom: 6%;
  background: radial-gradient(
    ellipse at center,
    rgba(255, 237, 213, 0.9) 0%,
    rgba(255, 247, 237, 0.35) 52%,
    transparent 74%
  );
  z-index: 0;
  pointer-events: none;
}

.beep-sd-img-main {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  display: block;
}

.beep-sd-icon-hero {
  width: 120px;
  height: 120px;
  border-radius: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 52px;
  color: var(--white);
}

.beep-sd-icon-hero.orange { background: linear-gradient(135deg,#F97316,#FB923C); }

.beep-sd-badge {
  position: absolute;
  z-index: 3;
  background: var(--white);
  border-radius: 14px;
  padding: 12px 18px;
  box-shadow: 0 8px 32px rgba(15, 23, 42, 0.12);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.beep-sd-badge i { color: var(--orange); font-size: 14px; margin-bottom: 2px; }

.beep-sd-badge-num {
  font-size: 20px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}

.beep-sd-badge-label {
  font-size: 11px;
  color: var(--muted);
  font-weight: 500;
  white-space: nowrap;
}

.beep-sd-badge-1 { top: 0; left: -4px; }

.beep-sd-badge-2 { bottom: 28px; left: 0; }

.beep-sd-badge-3 { top: 28px; right: 0; }

.beep-sd-desc {
  font-size: 15px;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 16px;
}

.beep-sd-desc:last-of-type {
  margin-bottom: 0;
}

.beep-sd-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.beep-tag {
  background: #f1f5f9;
  color: var(--navy);
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
  letter-spacing: 0.02em;
}

@media (min-width: 992px) {
  .beep-sd-overview-text {
    padding-left: 8px;
  }
}

@media (max-width: 991px) {
  .beep-sd-overview {
    padding: 72px 0 64px;
  }

  .beep-sd-img-wrap {
    padding: 12px 28px 32px 8px;
    margin-bottom: 8px;
  }

  .beep-sd-img-main {
    height: 360px;
  }

  .beep-sd-badge-1 {
    top: 4px;
    left: 0;
  }

  .beep-sd-badge-2 {
    bottom: 16px;
    left: 4px;
  }

  .beep-sd-badge-3 {
    top: 20px;
    right: 4px;
  }
}

@media (max-width: 575px) {
  .beep-sd-img-main {
    height: 300px;
  }

  .beep-sd-badge {
    padding: 10px 14px;
  }

  .beep-sd-badge-num {
    font-size: 17px;
  }

  .beep-sd-badge-label {
    font-size: 10px;
  }
}

/* -- What's Included -- */
.beep-sd-included {
  padding: 80px 0;
  background: var(--light);
}

.beep-sd-feature-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  border: 1px solid var(--border);
  transition: var(--transition);
  height: 100%;
}

.beep-sd-feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.beep-sd-feat-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--white);
  margin-bottom: 18px;
}

.beep-sd-feat-icon.orange { background: linear-gradient(135deg,#F97316,#FB923C); }

.beep-sd-feat-icon.purple { background: linear-gradient(135deg,#8B5CF6,#A78BFA); }

.beep-sd-feat-icon.blue   { background: linear-gradient(135deg,#3B82F6,#60A5FA); }

.beep-sd-feat-icon.green  { background: linear-gradient(135deg,#10B981,#34D399); }

.beep-sd-feat-icon.red    { background: linear-gradient(135deg,#EF4444,#F87171); }

.beep-sd-feat-icon.teal   { background: linear-gradient(135deg,#14B8A6,#2DD4BF); }

.beep-sd-feature-card h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.beep-sd-feature-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}

/* -- Tech Stack -- */
.beep-sd-tech {
  padding: 80px 0;
}

.beep-sd-tech-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.beep-sd-tech-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  transition: var(--transition);
  text-align: center;
}

.beep-sd-tech-item:hover {
  border-color: var(--orange);
  box-shadow: 0 8px 32px rgba(249,115,22,0.10);
  transform: translateY(-4px);
}

.beep-sd-tech-item i {
  font-size: 36px;
  color: var(--orange);
}

.beep-sd-tech-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.beep-sd-tech-img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}

.beep-sd-tech-item span,
.beep-sd-tech-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
}

/* -- Pricing -- */
.beep-sd-pricing {
  padding: 80px 0;
  background: var(--light);
}

.beep-price-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: var(--transition);
}

.beep-price-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}

.beep-price-card-popular {
  border-color: var(--orange);
  box-shadow: 0 8px 40px rgba(249,115,22,0.14);
}

.beep-price-popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--grad);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 5px 16px;
  border-radius: 100px;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.beep-price-header { margin-bottom: 20px; }

.beep-price-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--white);
  margin-bottom: 16px;
}

.beep-price-icon.orange { background: linear-gradient(135deg,#F97316,#FB923C); }

.beep-price-icon.blue   { background: linear-gradient(135deg,#3B82F6,#60A5FA); }

.beep-price-icon.purple { background: linear-gradient(135deg,#8B5CF6,#A78BFA); }

.beep-price-header h4 {
  font-size: 20px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 6px;
}

.beep-price-header p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

.beep-price-amount {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 24px;
}

.beep-price-currency {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
}

.beep-price-num {
  font-size: 42px;
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
}

.beep-price-period {
  font-size: 13px;
  color: var(--muted);
}

.beep-price-features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.beep-price-features li {
  font-size: 14px;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 10px;
}

.beep-price-features li i.fa-check { color: #10B981; font-size: 12px; flex-shrink: 0; }

.beep-price-features li i.fa-times { color: #CBD5E1; font-size: 12px; flex-shrink: 0; }

.beep-price-disabled { opacity: 0.45; }

/* -- FAQ -- */
.beep-sd-faq {
  padding: 80px 0;
}

.beep-sd-faq > .container > .beep-section-label,
.beep-sd-faq > .container > .beep-section-title,
.beep-sd-faq > .container > .beep-section-sub {
  text-align: center;
}

.beep-sd-faq > .container > .beep-section-label {
  display: inline-block;
  width: 100%;
}

.beep-sd-faq-intro {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.beep-sd-faq-sub {
  margin-bottom: 0;
}

.beep-sd-faq-link {
  color: var(--orange);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
}

.beep-sd-faq-link:hover {
  color: var(--navy);
}

.beep-faq-list {
  max-width: 760px;
  margin: 48px auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.beep-faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.beep-faq-item:hover {
  border-color: rgba(249, 115, 22, 0.35);
}

.beep-faq-item.open {
  border-color: var(--orange);
  box-shadow: 0 12px 40px rgba(249, 115, 22, 0.1);
}

.beep-faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  text-align: left;
}

.beep-faq-q:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: -2px;
}

.beep-faq-q-text,
.beep-faq-q > span:not(.beep-faq-icon-wrap) {
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.5;
  flex: 1;
  min-width: 0;
}

.beep-faq-icon-wrap {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(249, 115, 22, 0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.25s ease;
}

.beep-faq-item.open .beep-faq-icon-wrap {
  background: var(--orange);
}

.beep-faq-icon-wrap .beep-faq-icon,
.beep-faq-q > .beep-faq-icon {
  color: var(--orange);
  font-size: 12px;
  flex-shrink: 0;
  transition: transform 0.3s ease, color 0.25s ease;
}

.beep-faq-item.open .beep-faq-icon-wrap .beep-faq-icon,
.beep-faq-item.open .beep-faq-q > .beep-faq-icon {
  color: var(--white);
  transform: rotate(45deg);
}

.beep-faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease;
  padding: 0 24px;
}

.beep-faq-item.open .beep-faq-a {
  grid-template-rows: 1fr;
  padding: 0 24px 20px;
}

.beep-faq-a-inner,
.beep-faq-a > p {
  overflow: hidden;
  min-height: 0;
}

.beep-faq-a p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.8;
  margin: 0;
}

@media (max-width: 767.98px) {
  .beep-sd-faq {
    padding: 56px 0;
  }

  .beep-sd-faq > .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .beep-faq-list {
    margin-top: 28px;
    gap: 10px;
  }

  .beep-faq-q {
    align-items: flex-start;
    padding: 16px;
    gap: 12px;
  }

  .beep-faq-q-text {
    font-size: 14px;
    line-height: 1.55;
  }

  .beep-faq-icon-wrap {
    width: 28px;
    height: 28px;
    margin-top: 1px;
  }

  .beep-faq-icon-wrap .beep-faq-icon,
  .beep-faq-q > .beep-faq-icon {
    font-size: 11px;
  }

  .beep-faq-item.open .beep-faq-a,
  .beep-faq-a {
    padding-left: 16px;
    padding-right: 16px;
  }

  .beep-faq-item.open .beep-faq-a {
    padding-bottom: 16px;
  }

  .beep-faq-a p {
    font-size: 13px;
    line-height: 1.7;
  }
}

@media (max-width: 575px) {
  .beep-sd-faq {
    padding: 48px 0;
  }

  .beep-faq-list {
    margin-top: 24px;
  }
}

/* -- Related Services -- */
.beep-sd-related {
  padding: 80px 0;
  background: var(--light);
}

/* Responsive */
@media (max-width: 991px) {
  .beep-blog-sidebar,
  .beep-bsingle-sidebar {
    position: static;
    margin-top: 48px;
    top: auto;
    max-height: none;
    overflow: visible;
    padding-left: 0;
  }
  .beep-bsingle-sidebar-col { width: 100%; }
  .beep-bsingle-comments-row { margin-top: 0; }
  .beep-bsingle-prevnext { grid-template-columns: 1fr; }
  .beep-bsingle-next { text-align: left; }
  .beep-bsingle-next .beep-bsingle-nav-dir { justify-content: flex-start; }
  .beep-portfolio-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ----------------------------------------
   CONTACT PAGE
   ---------------------------------------- */
/* -- Main section -- */
.beep-contact-section {
  padding: 100px 0 80px;
  background: var(--light, #f8fafc);
}

.beep-contact-info .beep-section-title {
  text-align: left;
  margin-bottom: 14px;
}

/* -- Info column -- */
.beep-contact-info { padding-right: 16px; }

.beep-contact-intro {
  font-size: 15px;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 36px;
}

.beep-cinfo-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 36px;
}

.beep-cinfo-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.beep-cinfo-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--white);
  flex-shrink: 0;
}

.beep-cinfo-icon.orange { background: linear-gradient(135deg,#F97316,#FB923C); }

.beep-cinfo-icon.blue   { background: linear-gradient(135deg,#3B82F6,#60A5FA); }

.beep-cinfo-icon.purple { background: linear-gradient(135deg,#8B5CF6,#A78BFA); }

.beep-cinfo-icon.green  { background: linear-gradient(135deg,#10B981,#34D399); }

.beep-cinfo-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 3px;
}

.beep-cinfo-value {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
  transition: color 0.2s;
}

a.beep-cinfo-value:hover { color: var(--orange); }

.beep-contact-social-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}

.beep-contact-socials {
  display: flex;
  gap: 10px;
}

.beep-contact-socials a {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 15px;
  transition: var(--transition);
  text-decoration: none;
}

.beep-contact-socials a:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
  transform: translateY(-3px);
}

/* -- Form card -- */
.beep-contact-form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 44px 40px;
  box-shadow: 0 8px 48px rgba(15,23,42,0.07);
  overflow: visible;
  position: relative;
  z-index: 1;
}

.beep-contact-form-card h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 6px;
}

.beep-contact-form-card > p {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 28px;
}

@media (max-width: 767.98px) {
  .beep-contact-section {
    padding: 72px 0 56px;
  }

  .beep-contact-info {
    padding-right: 0;
    margin-bottom: 8px;
  }

  .beep-contact-form-card {
    padding: 28px 20px;
  }
}

/* -- Form fields -- */
.beep-form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.beep-form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
}

.beep-form-group label .beep-required { color: var(--orange); }

.beep-form-group input,
.beep-form-group select,
.beep-form-group textarea,
.beep-form-group .beep-cf-input {
  width: 100%;
  background: #f8fafc;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 14px;
  color: var(--navy);
  font-family: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.beep-form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2394a3b8' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.beep-form-group input:focus,
.beep-form-group select:focus,
.beep-form-group textarea:focus,
.beep-form-group .beep-cf-input:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(249,115,22,0.10);
  background: #fff;
}

.beep-form-group input::placeholder,
.beep-form-group textarea::placeholder { color: #94a3b8; }

.beep-form-group textarea { resize: vertical; min-height: 120px; }

/* -- Budget pills -- */
.beep-budget-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.beep-budget-opt {
  cursor: pointer;
}

.beep-budget-opt input { display: none; }

.beep-budget-opt span {
  display: block;
  padding: 8px 18px;
  border: 1.5px solid var(--border);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  transition: var(--transition);
  white-space: nowrap;
}

.beep-budget-opt:hover span,
.beep-budget-opt.selected span,
.beep-budget-opt input:checked + span {
  border-color: var(--orange);
  background: #fff7ed;
  color: var(--orange);
}

/* -- Contact form layout -- */
.beep-contact-form-card .beep-contact-form-wrap {
  width: 100%;
}

.beep-contact-form-card .beep-contact-form {
  margin: 0;
}

.beep-contact-form-card .beep-contact-submit-col {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.beep-contact-form-card .beep-contact-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.beep-contact-form-card .beep-cf-select {
  cursor: pointer;
}

/* -- Contact Form 7 (plugin adds .wpcf7 wrapper — theme classes on fields via CF7 template) -- */
.beep-contact-form-card .wpcf7 .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}

.beep-contact-form-card .wpcf7 .wpcf7-form-control-wrap .wpcf7-form-control {
  width: 100%;
}

.beep-contact-form-card .wpcf7 select.beep-cf-select,
.beep-contact-form-card .wpcf7 select.beep-cf-input {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2394a3b8' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}

.beep-contact-form-card .wpcf7 .row {
  --bs-gutter-x: 1rem;
  --bs-gutter-y: 1rem;
}

.beep-contact-form-card .wpcf7 .beep-contact-submit-col {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.beep-contact-form-card .wpcf7 .beep-contact-submit-col .wpcf7-spinner {
  margin: 0;
}

/* Reset CF7 default radio/checkbox list spacing inside contact card */
.beep-contact-form-card .wpcf7 .wpcf7-list-item {
  margin: 0;
}

.beep-contact-form-card .wpcf7 .wpcf7-list-item-label::before,
.beep-contact-form-card .wpcf7 .wpcf7-list-item-label::after {
  content: none;
  display: none;
}

.beep-contact-form-card select.beep-cs-native-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.beep-contact-form-card .beep-form-group .beep-custom-select,
.beep-contact-form-card .wpcf7-form-control-wrap .beep-custom-select {
  width: 100%;
}

.beep-contact-form-card .wpcf7-form-control-wrap:has(select.wpcf7-not-valid) .beep-cs-trigger {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.beep-contact-form-card .wpcf7 .beep-budget-options,
.beep-contact-form-card .wpcf7 .wpcf7-radio.beep-budget-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.beep-contact-form-card .wpcf7 .beep-budget-options > .wpcf7-list-item,
.beep-contact-form-card .wpcf7 .beep-budget-options > label {
  margin: 0;
}

.beep-contact-form-card .wpcf7 .beep-budget-options .wpcf7-list-item {
  display: inline-flex;
  margin: 0;
}

.beep-contact-form-card .wpcf7 .beep-budget-options .wpcf7-list-item label {
  display: inline-flex;
  align-items: center;
  margin: 0;
  cursor: pointer;
}

.beep-contact-form-card .wpcf7 .beep-budget-options .wpcf7-list-item input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  margin: 0;
  pointer-events: none;
}

.beep-contact-form-card .wpcf7 .beep-budget-opt .wpcf7-list-item-label,
.beep-contact-form-card .wpcf7 .beep-budget-options .wpcf7-list-item .wpcf7-list-item-label {
  display: block;
  padding: 8px 18px;
  border: 1.5px solid var(--border);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  transition: var(--transition);
  white-space: nowrap;
  cursor: pointer;
}

.beep-contact-form-card .wpcf7 .beep-budget-opt:hover .wpcf7-list-item-label,
.beep-contact-form-card .wpcf7 .beep-budget-options .wpcf7-list-item label:hover .wpcf7-list-item-label,
.beep-contact-form-card .wpcf7 .beep-budget-opt input:checked + .wpcf7-list-item-label,
.beep-contact-form-card .wpcf7 .beep-budget-options .wpcf7-list-item input:checked + .wpcf7-list-item-label {
  border-color: var(--orange);
  background: #fff7ed;
  color: var(--orange);
}

.beep-contact-form-card .wpcf7 .wpcf7-not-valid-tip {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  font-weight: 500;
  color: #ef4444;
}

.beep-contact-form-card .wpcf7 .beep-cf-input.wpcf7-not-valid {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.beep-contact-form-card .wpcf7 .wpcf7-response-output {
  display: none;
  margin: 0 0 20px;
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  border: 1.5px solid transparent;
}

.beep-contact-form-card .wpcf7 form.sent .wpcf7-response-output,
.beep-contact-form-card .wpcf7 form.invalid .wpcf7-response-output,
.beep-contact-form-card .wpcf7 form.failed .wpcf7-response-output,
.beep-contact-form-card .wpcf7 form.aborted .wpcf7-response-output,
.beep-contact-form-card .wpcf7 form.spam .wpcf7-response-output {
  display: block;
}

.beep-contact-form-card .wpcf7 form.sent .wpcf7-response-output {
  background: #ecfdf5;
  border-color: #a7f3d0;
  color: #047857;
}

.beep-contact-form-card .wpcf7 form.invalid .wpcf7-response-output,
.beep-contact-form-card .wpcf7 form.failed .wpcf7-response-output {
  background: #fef2f2;
  border-color: #fecaca;
  color: #b91c1c;
}

.beep-contact-form-card .wpcf7 .wpcf7-spinner {
  margin-left: 10px;
  vertical-align: middle;
}

.beep-contact-form-card .wpcf7 .hidden-fields-container,
.beep-contact-form-card .wpcf7 .screen-reader-response ul:empty {
  display: none;
}

/* -- Submit button loading state -- */
.beep-contact-submit {
  position: relative;
  min-width: 180px;
  transition: var(--transition);
}

.beep-contact-submit.loading {
  pointer-events: none;
  opacity: 0.7;
}

.beep-contact-submit.loading span::after {
  content: '...';
}

/* -- Success state -- */
.beep-contact-success {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 20px;
  gap: 12px;
}

.beep-success-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg,#10B981,#34D399);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: var(--white);
  margin-bottom: 8px;
}

.beep-contact-success h4 {
  font-size: 22px;
  font-weight: 800;
  color: var(--navy);
  margin: 0;
}

.beep-contact-success p {
  font-size: 15px;
  color: var(--muted);
  margin: 0;
}

/* -- Why cards -- */
.beep-contact-why {
  padding: 80px 0;
  background: var(--light);
}

.beep-why-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  position: relative;
  transition: var(--transition);
  height: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.beep-why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.beep-why-num {
  position: absolute;
  top: 18px;
  right: 20px;
  font-size: 42px;
  font-weight: 900;
  color: rgba(15,23,42,0.06);
  line-height: 1;
}

.beep-why-card h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin: 14px 0 10px;
}

.beep-why-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}

/* -- Map -- */
.beep-contact-map { padding: 0 0 80px; }

.beep-map-wrap {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.beep-map-placeholder {
  background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
  height: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  transition: background 0.2s;
}

.beep-map-placeholder:hover { background: linear-gradient(135deg, #e2e8f0, #cbd5e1); }

.beep-map-placeholder i {
  font-size: 48px;
  color: var(--orange);
  margin-bottom: 4px;
}

.beep-map-placeholder h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin: 0;
}

.beep-map-placeholder p {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
  text-decoration: underline;
}

/* -- Custom Select -- */
.beep-custom-select {
  position: relative;
  z-index: 1;
}

.beep-custom-select.open {
  z-index: 100;
}

.beep-cs-trigger {
  width: 100%;
  box-sizing: border-box;
  background: #f8fafc;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 14px;
  font-family: inherit;
  color: #94a3b8;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  cursor: pointer;
  text-align: left;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.beep-cs-trigger.has-value { color: var(--navy); }

.beep-cs-value {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.beep-cs-trigger:focus,
.beep-custom-select.open .beep-cs-trigger {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(249,115,22,0.10);
  background: #fff;
}

.beep-cs-arrow {
  font-size: 11px;
  color: #94a3b8;
  flex-shrink: 0;
  transition: transform 0.25s;
}

.beep-custom-select.open .beep-cs-arrow { transform: rotate(180deg); }

.beep-cs-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  width: 100%;
  box-sizing: border-box;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(15,23,42,0.12);
  list-style: none;
  padding: 6px;
  margin: 0;
  z-index: 200;
  display: none;
  max-height: 280px;
  overflow-y: auto;
}

.beep-custom-select.open .beep-cs-dropdown { display: block; }

.beep-cs-dropdown li {
  padding: 10px 14px;
  font-size: 14px;
  color: var(--navy);
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  font-weight: 500;
}

.beep-cs-dropdown li:hover { background: #fff7ed; color: var(--orange); }

.beep-cs-dropdown li.selected { background: #fff7ed; color: var(--orange); font-weight: 600; }

/* ----------------------------------------
   PLUGINS PAGE
   ---------------------------------------- */
/* -- Stats bar -- */
.beep-plugins-stats {
  padding: 36px 0;
  border-bottom: 1px solid var(--border);
}

.beep-pstats-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.beep-pstat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 48px;
  gap: 4px;
}

.beep-pstat-num {
  font-size: 28px;
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 8px;
}

.beep-pstat-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.beep-pstat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* -- Main section -- */
.beep-plugins-main { padding: 72px 0 80px; }

/* -- Search + filter bar -- */
.beep-plugins-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.beep-plugins-search {
  position: relative;
  flex: 1;
  min-width: 220px;
  max-width: 360px;
}

.beep-plugins-search i {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
  font-size: 14px;
}

.beep-plugins-search input {
  width: 100%;
  background: #f8fafc;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 11px 16px 11px 40px;
  font-size: 14px;
  font-family: inherit;
  color: var(--navy);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.beep-plugins-search input:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(249,115,22,0.10);
  background: #fff;
}

.beep-plugins-filters { margin-bottom: 0; }

/* -- Category tabs -- */
.beep-plugin-cats {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.beep-cat-btn {
  background: #f1f5f9;
  border: none;
  border-radius: 100px;
  padding: 7px 18px;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  transition: var(--transition);
  font-family: inherit;
}

.beep-cat-btn:hover { background: #e2e8f0; color: var(--navy); }

.beep-cat-btn.active { background: var(--navy); color: var(--white); }

/* -- Plugin grid inherits .beep-plugin-grid -- */
.beep-plugins-grid { margin-top: 0; }

/* -- No results -- */
.beep-no-results {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  gap: 12px;
  text-align: center;
}

.beep-no-results i { font-size: 48px; color: var(--border); }

.beep-no-results h4 { font-size: 18px; font-weight: 700; color: var(--navy); margin: 0; }

.beep-no-results p  { font-size: 14px; color: var(--muted); margin: 0; }

/* -- Featured / spotlight -- */
.beep-plugin-spotlight {
  padding: 80px 0;
  background: var(--light);
}

.beep-spotlight-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 20px;
  margin-top: 20px;
}

.beep-sf-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
}

.beep-sf-item i { color: #10B981; font-size: 15px; flex-shrink: 0; }

/* -- Spotlight visual -- */
.beep-spotlight-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.beep-spotlight-card {
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 24px 80px rgba(15,23,42,0.12);
  overflow: hidden;
  width: 100%;
  max-width: 440px;
}

.beep-spotlight-player {
  background: #0f172a;
  padding: 0;
}

.beep-yt-wrap {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 */
  background: #0f172a;
}

.beep-yt-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.beep-player-progress {
  height: 3px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  margin-bottom: 12px;
  overflow: hidden;
}

.beep-player-bar {
  width: 38%;
  height: 100%;
  background: var(--orange);
  border-radius: 2px;
}

.beep-player-btns {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.beep-player-left, .beep-player-right {
  display: flex;
  gap: 16px;
  align-items: center;
  color: rgba(255,255,255,0.6);
  font-size: 14px;
}

.beep-player-left i:nth-child(2) { color: #fff; font-size: 16px; }

.beep-spotlight-meta {
  display: flex;
  padding: 20px 24px;
  gap: 0;
}

.beep-sm-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  border-right: 1px solid var(--border);
}

.beep-sm-item:last-child { border-right: none; }

.beep-sm-label { font-size: 11px; color: var(--muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; }

.beep-sm-val { font-size: 15px; font-weight: 800; color: var(--navy); }

/* ----------------------------------------
   PLUGIN DETAILS PAGE
   ---------------------------------------- */
/* -- Hero -- */
.beep-pd-hero {
  position: relative;
  background: var(--dark);
  background-image:
    radial-gradient(ellipse at 15% 50%, rgba(249,115,22,0.12) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 20%, rgba(139,92,246,0.1) 0%, transparent 55%);
  padding: 120px 0 80px;
  overflow: hidden;
}

/* Video poster (thumbnail + play button) */
.beep-pd-video-poster {
  display: block;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.45);
  text-decoration: none;
  line-height: 0;
}

.beep-pd-video-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.beep-pd-video-poster:hover img {
  transform: scale(1.03);
}

.beep-pd-play-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15,13,42,0.45);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: background 0.3s;
}

.beep-pd-video-poster:hover .beep-pd-play-overlay {
  background: rgba(15,13,42,0.55);
}

.beep-pd-play-circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: var(--dark);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  padding-left: 4px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.beep-pd-video-poster:hover .beep-pd-play-circle {
  transform: scale(1.1);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}

.beep-pd-play-label {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.beep-pd-hero-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.beep-pd-category {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  display: flex;
  align-items: center;
  gap: 5px;
}

.beep-pd-title {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 16px;
}

.beep-pd-subtitle {
  font-size: 16px;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  max-width: 580px;
  margin-bottom: 24px;
}

.beep-pd-ratings-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
}

.beep-pd-stars { display: flex; gap: 2px; color: #FBBF24; font-size: 13px; }

.beep-pd-rating-num { font-weight: 800; color: var(--white); font-size: 14px; }

.beep-pd-rating-count, .beep-pd-installs, .beep-pd-updated { color: rgba(255,255,255,0.55); font-size: 13px; }

.beep-pd-installs i, .beep-pd-updated i { color: var(--orange); margin-right: 3px; }

.beep-pd-sep { color: rgba(255,255,255,0.2); }

.beep-pd-hero-btns {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.beep-pd-demo-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color 0.2s;
}

.beep-pd-demo-link i { color: var(--orange); font-size: 18px; }

.beep-pd-demo-link:hover { color: var(--white); }

/* Hero YouTube video */
.beep-pd-hero-video {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

/* Hero visual */
.beep-pd-hero-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.beep-pd-icon-wrap {
  width: 120px;
  height: 120px;
  border-radius: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 52px;
  color: var(--white);
  box-shadow: 0 24px 60px rgba(249,115,22,0.35);
}

.beep-pd-icon-wrap.orange { background: linear-gradient(135deg,#F97316,#FB923C); }

.beep-pd-hero-badges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  width: 100%;
  max-width: 280px;
}

.beep-pd-hbadge {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

.beep-pd-hbadge i { color: var(--orange); font-size: 13px; }

/* -- Sticky nav -- */
.beep-pd-sticky {
  position: sticky;
  top: 0;
  z-index: 500;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(15,23,42,0.07);
  transform: translateY(-100%);
  transition: transform 0.3s ease;
}

.beep-pd-sticky.visible { transform: translateY(0); }

.beep-pd-sticky-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 54px;
}

.beep-pd-sticky-tabs {
  display: flex;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
}

.beep-pd-sticky-tabs::-webkit-scrollbar { display: none; }

.beep-pd-stab {
  padding: 16px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  transition: color 0.2s, border-color 0.2s;
}

.beep-pd-stab:hover { color: var(--navy); }

.beep-pd-stab.active { color: var(--orange); border-bottom-color: var(--orange); }

/* -- Sections -- */
.beep-pd-section {
  padding: 80px 0;
}

.beep-pd-features-section { background: var(--light); }

.beep-pd-body-text {
  font-size: 15px;
  color: var(--text);
  line-height: 1.85;
  margin-bottom: 16px;
}

/* Quick facts grid */
.beep-pd-quick-facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  margin-top: 32px;
}

.beep-pd-fact {
  background: var(--white);
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.beep-pd-fact-label { font-size: 11px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: 0.05em; }

.beep-pd-fact-val { font-size: 13px; font-weight: 700; color: var(--navy); }

/* -- Sidebar -- */
.beep-pd-sidebar { display: flex; flex-direction: column; gap: 16px; position: sticky; top: 70px; }

.beep-pd-sidebar-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
}

.beep-pd-price-display {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 20px;
  gap: 4px;
}

.beep-pd-price-label { font-size: 11px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; }

.beep-pd-price-free { font-size: 38px; font-weight: 900; color: #10B981; line-height: 1; }

.beep-pd-price-sub { font-size: 12px; color: var(--muted); }

.beep-pd-sidebar-divider {
  text-align: center;
  font-size: 12px;
  color: var(--muted);
  margin: 14px 0;
  position: relative;
}

.beep-pd-sidebar-divider::before,
.beep-pd-sidebar-divider::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 42%;
  height: 1px;
  background: var(--border);
}

.beep-pd-sidebar-divider::before { left: 0; }

.beep-pd-sidebar-divider::after { right: 0; }

.beep-pd-sidebar-checklist {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.beep-pd-sidebar-checklist li {
  font-size: 13px;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 8px;
}

.beep-pd-sidebar-checklist li i { color: #10B981; font-size: 12px; }

.beep-pd-sidebar-info h5 { font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 14px; }

.beep-pd-info-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }

.beep-pd-info-list li { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--text); }

.beep-pd-info-list li i { color: var(--orange); font-size: 13px; width: 16px; text-align: center; }

/* -- Feature comparison table -- */
.beep-pd-feat-table {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 36px;
}

.beep-pd-ft-header {
  display: grid;
  grid-template-columns: 1fr 120px 120px;
  background: var(--navy);
  padding: 14px 24px;
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
}

.beep-pd-ft-col { text-align: center; }

.free-col { color: rgba(255,255,255,0.6); }

.pro-col { color: var(--orange); display: flex; align-items: center; justify-content: center; gap: 5px; }

.beep-pd-ft-group-label {
  background: #f8fafc;
  padding: 10px 24px;
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-top: 1px solid var(--border);
}

.beep-pd-ft-row {
  display: grid;
  grid-template-columns: 1fr 120px 120px;
  padding: 13px 24px;
  border-top: 1px solid var(--border);
  align-items: center;
  transition: background 0.15s;
}

.beep-pd-ft-row:hover { background: #fafafa; }

.beep-pd-ft-feature { font-size: 14px; color: var(--text); font-weight: 500; }

.beep-pd-ft-header .beep-pd-ft-feature { color: rgba(255,255,255,0.7); }

.beep-ft-yes { color: #10B981; font-size: 14px; }

.beep-ft-no  { color: #CBD5E1; font-size: 14px; }

.beep-ft-limited { font-size: 12px; font-weight: 700; color: var(--orange); background: #fff7ed; padding: 3px 8px; border-radius: 6px; }

/* -- Demo section -- */
.beep-pd-demo-wrap { max-width: 860px; margin: 36px auto 0; }

.beep-pd-demo-tabs {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.beep-pd-dtab {
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 600;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  color: var(--muted);
  cursor: pointer;
  font-family: inherit;
  transition: var(--transition);
}

.beep-pd-dtab:hover { border-color: var(--orange); color: var(--orange); }

.beep-pd-dtab.active { background: var(--navy); border-color: var(--navy); color: var(--white); }

.beep-pd-demo-player { border-radius: 16px; overflow: hidden; box-shadow: 0 20px 60px rgba(15,23,42,0.14); }

/* -- Screenshots -- */
.beep-pd-screenshots {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 36px;
}

.beep-pd-ss-main {
  background: #f1f5f9;
  border-radius: 16px;
  height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  overflow: hidden;
  transition: background 0.2s;
}

.beep-pd-ss-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: var(--muted);
}

.beep-pd-ss-placeholder i { font-size: 52px; color: var(--border); }

.beep-pd-ss-placeholder span { font-size: 14px; font-weight: 600; }

.beep-pd-ss-thumbs {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: none;
}

.beep-pd-ss-thumbs::-webkit-scrollbar { display: none; }

.beep-pd-ss-thumb {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  flex-shrink: 0;
}

.beep-pd-ss-thumb-inner {
  width: 80px;
  height: 56px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--white);
  border: 2px solid transparent;
  transition: var(--transition);
}

.beep-pd-ss-thumb-inner.orange { background: linear-gradient(135deg,#F97316,#FB923C); }

.beep-pd-ss-thumb-inner.blue   { background: linear-gradient(135deg,#3B82F6,#60A5FA); }

.beep-pd-ss-thumb-inner.purple { background: linear-gradient(135deg,#8B5CF6,#A78BFA); }

.beep-pd-ss-thumb-inner.green  { background: linear-gradient(135deg,#10B981,#34D399); }

.beep-pd-ss-thumb-inner.red    { background: linear-gradient(135deg,#EF4444,#F87171); }

.beep-pd-ss-thumb.active .beep-pd-ss-thumb-inner,
.beep-pd-ss-thumb:hover .beep-pd-ss-thumb-inner { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(249,115,22,0.2); }

.beep-pd-ss-thumb span { font-size: 11px; font-weight: 600; color: var(--muted); }

/* -- Billing toggle -- */
.beep-pd-billing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 32px;
}

.beep-pd-billing-opt {
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

.beep-pd-billing-opt.active { color: var(--navy); }

.beep-pd-save-badge {
  background: #dcfce7;
  color: #16a34a;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 100px;
  white-space: nowrap;
  vertical-align: middle;
}

.beep-pd-toggle-switch { position: relative; width: 44px; height: 24px; cursor: pointer; }

.beep-pd-toggle-switch input { opacity: 0; width: 0; height: 0; position: absolute; }

.beep-pd-toggle-knob {
  position: absolute;
  inset: 0;
  background: #e2e8f0;
  border-radius: 100px;
  transition: background 0.25s;
}

.beep-pd-toggle-knob::before {
  content: '';
  position: absolute;
  width: 18px; height: 18px;
  left: 3px; top: 3px;
  background: var(--white);
  border-radius: 50%;
  box-shadow: 0 1px 4px rgba(0,0,0,0.15);
  transition: transform 0.25s;
}

.beep-pd-toggle-switch input:checked + .beep-pd-toggle-knob { background: var(--orange); }

.beep-pd-toggle-switch input:checked + .beep-pd-toggle-knob::before { transform: translateX(20px); }

/* -- Reviews -- */
.beep-pd-review-summary {
  display: flex;
  align-items: center;
  gap: 48px;
  background: var(--light);
  border-radius: var(--radius);
  padding: 32px 36px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.beep-pd-review-score {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  min-width: 100px;
}

.beep-pd-score-num { font-size: 52px; font-weight: 900; color: var(--navy); line-height: 1; }

.beep-pd-score-stars { display: flex; gap: 3px; color: #FBBF24; font-size: 16px; }

.beep-pd-score-count { font-size: 12px; color: var(--muted); font-weight: 600; }

.beep-pd-review-bars { flex: 1; display: flex; flex-direction: column; gap: 8px; min-width: 200px; }

.beep-pd-rbar { display: flex; align-items: center; gap: 10px; font-size: 12px; color: var(--muted); font-weight: 600; }

.beep-pd-rbar > span:first-child { width: 24px; text-align: right; flex-shrink: 0; }

.beep-pd-rbar > span:last-child { width: 36px; flex-shrink: 0; }

.beep-pd-rbar-track { flex: 1; height: 8px; background: var(--border); border-radius: 4px; overflow: hidden; }

.beep-pd-rbar-fill { height: 100%; background: var(--orange); border-radius: 4px; }

.beep-pd-review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  height: 100%;
  transition: var(--transition);
}

.beep-pd-review-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: transparent; }

.beep-pd-review-header { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }

.beep-pd-reviewer-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 800; color: var(--white);
  flex-shrink: 0;
}

.beep-pd-reviewer-avatar.orange { background: linear-gradient(135deg,#F97316,#FB923C); }

.beep-pd-reviewer-avatar.blue   { background: linear-gradient(135deg,#3B82F6,#60A5FA); }

.beep-pd-reviewer-avatar.purple { background: linear-gradient(135deg,#8B5CF6,#A78BFA); }

.beep-pd-reviewer-name { font-size: 14px; font-weight: 700; color: var(--navy); }

.beep-pd-reviewer-meta { font-size: 12px; color: var(--muted); }

.beep-pd-review-stars { color: #FBBF24; font-size: 13px; margin-bottom: 10px; display: flex; gap: 2px; }

.beep-pd-review-title { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }

.beep-pd-review-body { font-size: 14px; color: var(--muted); line-height: 1.7; margin: 0; }

/* -- Changelog -- */
.beep-pd-changelog {
  max-width: 760px;
  margin: 36px auto 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.beep-pd-cl-item {
  padding: 28px 0 28px 28px;
  border-left: 2px solid var(--border);
  position: relative;
}

.beep-pd-cl-item::before {
  content: '';
  position: absolute;
  left: -7px;
  top: 32px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--border);
  border: 2px solid var(--white);
}

.beep-pd-cl-latest { border-left-color: var(--orange); }

.beep-pd-cl-latest::before { background: var(--orange); }

.beep-pd-cl-version {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.beep-pd-cl-tag {
  font-size: 10px;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.beep-pd-cl-tag.latest { background: var(--orange); color: var(--white); }

.beep-pd-cl-num { font-size: 16px; font-weight: 800; color: var(--navy); }

.beep-pd-cl-date { font-size: 12px; color: var(--muted); font-weight: 600; }

.beep-pd-cl-notes {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.beep-pd-cl-notes li {
  font-size: 14px;
  color: var(--text);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}

.beep-pd-cl-notes li::before {
  content: '';
  flex-shrink: 0;
  width: 8px; height: 8px;
  border-radius: 50%;
  margin-top: 5px;
}

.beep-pd-cl-notes li.new::before    { background: #10B981; }

.beep-pd-cl-notes li.fix::before    { background: #EF4444; }

.beep-pd-cl-notes li.improve::before { background: #3B82F6; }

.beep-pd-cl-notes code {
  background: #f1f5f9;
  padding: 1px 6px;
  border-radius: 4px;
  font-size: 12px;
  color: var(--orange);
  font-family: monospace;
}

/* ----------------------------------------
   IMAGE GALLERY + LIGHTBOX
   ---------------------------------------- */
.beep-gallery {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 36px;
}

.beep-pd-screenshots-section .beep-section-title-wrapper .beep-section-sub:last-child {
  margin-bottom: 0;
}

/* Main viewer */
.beep-gallery-main {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: #0f172a;
  cursor: pointer;
  aspect-ratio: 16/9;
}

.beep-gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.beep-gallery-main:hover img { transform: scale(1.01); }

.beep-gallery-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 10px 16px;
  background: linear-gradient(transparent, rgba(0,0,0,0.65));
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  pointer-events: none;
}

.beep-gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: none;
  background: rgba(10,8,32,0.72);
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.beep-gallery-nav:hover {
  background: var(--orange);
}

.beep-gallery-prev {
  left: 14px;
}

.beep-gallery-next {
  right: 14px;
}

.beep-gallery-zoom {
  position: absolute;
  top: 12px; right: 12px;
  background: rgba(0,0,0,0.5);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
  z-index: 2;
}

.beep-gallery-zoom:hover { background: rgba(0,0,0,0.75); }

/* Thumbnail strip */
.beep-gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
}

.beep-gallery-thumb {
  width: 100%;
  padding: 0;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  transition: border-color 0.2s, transform 0.2s;
  background: var(--bg);
  font: inherit;
  text-align: center;
}

.beep-gallery-thumb:hover { transform: translateY(-2px); border-color: var(--orange); }

.beep-gallery-thumb.active { border-color: var(--orange); }

.beep-gallery-thumb img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
}

.beep-gallery-thumb span {
  display: block;
  padding: 4px 6px;
  font-size: 11px;
  font-weight: 500;
  color: var(--muted);
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.beep-gallery-thumb.active span { color: var(--orange); }

@media (max-width: 991.98px) {
  .beep-gallery-thumbs {
    display: flex;
    overflow-x: auto;
    padding: 4px 4px 8px;
    scrollbar-width: thin;
    scrollbar-color: var(--border) transparent;
  }

  .beep-gallery-thumbs::-webkit-scrollbar { height: 4px; }

  .beep-gallery-thumbs::-webkit-scrollbar-track { background: transparent; }

  .beep-gallery-thumbs::-webkit-scrollbar-thumb { background: var(--border); border-radius: 99px; }

  .beep-gallery-thumb {
    flex: 0 0 110px;
    width: 110px;
  }
}

/* -- Lightbox -- */
.beep-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s;
}

.beep-lightbox.open {
  opacity: 1;
  visibility: visible;
}

.beep-lightbox-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.9);
  cursor: pointer;
}

.beep-lightbox-content {
  position: relative;
  z-index: 1;
  max-width: min(90vw, 1200px);
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.beep-lightbox-content img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: 8px;
  display: block;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}

.beep-lightbox-caption {
  color: rgba(255,255,255,0.85);
  font-size: 14px;
  text-align: center;
}

.beep-lightbox-close {
  position: absolute;
  top: -44px; right: 0;
  background: rgba(255,255,255,0.15);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
}

.beep-lightbox-close:hover { background: rgba(255,255,255,0.3); }

.beep-lightbox-nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.15);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
  z-index: 2;
}

.beep-lightbox-nav:hover { background: rgba(255,255,255,0.3); }

.beep-lightbox-prev { left: 20px; }

.beep-lightbox-next { right: 20px; }

body.beep-lightbox-open {
  overflow: hidden;
}

/* ----------------------------------------
   PLUGIN FEATURE CARDS
   ---------------------------------------- */
.beep-pd-fcards-section {
  padding: 80px 0;
  background: #fff;
}

.beep-pd-fcards-title {
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 800;
  color: var(--navy);
  text-align: center;
  line-height: 1.25;
  margin-bottom: 48px;
}

.beep-pd-fcard {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 28px;
  height: 100%;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.beep-pd-fcard:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.08);
}

.beep-pd-fcard-icon {
  width: 64px; height: 64px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  margin-bottom: 20px;
}

.beep-pd-fcard h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.beep-pd-fcard p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
}

/* ----------------------------------------
   LEARNING MATERIALS
   ---------------------------------------- */
.beep-pd-learn-section {
  padding: 80px 0;
  background: #fff;
}

.beep-learn-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
  min-height: 460px;
  display: flex;
  flex-direction: column;
}

/* Docs card — dark navy */
.beep-learn-docs {
  background: linear-gradient(135deg, #0f0c29 0%, #1a1650 100%);
}

/* Video card — orange gradient */
.beep-learn-videos {
  background: linear-gradient(135deg, #7c2d12 0%, #c2410c 100%);
}

/* Subtle grid overlay on each card */
.beep-learn-card-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.beep-learn-card-content {
  position: relative;
  z-index: 1;
  padding: 44px 40px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.beep-learn-icon {
  width: 60px; height: 60px;
  border-radius: 14px;
  background: rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  color: #fff;
  margin-bottom: 20px;
}

.beep-learn-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--orange);
  background: rgba(249,115,22,0.18);
  padding: 4px 12px;
  border-radius: 99px;
  margin-bottom: 14px;
  width: fit-content;
}

.beep-learn-badge-video {
  color: #fbbf24;
  background: rgba(251,191,36,0.18);
}

.beep-learn-card h3 {
  font-size: 26px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.2;
}

.beep-learn-card p {
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  line-height: 1.65;
  margin-bottom: 24px;
}

.beep-learn-links {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.beep-learn-links li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  font-weight: 500;
}

.beep-learn-links li i {
  color: rgba(255,255,255,0.4);
  font-size: 11px;
}

.beep-learn-cta {
  width: fit-content;
  background: #fff !important;
  color: var(--navy) !important;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25) !important;
}

.beep-learn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.35) !important;
}

.beep-learn-cta-video {
  color: #c2410c !important;
}

/* ----------------------------------------
   REVIEWS CAROUSEL
   ---------------------------------------- */
.beep-reviews-carousel {
  position: relative;
  overflow: hidden;
}

.beep-reviews-track {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.4,0,0.2,1);
  will-change: transform;
}

.beep-reviews-slide {
  flex-shrink: 0;
  width: calc(33.333% - 11px);
  margin-right: 16px;
  box-sizing: border-box;
}

.beep-reviews-slide:last-child { margin-right: 0; }

/* Avatar color variants */
.beep-pd-reviewer-avatar.green  { background: #10b981; }

.beep-pd-reviewer-avatar.red    { background: #ef4444; }

.beep-pd-reviewer-avatar.teal   { background: #06b6d4; }

/* Controls row */
.beep-reviews-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 28px;
}

.beep-reviews-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: var(--white);
  color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  font-size: 13px;
}

.beep-reviews-btn:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.beep-reviews-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.beep-reviews-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.beep-reviews-dot {
  width: 8px; height: 8px;
  border-radius: 99px;
  background: var(--border);
  cursor: pointer;
  border: none;
  padding: 0;
  transition: background 0.2s, width 0.25s ease;
  flex-shrink: 0;
}

.beep-reviews-dot.active {
  background: var(--orange);
  width: 24px;
}

/* ----------------------------------------
   BLOG PAGE
   ---------------------------------------- */
/* Hero */
.beep-blog-hero {
  background: linear-gradient(135deg, #0A0820 0%, #15123A 100%);
  padding: 140px 0 56px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.beep-blog-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
}

.beep-blog-hero .beep-breadcrumb {
  justify-content: center;
}

.beep-blog-hero-title {
  font-size: clamp(30px, 4.5vw, 52px);
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  margin: 0 auto 16px;
  max-width: 760px;
}

.beep-blog-hero-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.65);
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

/* Search */
.beep-blog-search {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 99px;
  padding: 12px 22px;
  max-width: 480px;
  margin: 0 auto;
  backdrop-filter: blur(8px);
  transition: border-color 0.2s, background 0.2s;
}

.beep-blog-search:focus-within {
  border-color: var(--orange);
  background: rgba(255,255,255,0.13);
}

.beep-blog-search i { color: rgba(255,255,255,0.5); font-size: 14px; }

.beep-blog-search input {
  background: none;
  border: none;
  outline: none;
  color: #fff;
  font-size: 15px;
  width: 100%;
}

.beep-blog-search input::placeholder { color: rgba(255,255,255,0.45); }

/* Filter bar */
.beep-blog-filter-bar {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 0;
  position: sticky;
  top: 72px;
  z-index: 99;
}

.beep-blog-cats {
  display: flex;
  gap: 4px;
  overflow-x: auto;
  padding: 12px 0;
  scrollbar-width: none;
}

.beep-blog-cats::-webkit-scrollbar { display: none; }

.beep-blog-cat {
  flex-shrink: 0;
  background: none;
  border: none;
  padding: 7px 18px;
  border-radius: 99px;
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.beep-blog-cat:hover { color: var(--navy); background: var(--light); }

.beep-blog-cat.active { background: var(--orange); color: #fff; }

/* Blog section spacing */
.beep-blog-section {
  padding: 48px 0 80px;
  background: #f8fafc;
}

.beep-blog-grid .beep-blog-item {
  display: flex;
  flex-direction: column;
}

.beep-blog-meta-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  color: var(--muted);
}

.beep-blog-meta-row span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.beep-blog-meta i {
  color: var(--orange);
  margin-right: 0;
  font-size: 12px;
}

.beep-blog-meta a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

.beep-blog-meta a:hover { color: var(--orange); }

/* Featured post */
.beep-blog-featured {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
  margin-bottom: 48px;
  background: #fff;
  box-shadow: var(--shadow-lg);
}

.beep-blog-featured-img {
  position: relative;
  height: 100%;
  min-height: 340px;
}

.beep-blog-featured-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.beep-blog-featured-body {
  padding: 48px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.beep-blog-featured-title {
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.3;
  margin: 12px 0;
}

.beep-blog-featured-excerpt {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 28px;
}

/* Category badge */
.beep-blog-cat-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  display: inline-block;
  background: var(--orange);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 4px 12px;
  border-radius: 99px;
  text-decoration: none;
  transition: var(--transition);
}

.beep-blog-cat-badge:hover {
  color: #fff;
  background: var(--dark2, #1A1740);
}

.beep-blog-card-media,
.beep-blog-card-img {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #eef2f7;
  flex-shrink: 0;
}

.beep-blog-card-media > .beep-blog-card-thumb,
.beep-blog-card-media > .beep-blog-gallery-slider,
.beep-blog-card-media > .beep-blog-quote-media,
.beep-blog-card-media > .beep-blog-card-placeholder {
  width: 100%;
  height: 100%;
}

.beep-blog-card-media > .beep-blog-card-thumb,
.beep-blog-card-media > .beep-blog-gallery-slider,
.beep-blog-card-media > .beep-blog-quote-media {
  display: block;
}

.beep-blog-card-media > .beep-blog-card-placeholder,
.beep-blog-card-thumb .beep-blog-card-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
}

.beep-blog-card-thumb {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.beep-blog-card-thumb img,
.beep-blog-card-img > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.beep-blog-card:hover .beep-blog-card-thumb img,
.beep-blog-card:hover .beep-blog-card-img img { transform: scale(1.05); }

.beep-blog-card-body {
  padding: 22px 24px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.beep-blog-card-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.45;
  margin: 0 0 10px;
}

.beep-blog-card-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.beep-blog-card-title a:hover { color: var(--orange); }

.beep-blog-card-excerpt {
  font-size: 14px;
  line-height: 1.65;
  color: var(--muted);
  flex: 1;
  margin: 0 0 18px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

.format-quote .beep-blog-card-body {
  padding-top: 18px;
}

.format-quote .beep-blog-card-title {
  margin-bottom: 14px;
}

/* Post format media */
.beep-blog-card-placeholder {
  width: 100%;
  height: 100%;
  min-height: 0;
  background: linear-gradient(145deg, #eef2f7 0%, #e2e8f0 100%);
  color: rgba(249, 115, 22, 0.55);
  font-size: 40px;
}

.beep-blog-card-placeholder i {
  display: block;
  line-height: 1;
}

.beep-blog-gallery-slider,
.beep-bsingle-gallery-slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.beep-blog-gallery-slider .swiper-slide,
.beep-bsingle-gallery-slider .swiper-slide { height: 100%; }

.beep-blog-gallery-slider img,
.beep-bsingle-gallery-slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.beep-bsingle-gallery-slider { min-height: 360px; }

.beep-bsingle-gallery-slider img { min-height: 360px; }

.beep-blog-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  box-shadow: 0 8px 24px rgba(249,115,22,0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
  z-index: 2;
  pointer-events: none;
}

.beep-blog-card:hover .beep-blog-play-btn,
.beep-bsingle-video:hover .beep-blog-play-btn {
  transform: translate(-50%, -50%) scale(1.08);
  box-shadow: 0 10px 28px rgba(249,115,22,0.5);
}

.beep-blog-audio-badge {
  position: absolute;
  left: 14px;
  bottom: 14px;
  z-index: 2;
  background: rgba(10,8,32,0.82);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 99px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.beep-blog-quote-media {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  height: 100%;
  padding: 24px;
  text-decoration: none;
  background: linear-gradient(135deg, #0a0820 0%, #1a1740 100%);
  color: #fff;
}

.beep-blog-quote-media i {
  font-size: 22px;
  color: var(--orange);
  line-height: 1;
}

.beep-blog-quote-media blockquote {
  margin: 0;
  padding: 0;
  background: none;
  border: 0;
  box-shadow: none;
  font-size: 14px;
  line-height: 1.65;
  font-weight: 500;
  color: rgba(255,255,255,0.92);
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.beep-blog-quote-media blockquote::before {
  display: none;
}

.beep-bsingle-video,
.beep-bsingle-gallery { position: relative; }

.beep-bsingle-audio {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
  background: #f8fafc;
}

.beep-bsingle-audio iframe,
.beep-bsingle-audio embed { width: 100%; max-width: 100%; border: 0; }

.beep-bsingle-media-placeholder {
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0a0820 0%, #1e1b4b 100%);
  color: rgba(255,255,255,0.35);
  font-size: 48px;
}

.beep-bsingle-quote-banner {
  background: linear-gradient(135deg, #0a0820 0%, #1e1b4b 100%);
  border-radius: 16px;
  padding: 36px 40px;
  margin-bottom: 28px;
  color: #fff;
}

.beep-bsingle-quote-banner i { font-size: 28px; color: var(--orange); margin-bottom: 14px; display: block; }

.beep-bsingle-quote-banner blockquote {
  margin: 0;
  font-size: 1.25rem;
  line-height: 1.7;
  font-weight: 600;
  color: rgba(255,255,255,0.95);
}

.beep-blog-search-header { margin-bottom: 28px; }

.beep-blog-search-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0;
}

.beep-blog-search-title span { color: var(--orange); }

.beep-blog-readmore {
  font-size: 13px;
  font-weight: 700;
  color: var(--orange);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  transition: gap 0.2s ease, color 0.2s ease;
}

.beep-blog-readmore i { font-size: 11px; transition: transform 0.2s ease; }

.beep-blog-readmore:hover {
  gap: 10px;
  color: var(--orange);
}

.beep-blog-readmore:hover i { transform: translateX(2px); }

.postbox__read-more { margin-top: auto; }

/* No results */
.beep-blog-no-results {
  text-align: center;
  padding: 64px 0;
  color: var(--muted);
}

.beep-blog-no-results i {
  font-size: 48px;
  opacity: 0.25;
  margin-bottom: 16px;
  display: block;
}

.beep-blog-no-results p { font-size: 16px; }

.beep-blog-main-search {
  display: flex;
  align-items: stretch;
  width: 100%;
  max-width: 520px;
  margin: 24px auto 0;
  border: 1.5px solid var(--border);
  border-radius: 99px;
  overflow: hidden;
  background: #fff;
  text-align: left;
}

.beep-blog-main-search input {
  flex: 1;
  min-width: 0;
  border: none;
  outline: none;
  padding: 11px 16px;
  font-size: 14px;
  color: var(--text);
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  margin: 0;
}

.beep-blog-main-search input::placeholder { color: #94a3b8; }

.beep-blog-main-search button {
  flex-shrink: 0;
  align-self: stretch;
  background: var(--orange);
  border: none;
  border-radius: 0;
  color: #fff;
  padding: 0 18px;
  cursor: pointer;
  transition: opacity 0.2s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  margin: 0;
  box-shadow: none;
}

.beep-blog-main-search button:hover { opacity: 0.88; }

/* Blog topbar (search + count) */
.beep-blog-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.beep-blog-count {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
}

.beep-blog-search-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 99px;
  padding: 10px 20px;
  min-width: 260px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.beep-blog-search-wrap:focus-within {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(249,115,22,0.12);
}

.beep-blog-search-icon { color: var(--muted); font-size: 14px; }

.beep-blog-search-input {
  border: none;
  outline: none;
  background: none;
  font-size: 14px;
  color: var(--text);
  width: 100%;
}

.beep-blog-search-input::placeholder { color: var(--muted); }

.beep-blog-search-form,
.beep-blog-search-wrap form {
  margin: 0;
  width: 100%;
}

/* Pagination */
.beep-blog-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 48px;
}

.beep-blog-pagination ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.beep-blog-pagination li {
  margin: 0;
}

.beep-blog-pagination .page-numbers {
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1.5px solid var(--border);
  background: #fff;
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  text-decoration: none;
}

.beep-blog-pagination .page-numbers:hover,
.beep-blog-pagination .page-numbers:focus {
  border-color: var(--orange);
  color: var(--orange);
}

.beep-blog-pagination .page-numbers.current {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
}

.beep-blog-pagination .page-numbers.dots {
  border-color: transparent;
  background: transparent;
  cursor: default;
}

.beep-blog-pagination .page-numbers.dots:hover {
  color: var(--text);
  border-color: transparent;
}

.beep-page-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: #fff;
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.beep-page-btn:hover:not(.disabled):not(.active) {
  border-color: var(--orange);
  color: var(--orange);
}

.beep-page-btn.active {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
}

.beep-page-btn.disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

/* Newsletter form on blog */
.beep-blog-newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 480px;
  margin: 28px auto 0;
  flex-wrap: wrap;
  justify-content: center;
}

.beep-blog-newsletter-form input {
  flex: 1;
  min-width: 220px;
  padding: 12px 20px;
  border-radius: 99px;
  border: 2px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.12);
  color: #fff;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
}

.beep-blog-newsletter-form input::placeholder { color: rgba(255,255,255,0.5); }

.beep-blog-newsletter-form input:focus { border-color: var(--orange); }

@media (max-width: 767px) {
  .beep-bsingle-hero { padding: 110px 0 40px; }
  .beep-bsingle-author { flex-direction: column; }
  .beep-comment-reply { margin-left: 24px; }
  .beep-comments-list .children { margin-left: 24px; }
  .beep-bsingle-body { padding: 24px; }
  .beep-bsingle-comments { padding: 24px; }
  .beep-comment-form { grid-template-columns: 1fr; }
  .beep-pd-nav-inner { grid-template-columns: 1fr 1fr; }
  .beep-pd-nav-divider { display: none; }
}

/* ----------------------------------------
   BLOG SINGLE PAGE
   ---------------------------------------- */
/* Hero — compact breadcrumb-only hero for single post */
.beep-bsingle-hero { padding: 140px 0 48px; text-align: center !important; }

.beep-bsingle-hero .beep-page-hero-inner { text-align: center; }

.beep-bsingle-hero .beep-breadcrumb { justify-content: center; }

/* Title + meta block above cover image */
.beep-bsingle-header {
  margin-bottom: 32px;
}

.beep-bsingle-header .beep-bsingle-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.25;
  margin: 0 0 20px;
}

.beep-bsingle-meta--dark { color: var(--muted) !important; }

.beep-bsingle-meta--dark span { display: flex; align-items: center; gap: 6px; font-size: 13px; color: var(--muted) !important; }

.beep-bsingle-meta--dark i { color: var(--orange) !important; }

.beep-bsingle-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.25;
  max-width: 820px;
  margin: 12px auto 20px;
  text-align: center;
}

.beep-bsingle-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
}

.beep-bsingle-meta span { display: flex; align-items: center; gap: 6px; }

.beep-bsingle-meta i { color: var(--orange); }

/* Section layout */
.beep-bsingle-section { padding: 56px 0 80px; background: #fff; }

.beep-bsingle-layout {
  align-items: flex-start;
}

.beep-bsingle-layout--content {
  margin-bottom: 0;
}

.beep-bsingle-main,
.beep-bsingle-comments-col {
  min-width: 0;
  max-width: 100%;
}

.beep-bsingle-sidebar-col {
  align-self: flex-start;
  min-width: 0;
}

.beep-bsingle-comments-row {
  margin-top: 28px;
}

.beep-bsingle-section .beep-bsingle-layout--content .beep-bsingle-sidebar {
  position: sticky;
  top: 88px;
  padding-left: 1.5rem;
}

/* Page layout */
.beep-page-section {
  padding: 56px 0 80px;
  background: #fff;
}

.beep-page-layout {
  align-items: flex-start;
}

.beep-page-layout--content {
  margin-bottom: 0;
}

.beep-page-main {
  min-width: 0;
  max-width: 100%;
}

.beep-page-sidebar-col {
  align-self: flex-start;
  min-width: 0;
}

.beep-page-section .beep-page-layout--content .beep-page-sidebar {
  position: sticky;
  top: 88px;
  padding-left: 1.5rem;
}

.beep-page-main .beep-bsingle-comments {
  margin-top: 28px;
}

/* 404 page */
.beep-404-section {
  padding: 56px 0 96px;
  background: #f8fafc;
}

.beep-404-card {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 48px 40px 44px;
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.06);
}

.beep-404-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}

.beep-404-image {
  max-width: 280px;
  width: 100%;
  height: auto;
  display: block;
}

.beep-404-icon-wrap {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(249,115,22,0.12), rgba(139,92,246,0.12));
  border: 1px solid rgba(249,115,22,0.18);
  color: var(--orange);
  font-size: 34px;
}

.beep-404-code {
  font-size: clamp(4rem, 12vw, 5.5rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.beep-404-title {
  margin: 0 0 12px;
  font-size: clamp(1.5rem, 3vw, 1.85rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
}

.beep-404-desc {
  margin: 0 auto 28px;
  max-width: 460px;
  font-size: 16px;
  line-height: 1.75;
  color: var(--muted);
}

.beep-404-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.beep-404-actions .btn i {
  font-size: 14px;
}

.beep-404-search-label {
  margin: 0 0 12px;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
}

.beep-404-search .beep-blog-main-search {
  margin-top: 0;
}

/* Cover image */
.beep-bsingle-cover {
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 40px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  aspect-ratio: 16/7;
}

.beep-bsingle-cover img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Article body typography */
.beep-bsingle-body {
  color: var(--text);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px;
}

.beep-bsingle-body h2 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy);
  margin: 40px 0 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--border);
}

.beep-bsingle-body h3 { font-size: 1.15rem; font-weight: 700; color: var(--navy); margin: 32px 0 12px; }

.beep-bsingle-body p { font-size: 16px; line-height: 1.8; margin-bottom: 20px; color: #374151; }

.beep-bsingle-body blockquote,
.format-quote .beep-bsingle-body {
  margin: 28px 0 !important;
  padding: 24px 28px;
  background: #f8fafc;
  border: 1px solid var(--border);
  border-left: 4px solid var(--orange);
  border-radius: 12px;
  box-shadow: none;
  font-size: 1.05rem;
  font-weight: 500;
  font-style: normal;
  color: #1f2937;
  line-height: 1.75;
}

.beep-bsingle-body blockquote::before {
  content: "\f10d";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 22px;
  color: var(--orange);
  display: block;
  margin-bottom: 12px;
  line-height: 1;
}

.beep-bsingle-body blockquote p {
  margin-bottom: 0;
  color: inherit;
  font-size: inherit;
  line-height: inherit;
}

.beep-bsingle-lead { font-size: 18px; font-weight: 500; color: #1f2937; line-height: 1.75; border-left: 4px solid var(--orange); padding-left: 20px; margin-bottom: 36px; }

.beep-bsingle-body ul { padding-left: 20px; margin-bottom: 20px; }

.beep-bsingle-body ul li { font-size: 15px; line-height: 1.8; margin-bottom: 8px; color: #374151; }

.beep-bsingle-body code {
  background: #f1f5f9;
  color: #e11d48;
  font-size: 13px;
  padding: 2px 6px;
  border-radius: 4px;
  font-family: 'Courier New', monospace;
}

/* Code block */
.beep-bsingle-code {
  background: #0f172a;
  border-radius: 12px;
  overflow: hidden;
  margin: 28px 0;
}

.beep-bsingle-code-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  background: #1e293b;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.beep-bsingle-code-lang { font-size: 12px; color: rgba(255,255,255,0.5); font-family: monospace; }

.beep-bsingle-copy-btn {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  background: none;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 6px;
  padding: 4px 10px;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 5px;
}

.beep-bsingle-copy-btn:hover { color: #fff; border-color: rgba(255,255,255,0.4); }

.beep-bsingle-code pre {
  margin: 0;
  padding: 20px;
  overflow-x: auto;
}

.beep-bsingle-code pre code {
  background: none;
  color: #94d2bd;
  font-size: 13px;
  padding: 0;
  border-radius: 0;
  line-height: 1.7;
  white-space: pre;
}

/* Callouts */
.beep-bsingle-callout {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px 20px;
  border-radius: 12px;
  margin: 28px 0;
  font-size: 15px;
  line-height: 1.65;
}

.beep-bsingle-callout i { font-size: 18px; margin-top: 2px; flex-shrink: 0; }

.beep-bsingle-callout-tip { background: #f0fdf4; border-left: 4px solid #22c55e; color: #166534; }

.beep-bsingle-callout-tip i { color: #22c55e; }

.beep-bsingle-callout-warn { background: #fffbeb; border-left: 4px solid #f59e0b; color: #92400e; }

.beep-bsingle-callout-warn i { color: #f59e0b; }

.beep-bsingle-callout p,
.beep-bsingle-callout strong { color: inherit; }

.beep-bsingle-callout div { margin: 0; font-size: 14px; line-height: 1.65; }

/* Tags */
.beep-bsingle-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 40px 0 32px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.beep-bsingle-tag-label { font-size: 13px; font-weight: 600; color: var(--muted); }

.beep-bsingle-tag {
  font-size: 12px;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 99px;
  background: #f1f5f9;
  color: var(--navy);
  text-decoration: none;
  transition: all 0.2s;
}

.beep-bsingle-tag:hover { background: var(--orange); color: #fff; }

/* Share */
.beep-bsingle-share {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}

.beep-bsingle-share-label { font-size: 13px; font-weight: 600; color: var(--muted); }

.beep-bsingle-share-btns { display: flex; gap: 8px; flex-wrap: wrap; }

.beep-share-btn {
  font-size: 13px;
  font-weight: 600;
  padding: 7px 16px;
  border-radius: 99px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: opacity 0.2s;
}

.beep-share-btn:hover { opacity: 0.85; }

.beep-share-twitter  { background: #1da1f2; color: #fff; }

.beep-share-fb       { background: #1877f2; color: #fff; }

.beep-share-linkedin { background: #0a66c2; color: #fff; }

.beep-share-copy     { background: #f1f5f9; color: var(--navy); }

/* Author box */
.beep-bsingle-author {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  margin-top: 24px;
}

.beep-bsingle-author-img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.beep-author-initials {
  background: var(--grad);
  color: #fff;
  font-size: 22px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.beep-bsingle-author-info h4 { font-size: 16px; font-weight: 700; margin: 0 0 4px; color: var(--navy); }

.beep-bsingle-author-info h4 a { color: inherit; text-decoration: none; transition: color 0.2s ease; }

.beep-bsingle-author-info h4 a:hover { color: var(--orange); }

.beep-bsingle-author-role { font-size: 12px; color: var(--orange); font-weight: 600; margin-bottom: 10px; }

.beep-bsingle-author-bio { font-size: 14px; color: var(--muted); line-height: 1.65; margin-bottom: 12px; }

.beep-bsingle-author-socials { display: flex; gap: 10px; }

.beep-bsingle-author-socials a {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
  text-decoration: none;
  transition: background 0.2s;
}

.beep-bsingle-author-socials a:hover { background: var(--orange); }

/* Prev / Next */
.beep-bsingle-prevnext {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 24px;
  margin-bottom: 8px;
}

.beep-bsingle-nav-link {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 18px 20px;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}

.beep-bsingle-nav-link:hover { border-color: var(--orange); background: #fff8f3; }

.beep-bsingle-next { text-align: right; }

.beep-bsingle-nav-dir { font-size: 12px; font-weight: 600; color: var(--orange); display: flex; align-items: center; gap: 5px; }

.beep-bsingle-next .beep-bsingle-nav-dir { justify-content: flex-end; }

.beep-bsingle-nav-title { font-size: 14px; font-weight: 600; color: var(--navy); line-height: 1.4; }

/* Comments */
.beep-bsingle-comments {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px;
  margin-top: 0;
  clear: both;
  width: 100%;
  box-sizing: border-box;
}

.beep-bsingle-comments .beep-comment-form-wrap,
.beep-bsingle-comments .beep-comment-form,
.beep-bsingle-comments .beep-comment-form p {
  float: none;
  clear: both;
  width: 100%;
}

.beep-bsingle-comments .beep-comments-list,
.beep-bsingle-comments .beep-comment {
  float: none;
  clear: both;
}

.beep-comment {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
}

.beep-comment-reply { margin-left: 56px; }

.beep-comment-avatar { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }

.beep-comment-body { flex: 1; background: #f8fafc; border: 1px solid var(--border); border-radius: 12px; padding: 16px 20px; }

.beep-comment-header { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; flex-wrap: wrap; }

.beep-comment-header strong { font-size: 14px; color: var(--navy); }

.beep-comment-date { font-size: 12px; color: var(--muted); }

.beep-comment-author-badge { font-size: 10px; background: var(--orange); color: #fff; padding: 2px 8px; border-radius: 99px; font-weight: 700; }

.beep-comment-body p { font-size: 14px; color: #374151; line-height: 1.65; margin-bottom: 10px; }

.beep-comment-reply-btn { font-size: 12px; font-weight: 600; color: var(--orange); background: none; border: none; cursor: pointer; padding: 0; }

.beep-comment-form-wrap { margin-top: 40px; }

.beep-comment-form-wrap h4 { font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: 20px; }

.beep-form-input {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-size: 14px;
  color: var(--text);
  background: #fff;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  font-family: inherit;
}

.beep-form-input:focus { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(249,115,22,0.1); }

textarea.beep-form-input { resize: vertical; }

/* -- Sidebar -- */
.beep-blog-sidebar,
.beep-bsingle-sidebar {
  display: flex;
  flex-direction: column;
  gap: 28px;
  position: sticky;
  top: 88px;
  align-self: flex-start;
  width: 100%;
}

.beep-sidebar-widget {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 0 !important;
}

.beep-sidebar-widget-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 18px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--border);
  margin-bottom: 18px;
}

.beep-sidebar-search {
  display: flex;
  align-items: stretch;
  border: 1.5px solid var(--border);
  border-radius: 99px;
  overflow: hidden;
  background: #fff;
}

.beep-sidebar-search input {
  flex: 1;
  min-width: 0;
  border: none;
  outline: none;
  padding: 11px 16px;
  font-size: 14px;
  color: var(--text);
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  margin: 0;
}

.beep-sidebar-search input::placeholder { color: #94a3b8; }

.beep-sidebar-search button {
  flex-shrink: 0;
  align-self: stretch;
  background: var(--orange);
  border: none;
  border-radius: 0;
  color: #fff;
  padding: 0 18px;
  cursor: pointer;
  transition: opacity 0.2s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  margin: 0;
  box-shadow: none;
}

.beep-sidebar-search button:hover {
  opacity: 0.88;
}

.beep-sidebar-cats { list-style: none; padding: 0; margin: 0; }

.beep-sidebar-cats li { border-bottom: 1px solid var(--border); }

.beep-sidebar-cats li:last-child { border-bottom: none; }

.beep-sidebar-cats a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  font-size: 14px;
  color: var(--text);
  text-decoration: none;
  gap: 10px;
  transition: color 0.2s;
}

.beep-sidebar-cats a:hover { color: var(--orange); }

.beep-sidebar-cats .beep-scat-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #f1f5f9;
  padding: 6px 12px;
  border-radius: 99px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.3;
}

.beep-sidebar-cats i { color: var(--orange); font-size: 12px; flex-shrink: 0; }

.beep-sidebar-cats .beep-scat-count {
  background: #f1f5f9;
  min-width: 28px;
  height: 28px;
  padding: 0 8px;
  border-radius: 99px;
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.beep-sidebar-recent { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 16px; }

.beep-sidebar-recent-item {
  display: flex;
  gap: 12px;
  text-decoration: none;
  align-items: flex-start;
}

.beep-sidebar-recent-item img,
.beep-sidebar-recent-thumb-placeholder {
  width: 70px;
  height: 52px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}

.beep-sidebar-recent-thumb-placeholder {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #eef2f7;
  color: rgba(249, 115, 22, 0.55);
  font-size: 18px;
}

.beep-sidebar-recent-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.45;
  display: block;
  margin-bottom: 4px;
  transition: color 0.2s;
}

.beep-sidebar-recent-item:hover .beep-sidebar-recent-title { color: var(--orange); }

.beep-sidebar-recent-date { font-size: 11px; color: var(--muted); display: block; }

.beep-sidebar-tags,
.beep-blog-sidebar .tagcloud,
.beep-bsingle-sidebar .tagcloud,
.beep-blog-sidebar .wp-block-tag-cloud,
.beep-bsingle-sidebar .wp-block-tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.beep-sidebar-tags a,
.beep-blog-sidebar .tagcloud a,
.beep-bsingle-sidebar .tagcloud a,
.beep-blog-sidebar .wp-block-tag-cloud a,
.beep-bsingle-sidebar .wp-block-tag-cloud a {
  font-size: 12px !important;
  font-weight: 600;
  line-height: 1.2;
  padding: 6px 14px;
  border-radius: 99px;
  background: #f1f5f9;
  color: var(--navy);
  text-decoration: none;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  border: 0;
  white-space: nowrap;
}

.beep-sidebar-tags a:hover,
.beep-blog-sidebar .tagcloud a:hover,
.beep-bsingle-sidebar .tagcloud a:hover,
.beep-blog-sidebar .wp-block-tag-cloud a:hover,
.beep-bsingle-sidebar .wp-block-tag-cloud a:hover {
  background: var(--orange);
  color: #fff;
}

/* Calendar widget */
.beep-sidebar-widget.widget_calendar .calendar_wrap,
.beep-blog-sidebar .widget_calendar .calendar_wrap,
.beep-bsingle-sidebar .widget_calendar .calendar_wrap {
  margin: 0;
}

.beep-sidebar-widget .wp-calendar-table,
.beep-blog-sidebar .wp-calendar-table,
.beep-bsingle-sidebar .wp-calendar-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0;
  font-size: 13px;
  table-layout: fixed;
}

.beep-sidebar-widget .wp-calendar-table caption,
.beep-blog-sidebar .wp-calendar-table caption,
.beep-bsingle-sidebar .wp-calendar-table caption {
  caption-side: bottom;
  text-align: right;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  padding: 12px 0 0;
  margin: 0;
}

.beep-sidebar-widget .wp-calendar-table thead th,
.beep-blog-sidebar .wp-calendar-table thead th,
.beep-bsingle-sidebar .wp-calendar-table thead th {
  font-size: 12px;
  font-weight: 700;
  color: var(--navy);
  text-align: center;
  padding: 8px 4px;
  border: none;
  background: transparent;
}

.beep-sidebar-widget .wp-calendar-table tbody td,
.beep-blog-sidebar .wp-calendar-table tbody td,
.beep-bsingle-sidebar .wp-calendar-table tbody td {
  text-align: center;
  padding: 9px 4px;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--text);
  font-size: 13px;
  vertical-align: middle;
  transition: background 0.2s, color 0.2s;
}

.beep-sidebar-widget .wp-calendar-table tbody td a,
.beep-blog-sidebar .wp-calendar-table tbody td a,
.beep-bsingle-sidebar .wp-calendar-table tbody td a {
  display: block;
  color: inherit;
  text-decoration: none;
  font-weight: 600;
}

.beep-sidebar-widget .wp-calendar-table tbody td a:hover,
.beep-blog-sidebar .wp-calendar-table tbody td a:hover,
.beep-bsingle-sidebar .wp-calendar-table tbody td a:hover {
  color: var(--orange);
}

.beep-sidebar-widget .wp-calendar-table tbody td#today,
.beep-blog-sidebar .wp-calendar-table tbody td#today,
.beep-bsingle-sidebar .wp-calendar-table tbody td#today {
  background: #3b71db;
  color: #fff;
}

.beep-sidebar-widget .wp-calendar-table tbody td#today a,
.beep-blog-sidebar .wp-calendar-table tbody td#today a,
.beep-bsingle-sidebar .wp-calendar-table tbody td#today a {
  color: #fff;
}

.beep-sidebar-widget .wp-calendar-nav,
.beep-blog-sidebar .wp-calendar-nav,
.beep-bsingle-sidebar .wp-calendar-nav {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 600;
}

.beep-sidebar-widget .wp-calendar-nav a,
.beep-blog-sidebar .wp-calendar-nav a,
.beep-bsingle-sidebar .wp-calendar-nav a {
  color: var(--muted);
  text-decoration: none;
}

.beep-sidebar-widget .wp-calendar-nav a:hover,
.beep-blog-sidebar .wp-calendar-nav a:hover,
.beep-bsingle-sidebar .wp-calendar-nav a:hover {
  color: var(--orange);
}

/* Image widget */
.beep-sidebar-widget.widget_media_image img,
.beep-blog-sidebar .widget_media_image img,
.beep-bsingle-sidebar .widget_media_image img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0;
  border-radius: 12px;
  object-fit: cover;
}

.beep-sidebar-widget.widget_media_image figure,
.beep-blog-sidebar .widget_media_image figure,
.beep-bsingle-sidebar .widget_media_image figure,
.beep-sidebar-widget.widget_media_image .wp-caption,
.beep-blog-sidebar .widget_media_image .wp-caption,
.beep-bsingle-sidebar .widget_media_image .wp-caption {
  margin: 0;
  max-width: 100%;
}

.beep-sidebar-widget.widget_media_image figcaption,
.beep-blog-sidebar .widget_media_image figcaption,
.beep-bsingle-sidebar .widget_media_image figcaption {
  margin-top: 10px;
  font-size: 12px;
  color: var(--muted);
  text-align: center;
  line-height: 1.5;
}

/* Recent comments widget */
.beep-sidebar-comments,
.beep-sidebar-widget.widget_recent_comments ul,
.beep-blog-sidebar .widget_recent_comments ul,
.beep-bsingle-sidebar .widget_recent_comments ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.beep-sidebar-comment,
.beep-sidebar-widget.widget_recent_comments ul li,
.beep-blog-sidebar .widget_recent_comments ul li,
.beep-bsingle-sidebar .widget_recent_comments ul li {
  padding: 0 0 14px;
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
  color: var(--muted);
  border-bottom: 1px solid var(--border);
}

.beep-sidebar-comment:last-child,
.beep-sidebar-widget.widget_recent_comments ul li:last-child,
.beep-blog-sidebar .widget_recent_comments ul li:last-child,
.beep-bsingle-sidebar .widget_recent_comments ul li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.beep-sidebar-comment-author,
.beep-sidebar-widget.widget_recent_comments .comment-author-link a,
.beep-blog-sidebar .widget_recent_comments .comment-author-link a,
.beep-bsingle-sidebar .widget_recent_comments .comment-author-link a {
  color: var(--orange);
  font-weight: 600;
  text-decoration: none;
}

.beep-sidebar-comment-post,
.beep-sidebar-widget.widget_recent_comments ul li a,
.beep-blog-sidebar .widget_recent_comments ul li a,
.beep-bsingle-sidebar .widget_recent_comments ul li a {
  color: var(--navy);
  font-weight: 600;
  text-decoration: none;
  padding-left: 0;
}

.beep-sidebar-widget.widget_recent_comments ul li a::after,
.beep-blog-sidebar .widget_recent_comments ul li a::after,
.beep-bsingle-sidebar .widget_recent_comments ul li a::after {
  display: none;
}

.beep-sidebar-comment-author:hover,
.beep-sidebar-comment-post:hover,
.beep-sidebar-widget.widget_recent_comments ul li a:hover,
.beep-blog-sidebar .widget_recent_comments ul li a:hover,
.beep-bsingle-sidebar .widget_recent_comments ul li a:hover {
  color: var(--orange);
}

.beep-sidebar-comment-on {
  color: var(--muted);
  font-weight: 400;
}

/* Gallery widget */
.beep-sidebar-widget .gallery,
.beep-blog-sidebar .gallery,
.beep-bsingle-sidebar .gallery {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 0 !important;
  width: 100%;
}

.beep-sidebar-widget .gallery br,
.beep-blog-sidebar .gallery br,
.beep-bsingle-sidebar .gallery br {
  display: none;
}

.beep-sidebar-widget .gallery .gallery-item,
.beep-blog-sidebar .gallery .gallery-item,
.beep-bsingle-sidebar .gallery .gallery-item {
  float: none !important;
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
}

.beep-sidebar-widget .gallery .gallery-icon,
.beep-blog-sidebar .gallery .gallery-icon,
.beep-bsingle-sidebar .gallery .gallery-icon {
  margin: 0;
}

.beep-sidebar-widget .gallery .gallery-icon a,
.beep-blog-sidebar .gallery .gallery-icon a,
.beep-bsingle-sidebar .gallery .gallery-icon a {
  display: block;
  line-height: 0;
}

.beep-sidebar-widget .gallery .gallery-icon img,
.beep-blog-sidebar .gallery .gallery-icon img,
.beep-bsingle-sidebar .gallery .gallery-icon img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 8px;
  display: block;
  height: auto;
  margin: 0;
}

.beep-sidebar-widget .gallery-columns-1,
.beep-blog-sidebar .gallery-columns-1,
.beep-bsingle-sidebar .gallery-columns-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }

.beep-sidebar-widget .gallery-columns-2,
.beep-blog-sidebar .gallery-columns-2,
.beep-bsingle-sidebar .gallery-columns-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.beep-sidebar-widget .gallery-columns-4,
.beep-blog-sidebar .gallery-columns-4,
.beep-bsingle-sidebar .gallery-columns-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.beep-sidebar-widget .gallery-columns-5,
.beep-blog-sidebar .gallery-columns-5,
.beep-bsingle-sidebar .gallery-columns-5,
.beep-sidebar-widget .gallery-columns-6,
.beep-blog-sidebar .gallery-columns-6,
.beep-bsingle-sidebar .gallery-columns-6 { grid-template-columns: repeat(3, minmax(0, 1fr)); }

/* Block widgets in blog sidebar */
.beep-blog-sidebar .wp-block-search__label,
.beep-bsingle-sidebar .wp-block-search__label { display: none; }

.beep-blog-sidebar .wp-block-search__inside-wrapper,
.beep-bsingle-sidebar .wp-block-search__inside-wrapper {
  display: flex;
  border: 1.5px solid var(--border);
  border-radius: 99px;
  overflow: hidden;
}

.beep-blog-sidebar .wp-block-search__input,
.beep-bsingle-sidebar .wp-block-search__input {
  flex: 1;
  border: none;
  box-shadow: none;
  padding: 11px 16px;
  font-size: 14px;
  min-height: 0;
  background: transparent;
}

.beep-blog-sidebar .wp-block-search__button,
.beep-bsingle-sidebar .wp-block-search__button {
  background: var(--orange);
  color: #fff;
  border: none;
  border-radius: 0;
  padding: 0 18px;
  margin: 0;
}

.beep-blog-sidebar .wp-block-latest-posts__list,
.beep-bsingle-sidebar .wp-block-latest-posts__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.beep-blog-sidebar .wp-block-latest-posts li a,
.beep-bsingle-sidebar .wp-block-latest-posts li a {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
}

.beep-blog-sidebar .wp-block-latest-posts li a:hover,
.beep-bsingle-sidebar .wp-block-latest-posts li a:hover { color: var(--orange); }

.beep-blog-sidebar .wp-block-calendar,
.beep-bsingle-sidebar .wp-block-calendar { margin: 0; }

.beep-blog-sidebar .wp-block-image img,
.beep-bsingle-sidebar .wp-block-image img {
  width: 100%;
  border-radius: 12px;
  display: block;
}

.beep-blog-sidebar .wp-block-gallery,
.beep-bsingle-sidebar .wp-block-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.beep-blog-sidebar .wp-block-gallery .blocks-gallery-item,
.beep-bsingle-sidebar .wp-block-gallery .blocks-gallery-item,
.beep-blog-sidebar .wp-block-gallery .wp-block-image,
.beep-bsingle-sidebar .wp-block-gallery .wp-block-image {
  margin: 0;
  width: 100%;
}

.beep-blog-sidebar .wp-block-gallery img,
.beep-bsingle-sidebar .wp-block-gallery img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 8px;
}

.beep-blog-sidebar .wp-block-latest-comments,
.beep-bsingle-sidebar .wp-block-latest-comments {
  list-style: none;
  padding: 0;
  margin: 0;
}

.beep-blog-sidebar .wp-block-latest-comments li,
.beep-bsingle-sidebar .wp-block-latest-comments li {
  padding: 0 0 14px;
  margin: 0;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
  line-height: 1.55;
  color: var(--muted);
}

.beep-blog-sidebar .wp-block-latest-comments li:last-child,
.beep-bsingle-sidebar .wp-block-latest-comments li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.beep-blog-sidebar .wp-block-latest-comments__comment-author,
.beep-bsingle-sidebar .wp-block-latest-comments__comment-author {
  color: var(--orange);
  font-weight: 600;
  text-decoration: none;
}

.beep-blog-sidebar .wp-block-latest-comments__comment-link,
.beep-bsingle-sidebar .wp-block-latest-comments__comment-link {
  color: var(--navy);
  font-weight: 600;
  text-decoration: none;
}

.beep-sidebar-about { text-align: center; }

.beep-sidebar-about img { width: 72px; height: 72px; border-radius: 50%; object-fit: cover; margin-bottom: 12px; }

.beep-sidebar-author-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--grad);
  color: #fff;
  font-size: 22px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}

.beep-sidebar-about h5 { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }

.beep-sidebar-about p { font-size: 13px; color: var(--muted); line-height: 1.6; margin-bottom: 14px; }

.beep-sidebar-follow-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  background: #1da1f2;
  color: #fff;
  padding: 8px 18px;
  border-radius: 99px;
  text-decoration: none;
  transition: opacity 0.2s;
}

.beep-sidebar-follow-btn:hover { opacity: 0.85; }

.beep-sidebar-cta { background: linear-gradient(135deg, var(--navy) 0%, #1e1a4a 100%); border: none; }

.beep-sidebar-cta-inner { text-align: center; }

.beep-sidebar-cta-icon { font-size: 32px; color: var(--orange); margin-bottom: 12px; display: block; }

.beep-sidebar-cta h5 { font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 8px; }

.beep-sidebar-cta p { font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.6; margin-bottom: 18px; }

.beep-sidebar-cta .btn { margin-bottom: 0; }

/* Related posts */
.beep-bsingle-related { background: #f8fafc; padding: 64px 0; }

.beep-bsingle-related-title { font-size: 1.3rem; font-weight: 700; color: var(--navy); margin-bottom: 32px; }

.beep-bsingle-meta--dark a { color: inherit; text-decoration: none; }

.beep-bsingle-meta--dark a:hover { color: var(--orange); }

.beep-bsingle-nav-link--empty { visibility: hidden; pointer-events: none; }

.beep-comments-list .children { margin-left: 56px; }

.beep-comment-pagination-inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin: 24px 0;
  font-size: 14px;
  font-weight: 600;
}

.beep-comment-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.beep-comment-form .comment-form-comment,
.beep-comment-form .comment-form-url,
.beep-comment-form .form-submit,
.beep-comment-form .logged-in-as,
.beep-comment-form .must-log-in,
.beep-comment-form .comment-reply-title,
.beep-comment-form .comment-notes {
  grid-column: 1 / -1;
}

.beep-comment-form p { margin: 0; }

.beep-comment-form .form-submit {
  margin-top: 8px;
  text-align: left;
}

.beep-comment-form .form-submit .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: auto;
  max-width: 100%;
  float: none;
}

.beep-bsingle-comments .beep-comment-form .comment-form-author,
.beep-bsingle-comments .beep-comment-form .comment-form-email {
  min-width: 0;
}

.beep-comment-form .comment-reply-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

/* ----------------------------------------
   Rules merged from style.css (unique selectors)
   ---------------------------------------- */

.beep-page-hero h1 {
  font-size: clamp(34px, 5vw, 54px);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 16px;
}

.beep-breadcrumb span { color: var(--orange); font-weight: 600; }

.beep-blog-card-img {
  position: relative;
  overflow: hidden;
}

.beep-blog-card-img img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.beep-blog-card:hover .beep-blog-card-img img { transform: scale(1.04); }

/* Sticky sidebar */
.beep-bsingle-sidebar { position: sticky; top: 88px; }

.beep-bsingle-comments-title { font-size: 1.2rem; font-weight: 700; color: var(--navy); margin-bottom: 32px; }

.beep-sidebar-cats span { background: #f1f5f9; font-size: 11px; font-weight: 700; padding: 2px 8px; border-radius: 99px; color: var(--muted); flex-shrink: 0; }

.beep-sidebar-recent-item img { width: 70px; height: 52px; object-fit: cover; border-radius: 8px; flex-shrink: 0; }

.beep-sidebar-tags { display: flex; flex-wrap: wrap; gap: 8px; }

.beep-sidebar-tags a {
  font-size: 12px;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 99px;
  background: #f1f5f9;
  color: var(--navy);
  text-decoration: none;
  transition: all 0.2s;
}

.beep-sidebar-tags a:hover { background: var(--orange); color: #fff; }

/* ----------------------------------------
   TEAM PAGE  (team.html)
   ---------------------------------------- */
.beep-team-stats-band { background: var(--navy); padding: 48px 0; }

.beep-tstat-item { text-align: center; }

.beep-tstat-num { font-size: 2.4rem; font-weight: 800; color: var(--orange); display: block; line-height: 1; margin-bottom: 6px; }

.beep-tstat-label { font-size: 13px; color: rgba(255,255,255,0.7); font-weight: 500; letter-spacing: 0.5px; }

.beep-team-section--alt { padding: 80px 0; background: #f8fafc; }

.beep-team-card--lg:hover .beep-team-photo img { transform: scale(1.04); }

.beep-team-card:not(.beep-team-card--lg):hover .beep-team-photo img { transform: none; }

.beep-team-overlay {
  position: absolute;
  inset: calc(-2 * var(--team-ring, 3px));
  border-radius: 50%;
  background: rgba(249, 115, 22, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 2;
}

.beep-team-card:hover .beep-team-overlay { opacity: 1; }

.beep-team-view-btn {
  padding: 10px 24px;
  background: var(--orange);
  color: #fff;
  border-radius: 99px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}

.beep-team-card:not(.beep-team-card--lg) .beep-team-view-btn {
  padding: 0;
  background: transparent;
  border-radius: 0;
  font-size: 11px;
  line-height: 1.35;
  text-align: center;
  max-width: 72px;
}

.beep-team-view-btn:hover { background: #d4550f; transform: scale(1.05); }

.beep-team-card:not(.beep-team-card--lg) .beep-team-view-btn:hover {
  background: transparent;
  transform: none;
}

.beep-team-info { padding: 20px; text-align: center; flex: 1; display: flex; flex-direction: column; }

.beep-team-info h4 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 4px; }

.beep-team-role { font-size: 13px; color: var(--orange); font-weight: 500; display: block; margin-bottom: 12px; }

.beep-team-card--lg .beep-team-photo {
  --team-ring: 0px;
  aspect-ratio: 4/5;
  width: 100%;
  height: auto;
  margin: 0;
  border-radius: 0;
  border: none;
  padding: 0;
}

.beep-team-card--lg .beep-team-photo img {
  border-radius: 0;
}

.beep-team-card--lg .beep-team-overlay {
  inset: 0;
  border-radius: 0;
  background: rgba(20, 14, 60, 0.65);
}

.beep-team-card--lg .beep-team-info { padding: 24px; text-align: left; }

.beep-team-card--lg .beep-team-info h4 { font-size: 1.15rem; }

.beep-team-card--lg .beep-team-socials { justify-content: flex-start; }

.beep-team-bio { font-size: 13px; color: var(--muted); line-height: 1.6; margin-bottom: 0; flex: 1; }

.beep-team-culture {
  padding: 96px 0;
  background: var(--white);
}

.beep-team-culture .beep-section-title-wrapper--left .beep-section-sub {
  margin-bottom: 40px;
}

.beep-culture-list { display: flex; flex-direction: column; gap: 28px; }

.beep-culture-item { display: flex; gap: 16px; align-items: flex-start; }

.beep-culture-copy { min-width: 0; }

.beep-culture-icon { width: 48px; height: 48px; flex-shrink: 0; border-radius: 12px; background: linear-gradient(135deg, #fff4ee, #ffe5d0); color: var(--orange); font-size: 18px; display: flex; align-items: center; justify-content: center; }

.beep-culture-item strong,
.beep-culture-item h5 { display: block; font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }

.beep-culture-item p { font-size: 13px; color: var(--muted); margin: 0; line-height: 1.6; }

.beep-culture-img-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 14px;
  align-items: stretch;
  width: 100%;
  min-height: 0;
}

.beep-cimg-col { display: grid; grid-template-rows: 1fr 1fr; gap: 14px; min-height: 0; height: 100%; }

.beep-cimg { border-radius: var(--radius); overflow: hidden; min-height: 0; height: 100%; }

.beep-cimg img { width: 100%; height: 100%; object-fit: cover; display: block; }

.beep-cimg--tall { min-height: 0; height: 100%; }

/* ----------------------------------------
   TEAM DETAILS PAGE  (team-details.html)
   ---------------------------------------- */
.beep-td-profile { padding: 80px 0 64px; }

.beep-td-sidebar { position: sticky; top: 100px; display: flex; flex-direction: column; gap: 20px; }

.beep-td-photo-wrap { position: relative; border-radius: var(--radius); overflow: hidden; }

.beep-td-photo { width: 100%; display: block; object-fit: cover; max-height: 420px; }

.beep-td-badge { position: absolute; bottom: 16px; right: 16px; background: var(--orange); color: #fff; font-size: 12px; font-weight: 700; padding: 6px 14px; border-radius: 99px; }

.beep-td-info-card { background: var(--navy); border-radius: var(--radius); padding: 24px; text-align: center; }

.beep-td-info-card h3 { font-size: 1.2rem; font-weight: 800; color: #fff; margin-bottom: 4px; }

.beep-td-role { font-size: 13px; color: var(--orange); font-weight: 500; margin-bottom: 16px; display: block; }

.beep-td-socials { display: flex; justify-content: center; gap: 10px; }

.beep-td-socials a { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.1); color: #fff; font-size: 13px; display: flex; align-items: center; justify-content: center; text-decoration: none; transition: all 0.2s; }

.beep-td-socials a:hover { background: var(--orange); }

.beep-td-meta-card { background: #fff; border-radius: var(--radius); padding: 24px; box-shadow: 0 2px 12px rgba(0,0,0,0.06); display: flex; flex-direction: column; gap: 14px; }

.beep-td-meta-row { display: flex; justify-content: space-between; align-items: center; font-size: 13px; }

.beep-td-meta-label { color: var(--muted); font-weight: 500; display: flex; align-items: center; gap: 8px; }

.beep-td-meta-row > span:last-child { color: var(--navy); font-weight: 600; }

.beep-td-content h2 { font-size: 1.5rem; font-weight: 800; color: var(--navy); margin-bottom: 16px; }

.beep-td-content p { font-size: 15px; color: var(--muted); line-height: 1.8; margin-bottom: 16px; }

.beep-td-skills { display: flex; flex-direction: column; gap: 16px; }

.beep-td-skill-header { display: flex; justify-content: space-between; font-size: 13px; font-weight: 600; color: var(--navy); margin-bottom: 6px; }

.beep-td-skill-bar { height: 6px; background: #e2e8f0; border-radius: 99px; overflow: hidden; }

.beep-td-skill-fill { height: 100%; background: var(--orange); border-radius: 99px; }

.beep-td-tags { display: flex; flex-wrap: wrap; gap: 8px; }

.beep-td-tags span { font-size: 12px; font-weight: 600; padding: 5px 14px; border-radius: 99px; background: #f1f5f9; color: var(--navy); }

.beep-td-stats-row { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; margin-top: 36px; background: var(--navy); border-radius: var(--radius); padding: 28px; }

.beep-td-stat { text-align: center; }

.beep-td-stat strong { font-size: 1.8rem; font-weight: 800; color: var(--orange); display: block; }

.beep-td-stat span { font-size: 12px; color: rgba(255,255,255,0.65); font-weight: 500; }

.beep-td-timeline { display: flex; flex-direction: column; }

.beep-td-tl-item { display: flex; gap: 20px; padding-bottom: 32px; position: relative; }

.beep-td-tl-item:last-child { padding-bottom: 0; }

.beep-td-tl-item::before { content: ''; position: absolute; left: 9px; top: 24px; bottom: 0; width: 2px; background: #e2e8f0; }

.beep-td-tl-item:last-child::before { display: none; }

.beep-td-tl-dot { width: 20px; height: 20px; flex-shrink: 0; border-radius: 50%; background: var(--orange); border: 3px solid #fff; box-shadow: 0 0 0 2px var(--orange); margin-top: 2px; position: relative; z-index: 1; }

.beep-td-tl-period { font-size: 12px; color: var(--orange); font-weight: 700; margin-bottom: 4px; }

.beep-td-tl-body h5 { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }

.beep-td-tl-body p { font-size: 13px; color: var(--muted); margin: 0; line-height: 1.6; }

.beep-td-quote { margin-top: 40px; background: linear-gradient(135deg, #fff4ee, #fff); border-left: 4px solid var(--orange); border-radius: 0 var(--radius) var(--radius) 0; padding: 28px 28px 24px; }

.beep-td-quote p { font-size: 15px; font-style: italic; color: var(--navy); margin-bottom: 16px; }

.beep-td-quote-author { display: flex; gap: 12px; align-items: center; }

.beep-td-quote-author img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }

.beep-td-quote-author strong { display: block; font-size: 14px; color: var(--navy); }

.beep-td-quote-author span { font-size: 12px; color: var(--muted); }

.beep-td-prevnext { display: flex; justify-content: space-between; align-items: center; margin-top: 56px; padding-top: 32px; border-top: 1px solid var(--border); gap: 16px; }

.beep-td-nav-btn { display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--navy); font-size: 13px; transition: color 0.2s; }

.beep-td-nav-btn:hover { color: var(--orange); }

.beep-td-nav-btn i { font-size: 20px; }

.beep-td-nav-btn span { display: block; color: var(--muted); margin-bottom: 2px; }

.beep-td-nav-btn strong { display: block; font-weight: 700; }

.beep-td-nav-btn--right { flex-direction: row-reverse; text-align: right; }

@media (max-width: 575px) {
  .beep-td-stats-row { grid-template-columns: repeat(2,1fr); padding: 20px; }
  .beep-culture-img-grid { grid-template-columns: 1fr; min-height: 0; }
  .beep-cimg-col { grid-template-rows: auto auto; }
  .beep-cimg--tall img { min-height: 220px; }
}

@media (max-width: 991px) {
  .beep-team-culture { padding: 72px 0; }
  .beep-team-culture .beep-culture-img-grid { margin-top: 48px; min-height: 320px; }
}

/* ----------------------------------------
   ABOUT PAGE  (about.html)
   ---------------------------------------- */
/* -- Story Section (About Layout 2) -- */
.beep-about-story {
  padding: 90px 0;
  background: #fff;
  overflow: visible;
}

.beep-about-story .row {
  overflow: visible;
}

.beep-about-story .col-lg-6 {
  overflow: visible;
}

.beep-story-img-wrap {
  position: relative;
  display: block;
  width: 100%;
  padding: 0 28px 32px 24px;
  margin-bottom: 4px;
  overflow: visible;
}

.beep-story-img-main {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  display: block;
}

.beep-story-img-sm {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 200px;
  height: 160px;
  object-fit: cover;
  border-radius: 12px;
  border: 5px solid #fff;
  box-shadow: var(--shadow-lg);
  z-index: 2;
}

.beep-story-badge {
  position: absolute;
  top: 24px;
  left: 0;
  z-index: 3;
  background: var(--orange);
  color: #fff;
  border-radius: 12px;
  padding: 16px 20px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(249, 115, 22, 0.35);
}

.beep-story-badge strong {
  display: block;
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 4px;
}

.beep-story-badge span {
  display: block;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.35;
  opacity: 0.9;
}

.beep-story-text {
  padding-left: 20px;
}

.beep-story-text .beep-section-label {
  display: inline-block;
  margin-left: 0;
  margin-right: auto;
}

.beep-story-text h1,
.beep-story-text h2,
.beep-story-text h3,
.beep-story-text h4,
.beep-story-text h5,
.beep-story-text h6 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 20px;
}

.beep-story-text p {
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 16px;
}

.beep-story-text p:last-of-type {
  margin-bottom: 0;
}

.beep-story-checks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 16px;
  margin: 28px 0;
}

.beep-story-check {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.4;
}

.beep-story-check i {
  flex-shrink: 0;
  color: var(--orange);
  font-size: 16px;
}

.beep-story-text .btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 4px;
}

.beep-story-text .btn-primary i,
.beep-story-text .btn-primary svg {
  font-size: 14px;
  line-height: 1;
}

@media (max-width: 991.98px) {
  .beep-story-text {
    padding-left: 0;
    padding-top: 28px;
  }

  .beep-story-img-wrap {
    padding: 0 20px 28px 20px;
    margin-bottom: 12px;
  }

  .beep-story-img-main {
    height: 380px;
  }

  .beep-story-img-sm {
    width: 170px;
    height: 136px;
  }
}

@media (max-width: 767.98px) {
  .beep-about-story {
    padding: 70px 0;
  }

  .beep-story-img-main {
    height: 320px;
  }

  .beep-story-img-sm {
    width: 150px;
    height: 120px;
  }

  .beep-story-checks {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

@media (max-width: 575.98px) {
  .beep-about-story {
    padding: 60px 0;
  }

  .beep-story-img-wrap {
    padding: 0 12px 24px 12px;
  }

  .beep-story-badge {
    top: 16px;
    left: 8px;
    padding: 12px 16px;
  }

  .beep-story-badge strong {
    font-size: 1.6rem;
  }

  .beep-story-img-main {
    height: 260px;
  }

  .beep-story-img-sm {
    width: 130px;
    height: 104px;
    border-width: 4px;
  }
}

/* -- Mission / Vision / Values -- */
.beep-mvv { padding: 90px 0; background: var(--light); }

.beep-mvv-card { background: #fff; border-radius: var(--radius); padding: 36px 32px; border: 1px solid var(--border); height: 100%; transition: var(--transition); position: relative; overflow: hidden; }

.beep-mvv-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--grad); transform: scaleX(0); transition: transform 0.3s ease; }

.beep-mvv-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.beep-mvv-card:hover::before { transform: scaleX(1); }

.beep-mvv-icon { width: 60px; height: 60px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 24px; margin-bottom: 20px; }

.beep-mvv-icon.orange { background: rgba(249,115,22,0.12); color: var(--orange); }

.beep-mvv-icon.purple { background: rgba(139,92,246,0.12); color: #8b5cf6; }

.beep-mvv-icon.green  { background: rgba(16,185,129,0.12); color: #10b981; }

.beep-mvv-card h3 { font-size: 1.15rem; font-weight: 800; color: var(--navy); margin-bottom: 12px; }

.beep-mvv-card p  { font-size: 14px; color: var(--muted); line-height: 1.75; margin: 0; }

@media (max-width: 767.98px) {
  .beep-section-sub {
    margin-bottom: 28px;
  }

  .beep-section-title-wrapper .beep-section-sub:last-child {
    margin-bottom: 28px;
  }

  .beep-mvv {
    padding: 56px 0;
  }

  .beep-mvv-card {
    padding: 28px 24px;
  }

  .beep-mvv-icon {
    width: 52px;
    height: 52px;
    font-size: 20px;
    margin-bottom: 16px;
  }

  .beep-mvv-card h3 {
    font-size: 1.05rem;
  }
}

/* -- Stats Band -- */
.beep-about-stats {
  position: relative;
  overflow: hidden;
  padding: 80px 0;
  background: linear-gradient(135deg, var(--navy) 0%, #162033 55%, #1a2744 100%);
}

.beep-about-stats::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 50%, rgba(249, 115, 22, 0.12) 0%, transparent 52%),
    radial-gradient(circle at 82% 50%, rgba(249, 115, 22, 0.08) 0%, transparent 48%);
  pointer-events: none;
}

.beep-about-stats .container {
  position: relative;
  z-index: 1;
}

.beep-about-stats-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}

.beep-astat-item {
  flex: 1 1 0;
  min-width: 160px;
  padding: 20px 28px;
  text-align: center;
}

.beep-astat-divider {
  width: 1px;
  height: 64px;
  flex-shrink: 0;
  background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.18), transparent);
}

.beep-astat-num {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
  margin-bottom: 10px;
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  font-weight: 900;
  line-height: 1;
  color: var(--orange);
}

.beep-astat-num .beep-counter-up {
  display: inline-block;
  min-width: 0.5em;
}

.beep-astat-suffix {
  font-size: 0.82em;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
}

.beep-astat-label {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.72);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  line-height: 1.4;
}

@media (max-width: 991px) {
  .beep-about-stats {
    padding: 64px 0;
  }

  .beep-about-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 36px 24px;
  }

  .beep-astat-item {
    min-width: 0;
    padding: 0;
  }

  .beep-astat-divider {
    display: none;
  }
}

@media (max-width: 575px) {
  .beep-about-stats-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

/* -- Timeline -- */
.beep-timeline-section { padding: 90px 0; background: #fff; }

.beep-timeline { position: relative; padding-left: 32px; }

.beep-timeline::before { content: ''; position: absolute; left: 7px; top: 0; bottom: 0; width: 2px; background: linear-gradient(to bottom, var(--orange), transparent); }

.beep-tl-item { position: relative; margin-bottom: 40px; }

.beep-tl-item:last-child { margin-bottom: 0; }

.beep-tl-dot { position: absolute; left: -32px; top: 4px; width: 16px; height: 16px; border-radius: 50%; background: var(--orange); border: 3px solid #fff; box-shadow: 0 0 0 3px var(--orange); }

.beep-tl-year { font-size: 12px; font-weight: 700; color: var(--orange); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 6px; }

.beep-tl-item h4 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; }

.beep-tl-item p  { font-size: 14px; color: var(--muted); line-height: 1.7; margin: 0; }

.beep-timeline-intro { text-align: left; }

.beep-timeline-intro .beep-section-label {
  display: inline-block;
  margin-left: 0;
  margin-right: auto;
}

.beep-timeline-intro .beep-section-title {
  text-align: left;
  margin-bottom: 16px;
}

.beep-timeline-intro .beep-section-sub {
  text-align: left;
  margin-left: 0;
  margin-right: auto;
  margin-bottom: 0;
  max-width: none;
}

.beep-timeline-img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  margin-top: 28px;
  display: block;
  object-fit: cover;
}

@media (max-width: 991.98px) {
  .beep-timeline-intro {
    margin-bottom: 32px;
  }

  .beep-timeline-intro .beep-section-sub {
    margin-bottom: 0;
  }
}

/* -- Values -- */
.beep-values-section { padding: 90px 0; background: var(--light); }

.beep-value-card { background: #fff; border-radius: var(--radius); padding: 32px; border: 1px solid var(--border); height: 100%; text-align: center; transition: var(--transition); }

.beep-value-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }

.beep-value-icon { width: 64px; height: 64px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 24px; margin: 0 auto 18px; }

.beep-value-icon.orange { background: rgba(249,115,22,0.1); color: var(--orange); }

.beep-value-icon.purple { background: rgba(139,92,246,0.1); color: #8b5cf6; }

.beep-value-icon.green  { background: rgba(16,185,129,0.1); color: #10b981; }

.beep-value-icon.blue   { background: rgba(59,130,246,0.1); color: #3b82f6; }

.beep-value-icon.yellow { background: rgba(245,158,11,0.1); color: #f59e0b; }

.beep-value-icon.red    { background: rgba(239,68,68,0.1); color: #ef4444; }

.beep-value-card h4 { font-size: 1rem; font-weight: 800; color: var(--navy); margin-bottom: 10px; }

.beep-value-card p  { font-size: 13.5px; color: var(--muted); line-height: 1.7; margin: 0; }

/* -- About Team / Trusted -- */
.beep-about-team { padding: 90px 0; background: #fff; }

.beep-about-trusted { padding: 64px 0; background: var(--light); border-top: 1px solid var(--border); }

.beep-about-trusted p { text-align: center; font-size: 14px; font-weight: 600; color: var(--muted); margin-bottom: 32px; text-transform: uppercase; letter-spacing: 1px; }

/* ----------------------------------------
   PORTFOLIO PAGE  (portfolio.html)
   ---------------------------------------- */
/* -- Portfolio Filter -- */
.beep-portfolio-filters { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 48px; }

.beep-pf-filter-btn { padding: 8px 22px; border-radius: 50px; border: 2px solid var(--border); background: #fff; color: var(--navy); font-weight: 600; font-size: 14px; cursor: pointer; transition: var(--transition); }

.beep-pf-filter-btn:hover, .beep-pf-filter-btn.active { background: var(--orange); border-color: var(--orange); color: #fff; }

/* -- Portfolio Grid -- */
.beep-portfolio-section { padding: 90px 0; background: var(--light); }

.beep-portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; align-items: start; }

.beep-portfolio-grid.isotope-enabled {
  display: block;
}

.beep-portfolio-grid.isotope-enabled .beep-port-card {
  width: 31.5%;
  margin-bottom: 28px;
}

@media (max-width: 991px) {
  .beep-portfolio-grid.isotope-enabled .beep-port-card {
    width: 48%;
  }
}

@media (max-width: 575px) {
  .beep-portfolio-grid.isotope-enabled .beep-port-card {
    width: 100%;
  }
}

/* -- Portfolio Card – image-only with brand-color info panel -- */
.beep-port-card { position: relative; border-radius: 16px; overflow: hidden; cursor: pointer; transition: box-shadow 0.3s ease; }

.beep-port-card:hover { box-shadow: 0 20px 50px rgba(0,0,0,0.18); }

.beep-port-thumb { position: relative; overflow: hidden; width: 100%; display: block; line-height: 0; }

.beep-port-thumb img { width: 100%; height: auto; display: block; transition: transform 0.55s cubic-bezier(0.4,0,0.2,1); }

.beep-port-card:hover .beep-port-thumb img { transform: scale(1.06); }

/* Info panel – rounded top corners, slides up from bottom on hover */
.beep-port-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--orange);
  padding: 18px 20px 20px;
  border-radius: 16px 16px 0 0;
  transform: translateY(102%);
  transition: transform 0.38s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.beep-port-card:hover .beep-port-info { transform: translateY(0); }

/* White title text on the orange panel */
.beep-port-info h3 { font-size: 0.975rem; font-weight: 700; color: #fff; margin: 0 0 4px; line-height: 1.35; }

/* White category label */
.beep-port-cat { font-size: 11px; font-weight: 600; color: rgba(255,255,255,0.85); text-transform: uppercase; letter-spacing: 0.8px; display: block; margin-bottom: 12px; }

/* Action links row – single circle arrow */
.beep-port-overlay { display: flex; gap: 8px; }

.beep-port-overlay a { width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,0.2); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 13px; transition: background 0.22s ease, color 0.22s ease; text-decoration: none; }

.beep-port-overlay a:hover { background: #fff; color: var(--orange); }

/* Keep old .beep-port-body harmless if still present elsewhere */
.beep-port-body { display: none; }

/* -- Stats Band -- */
.beep-port-stats { background: var(--navy); padding: 64px 0; }

.beep-port-stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; text-align: center; }

/* -- Portfolio Testimonial -- */
.beep-port-testi { padding: 90px 0; background: #fff; }

.beep-pt-outer { display: flex; align-items: center; gap: 16px; }

.beep-pt-wrap { flex: 1; min-width: 0; display: flex; flex-direction: column; align-items: center; gap: 20px; }

.beep-port-testi-swiper { width: 100%; overflow: hidden !important; }

.beep-port-testi-swiper .swiper-slide { height: auto; }

.beep-pt-arrow { flex-shrink: 0; width: 44px; height: 44px; border-radius: 50%; background: #fff; border: 1px solid var(--border); color: var(--navy); font-size: 14px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: var(--transition); box-shadow: 0 2px 8px rgba(0,0,0,0.08); }

.beep-pt-arrow:hover { background: var(--orange); border-color: var(--orange); color: #fff; }

.beep-tstrip-card { background: var(--light); border-radius: var(--radius); padding: 32px; border: 1px solid var(--border); position: relative; }

.beep-tstrip-card::before { content: '\201C'; font-size: 80px; line-height: 0.6; color: var(--orange); opacity: 0.25; position: absolute; top: 24px; left: 24px; font-family: Georgia, serif; }

.beep-tstrip-stars { color: #f59e0b; font-size: 13px; margin-bottom: 14px; }

.beep-tstrip-card p { font-size: 14px; color: var(--muted); line-height: 1.7; margin-bottom: 20px; font-style: italic; }

.beep-tstrip-author { display: flex; align-items: center; gap: 12px; }

.beep-tstrip-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--grad); display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 700; font-size: 14px; flex-shrink: 0; }

.beep-tstrip-author strong { display: block; font-size: 14px; color: var(--navy); font-weight: 700; }

.beep-tstrip-author span  { font-size: 12px; color: var(--muted); }

.beep-port-testi-pagination { position: static !important; display: flex !important; justify-content: center; gap: 6px; }

.beep-port-testi-pagination .swiper-pagination-bullet { display: inline-block; width: 8px; height: 8px; border-radius: 99px; background: var(--muted); opacity: 0.4; cursor: pointer; transition: all 0.3s; }

.beep-port-testi-pagination .swiper-pagination-bullet-active { background: var(--orange); opacity: 1; width: 24px; }

.beep-pd-section.bg-light-alt { background: var(--light); }

.beep-pd-cover { width: 100%; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); margin-bottom: 48px; }

.beep-pd-cover img { width: 100%; height: 480px; object-fit: cover; display: block; }

/* -- Info Sidebar -- */
.beep-pd-info-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 32px; position: sticky; top: 88px; }

.beep-pd-info-card h4 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 20px; padding-bottom: 12px; border-bottom: 2px solid var(--orange); display: inline-block; }

.beep-pd-info-card--full { position: static; margin-bottom: 48px; }

.beep-pd-header { margin-bottom: 32px; }

.beep-pd-header .beep-section-title { margin-bottom: 0; }

.beep-pd-testi-avatar-img { object-fit: cover; display: block; }

.beep-pd-testi-stars .opacity-25 { opacity: 0.25; }

.beep-pd-info-row { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--border); font-size: 14px; }

.beep-pd-info-row:last-of-type { border-bottom: none; }

.beep-pd-info-label { color: var(--muted); font-weight: 500; flex-shrink: 0; }

.beep-pd-info-value { color: var(--navy); font-weight: 600; text-align: right; }

.beep-pd-tags-wrap { display: flex; flex-wrap: wrap; gap: 6px; justify-content: flex-end; }

.beep-pd-tag { font-size: 11px; font-weight: 600; padding: 3px 10px; border-radius: 50px; background: var(--light); color: var(--navy); border: 1px solid var(--border); }

.beep-pd-info-btns { margin-top: 24px; display: flex; flex-direction: column; gap: 10px; }

.beep-pd-info-icon { color: var(--orange); margin-right: 6px; }

/* -- Content body -- */
.beep-pd-body { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 40px; }

.beep-pd-body h2 { font-size: 1.5rem; font-weight: 800; color: var(--navy); margin: 32px 0 14px; }

.beep-pd-body h2:first-child { margin-top: 0; }

.beep-pd-body p { color: var(--muted); line-height: 1.8; margin-bottom: 16px; }

.beep-pd-body ul { padding-left: 0; list-style: none; margin-bottom: 16px; }

.beep-pd-body ul li { position: relative; padding-left: 22px; color: var(--muted); margin-bottom: 10px; line-height: 1.7; font-size: 15px; }

.beep-pd-body ul li::before { content: ''; position: absolute; left: 0; top: 9px; width: 8px; height: 8px; border-radius: 50%; background: var(--orange); }

/* -- Callout Box -- */
.beep-pd-callout { background: linear-gradient(135deg, rgba(249,115,22,0.08), rgba(249,115,22,0.03)); border-left: 4px solid var(--orange); border-radius: 0 12px 12px 0; padding: 20px 24px; margin: 28px 0; }

.beep-pd-callout p { margin: 0; color: var(--navy); font-weight: 500; font-size: 15px; }

/* -- Gallery -- */
.beep-pd-gallery { padding: 90px 0; background: var(--light); }

.beep-pd-gallery .text-center .beep-section-sub,
.beep-pd-gallery .beep-section-title-wrapper .beep-section-sub {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.beep-pd-gallery .text-center .beep-section-sub {
  margin-bottom: 0;
}

.beep-pd-gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: stretch; }

.beep-pd-gallery-grid .beep-gal-item { border-radius: 12px; overflow: hidden; box-shadow: var(--shadow-lg); display: flex; }

.beep-pd-gallery-grid .beep-gal-item.span-2 { grid-column: span 2; }

.beep-pd-gallery-grid img { width: 100%; height: 100%; min-height: 220px; object-fit: cover; display: block; transition: transform 0.4s ease; }

.beep-gal-item.span-2 img { min-height: 320px; }

.beep-gal-item:hover img { transform: scale(1.05); }

.beep-gal-item a { display: flex; flex: 1; width: 100%; position: relative; overflow: hidden; min-height: 220px; }

.beep-gal-item.span-2 a { min-height: 320px; }

.beep-gal-zoom { position: absolute; inset: 0; background: rgba(15,23,42,0.5); display: flex; align-items: center; justify-content: center; opacity: 0; transition: var(--transition); color: #fff; font-size: 28px; }

.beep-gal-item:hover .beep-gal-zoom { opacity: 1; }

/* -- Results / Stats -- */
.beep-pd-results { padding: 90px 0; background: var(--navy); }

.beep-pd-results-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; text-align: center; }

.beep-pdr-num { font-size: clamp(2rem, 4vw, 3rem); font-weight: 900; color: var(--orange); line-height: 1; margin-bottom: 8px; }

.beep-pdr-label { font-size: 14px; color: rgba(255,255,255,0.65); }

.beep-pdr-icon { width: 52px; height: 52px; border-radius: 50%; background: rgba(249,115,22,0.15); display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; font-size: 20px; color: var(--orange); }

/* -- Testimonial -- */
.beep-pd-testi { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 40px; margin-top: 48px; position: relative; }

.beep-pd-testi::before { content: '\201C'; font-size: 100px; line-height: 0.6; color: var(--orange); opacity: 0.15; position: absolute; top: 28px; left: 28px; font-family: Georgia, serif; }

.beep-pd-testi p { font-size: 16px; font-style: italic; color: var(--muted); line-height: 1.8; margin-bottom: 20px; }

.beep-pd-testi-author { display: flex; align-items: center; gap: 14px; }

.beep-pd-testi-avatar { width: 50px; height: 50px; border-radius: 50%; background: var(--grad); display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 700; font-size: 16px; flex-shrink: 0; }

.beep-pd-testi-author strong { display: block; color: var(--navy); font-weight: 700; }

.beep-pd-testi-author span { font-size: 13px; color: var(--muted); }

.beep-pd-testi-stars { color: #f59e0b; font-size: 13px; margin-bottom: 16px; }

/* -- Prev / Next navigation -- */
.beep-pd-nav { padding: 60px 0; background: var(--light); }

.beep-pd-nav-inner { display: grid; grid-template-columns: 1fr auto 1fr; gap: 20px; align-items: center; }

.beep-pd-nav-link { display: flex; align-items: center; gap: 14px; padding: 20px 24px; background: #fff; border: 1px solid var(--border); border-radius: var(--radius); text-decoration: none; transition: var(--transition); }

.beep-pd-nav-link:hover { border-color: var(--orange); box-shadow: 0 8px 24px rgba(249,115,22,0.12); }

.beep-pd-nav-link.next { flex-direction: row-reverse; text-align: right; }

.beep-pd-nav-icon { width: 44px; height: 44px; border-radius: 50%; background: var(--light); display: flex; align-items: center; justify-content: center; color: var(--orange); font-size: 16px; flex-shrink: 0; transition: var(--transition); }

.beep-pd-nav-link:hover .beep-pd-nav-icon { background: var(--orange); color: #fff; }

.beep-pd-nav-dir { font-size: 11px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; }

.beep-pd-nav-title { font-size: 14px; font-weight: 700; color: var(--navy); margin-top: 2px; }

.beep-pd-nav-divider { text-align: center; }

.beep-pd-nav-divider a { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 600; color: var(--muted); text-decoration: none; transition: var(--transition); }

.beep-pd-nav-divider a:hover { color: var(--orange); }

/* ----------------------------------------
   INLINE STYLE REPLACEMENT UTILITIES
   ---------------------------------------- */
/* Banner gradient color variants */
.beep-banner-orange       { --banner-a: #F97316; --banner-b: #FB923C; }

.beep-banner-purple       { --banner-a: #8B5CF6; --banner-b: #A78BFA; }

.beep-banner-blue         { --banner-a: #3B82F6; --banner-b: #60A5FA; }

.beep-banner-green        { --banner-a: #10B981; --banner-b: #34D399; }

.beep-banner-red          { --banner-a: #EF4444; --banner-b: #F87171; }

.beep-banner-teal         { --banner-a: #14B8A6; --banner-b: #2DD4BF; }

.beep-banner-yellow       { --banner-a: #F59E0B; --banner-b: #FCD34D; }

.beep-banner-pink-purple  { --banner-a: #8B5CF6; --banner-b: #EC4899; }

.beep-banner-red-purple   { --banner-a: #EF4444; --banner-b: #7C3AED; }

.beep-banner-cyan         { --banner-a: #06B6D4; --banner-b: #38BDF8; }

.beep-banner-orange-purple{ --banner-a: #F97316; --banner-b: #8B5CF6; }

.beep-banner-green-blue   { --banner-a: #10B981; --banner-b: #3B82F6; }

/* Plugin detail feature card icon color variants */
.beep-pd-fcard-icon.pink   { color: #e84393; background: rgba(232,67,147,0.1); }

.beep-pd-fcard-icon.green  { color: #10b981; background: rgba(16,185,129,0.1); }

.beep-pd-fcard-icon.blue   { color: #3b82f6; background: rgba(59,130,246,0.1); }

.beep-pd-fcard-icon.purple { color: #8b5cf6; background: rgba(139,92,246,0.1); }

.beep-pd-fcard-icon.yellow { color: #f59e0b; background: rgba(245,158,11,0.1); }

.beep-pd-fcard-icon.cyan   { color: #06b6d4; background: rgba(6,182,212,0.1); }

/* Blog category badge color variants */
.beep-blog-cat-badge.purple { background: #8b5cf6; }

.beep-blog-cat-badge.green  { background: #10b981; }

.beep-blog-cat-badge.red    { background: #ef4444; }

.beep-blog-cat-badge.static-badge { position: static; display: inline-block; margin-bottom: 20px; }

/* Text / color utilities */
.beep-text-left       { text-align: left; }

.beep-text-orange     { color: var(--orange); }

.beep-text-white      { color: #fff; }

.beep-text-white-muted{ color: rgba(255,255,255,0.6); }

/* Margin utilities */
.beep-mt-0  { margin-top: 0 !important; }

.beep-mt-8  { margin-top: 8px; }

.beep-mt-16 { margin-top: 16px; }

.beep-mt-24 { margin-top: 24px; }

.beep-mt-28 { margin-top: 28px; }

.beep-mt-32 { margin-top: 32px; }

.beep-mt-40 { margin-top: 40px; }

.beep-mt-48 { margin-top: 48px; }

.beep-mb-0  { margin-bottom: 0 !important; }

.beep-mb-14 { margin-bottom: 14px; }

.beep-mb-16 { margin-bottom: 16px; }

.beep-mb-18 { margin-bottom: 18px; }

.beep-mb-20 { margin-bottom: 20px; }

.beep-mb-24 { margin-bottom: 24px; }

.beep-mb-28 { margin-bottom: 28px; }

/* Background utilities */
.beep-bg-light { background: var(--light); }

/* Layout utilities */
.beep-flex-btns       { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }

.beep-flex-center-btns{ display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.beep-center-link     { text-align: center; margin-top: 40px; }

.beep-center-btn.beep-flex-row { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* Specific overrides */
.beep-spotlight-desc  { font-size: 15px; color: var(--text); line-height: 1.8; margin-bottom: 24px; }

.beep-price-num-custom{ font-size: 32px; }

/* btn-outline-white defined in buttons section above */

.beep-reviews-mt      { margin-top: 32px; }
