/**
 * Unlock Center Platform — Landing & Public CSS
 * Clean version
 */

/* ── Variables ──────────────────────────────────────────────── */
:root {
  --uc-primary:    #0057ff;
  --uc-primary-d:  #0040cc;
  --uc-secondary:  #00d4ff;
  --uc-dark:       #0e1624;
  --uc-dark2:      #1a2744;
  --uc-gray:       #f4f6fb;
  --uc-gray2:      #e9ecf3;
  --uc-text:       #1a1e2e;
  --uc-muted:      #6c757d;
  --uc-border:     #e3e8f0;
  --uc-card-bg:    #ffffff;
  --uc-success:    #16c77a;
  --uc-warning:    #f59e0b;
  --uc-danger:     #ef4444;
  --uc-font:       'Segoe UI', system-ui, -apple-system, sans-serif;
  --uc-radius:     12px;
  --uc-shadow:     0 4px 24px rgba(0,87,255,.07);
  --uc-shadow-lg:  0 8px 40px rgba(0,87,255,.12);
}

/* ── Base ───────────────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  font-family: var(--uc-font);
  color: var(--uc-text);
  background: #fff;
  font-size: 15px;
  line-height: 1.6;
}

a {
  color: var(--uc-primary);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* ── Top bar ─────────────────────────────────────────────────── */
.uc-topbar {
  background: var(--uc-dark);
  border-bottom: 1px solid rgba(255,255,255,.07);
  font-size: .82rem;
}

.uc-topbar-item {
  color: rgba(255,255,255,.75);
  display: inline-flex;
  align-items: center;
}

.uc-topbar-item.credit-label {
  color: var(--uc-secondary);
  font-weight: 600;
}

.uc-topbar-item:hover {
  color: #fff;
  text-decoration: none;
}

.uc-topbar-social {
  color: rgba(255,255,255,.6);
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.15);
  transition: all .2s;
  font-size: .9rem;
}

.uc-topbar-social:hover {
  color: #fff;
  border-color: #fff;
  background: rgba(255,255,255,.1);
  text-decoration: none;
}

/* ── Navbar ──────────────────────────────────────────────────── */
.uc-navbar {
  background: rgba(14,22,36,.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.08);
  padding: .75rem 0;
  transition: box-shadow .3s;
}

.uc-navbar.scrolled {
  box-shadow: 0 4px 24px rgba(0,0,0,.4);
}

.uc-logo {
  font-weight: 800;
  font-size: 1.2rem;
  color: #fff !important;
  display: flex;
  align-items: center;
  gap: 8px;
}

.uc-logo:hover {
  text-decoration: none;
}

.uc-logo .logo-icon {
  width: 34px;
  height: 34px;
  background: var(--uc-primary);
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: .9rem;
}

.uc-navbar .nav-link {
  color: rgba(255,255,255,.8) !important;
  font-size: .88rem;
  font-weight: 500;
  padding: .45rem .7rem !important;
  border-radius: 6px;
  transition: all .2s;
}

.uc-navbar .nav-link:hover,
.uc-navbar .nav-link.active {
  color: #fff !important;
  background: rgba(255,255,255,.1);
  text-decoration: none;
}

.uc-btn-login {
  background: var(--uc-primary);
  color: #fff !important;
  border: none;
  border-radius: 8px;
  font-size: .85rem;
  font-weight: 600;
  padding: .4rem .9rem;
}

.uc-btn-login:hover {
  background: var(--uc-primary-d) !important;
  transform: translateY(-1px);
  text-decoration: none;
}

.uc-dropdown {
  border: 1px solid var(--uc-border);
  border-radius: var(--uc-radius);
  box-shadow: var(--uc-shadow-lg);
  min-width: 220px;
  padding: .5rem;
}

.uc-dropdown .dropdown-item {
  border-radius: 8px;
  padding: .5rem .75rem;
  font-size: .88rem;
}

.uc-dropdown .dropdown-item:hover {
  background: var(--uc-gray);
}

/* ── Desktop Navbar Rules ───────────────────────────────────── */
@media (min-width: 992px) {
  .uc-navbar .container {
    display: flex !important;
    align-items: center !important;
  }

  .uc-mobile-toggler,
  .uc-navbar .uc-toggler {
    display: none !important;
  }

  .uc-logo {
    order: 0 !important;
    margin-left: 0 !important;
    margin-right: 1.5rem !important;
  }

  .navbar-collapse {
    order: 1 !important;
    display: flex !important;
  }

  .uc-drawer {
    display: none !important;
  }
}

/* ── Mobile Navbar ───────────────────────────────────────────── */
.uc-toggler {
  border: none;
  background: transparent;
  padding: 4px 8px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.uc-toggler span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all .3s;
}

@media (max-width: 991.98px) {
  .uc-navbar {
    min-height: 66px !important;
    padding: 0 !important;
  }

  .uc-navbar .container {
    min-height: 66px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 10px !important;
    padding-left: 14px !important;
    padding-right: 14px !important;
  }

  .uc-navbar .uc-toggler,
  .uc-mobile-toggler {
    order: 0 !important;
    width: 36px !important;
    height: 36px !important;
    min-width: 36px !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    outline: none !important;
    display: inline-flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 5px !important;
  }

  .uc-navbar .uc-toggler span,
  .uc-mobile-toggler span {
    width: 22px !important;
    height: 2px !important;
    border-radius: 30px !important;
    background: #ffffff !important;
    display: block !important;
    margin: 0 !important;
  }

  .uc-logo {
    order: 1 !important;
    margin: 0 !important;
    margin-right: auto !important;
    min-width: 0 !important;
    max-width: calc(100% - 52px) !important;
    display: flex !important;
    align-items: center !important;
    gap: 9px !important;
    color: #ffffff !important;
    font-size: 15px !important;
    font-weight: 800 !important;
    line-height: 1.1 !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
  }

  .uc-logo img {
    max-height: 32px !important;
    width: auto !important;
    flex-shrink: 0 !important;
  }

  .uc-logo .logo-icon {
    width: 32px !important;
    height: 32px !important;
    min-width: 32px !important;
    border-radius: 8px !important;
    font-size: 13px !important;
    flex-shrink: 0 !important;
  }

  .navbar-collapse {
    display: none !important;
  }
}

/* ── Mobile Drawer / Offcanvas ───────────────────────────────── */
.uc-drawer.offcanvas,
.uc-drawer.offcanvas-start {
  width: 72vw !important;
  max-width: 295px !important;
  min-width: 0 !important;
  background: #ffffff !important;
  color: #555555 !important;
  border-right: 0 !important;
  box-shadow: none !important;
  overflow: hidden !important;
}

.uc-drawer .offcanvas-header,
.uc-drawer .offcanvas-body {
  padding: 0 !important;
  margin: 0 !important;
}

.uc-drawer-body,
.uc-drawer .offcanvas-body {
  background: #ffffff !important;
  overflow: hidden !important;
  padding: 0 !important;
}

.uc-drawer-top {
  background: #30354f !important;
  padding: 14px 12px 12px !important;
  min-height: 104px !important;
}

.uc-drawer-head {
  height: 36px !important;
  display: flex !important;
  align-items: center !important;
  gap: 9px !important;
  margin: 0 0 12px !important;
  padding: 0 !important;
}

.uc-drawer-back {
  width: 26px !important;
  height: 26px !important;
  min-width: 26px !important;
  border: 0 !important;
  background: transparent !important;
  color: #ffffff !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 18px !important;
  line-height: 1 !important;
  padding: 0 !important;
  margin: 0 !important;
  cursor: pointer !important;
  flex-shrink: 0 !important;
}

.uc-drawer-back i {
  font-size: 18px !important;
  line-height: 1 !important;
}

.uc-drawer-brand {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  min-width: 0 !important;
  flex: 1 1 auto !important;
}

.uc-drawer-logo-icon,
.uc-drawer-logo-img {
  width: 28px !important;
  height: 28px !important;
  min-width: 28px !important;
  max-width: 28px !important;
  border-radius: 8px !important;
  font-size: 12px !important;
  padding: 3px !important;
  flex-shrink: 0 !important;
}

.uc-drawer-logo-icon {
  background: #2f6df6 !important;
  color: #ffffff !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.uc-drawer-logo-img {
  object-fit: contain !important;
  background: rgba(255,255,255,.08) !important;
}

.uc-drawer-brand-text {
  display: block !important;
  color: #ffffff !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  line-height: 1.1 !important;
  max-width: 180px !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
}

.uc-drawer-auth {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 8px !important;
  width: 100% !important;
  margin: 0 !important;
}

.uc-drawer-auth-btn {
  height: 35px !important;
  min-height: 35px !important;
  border-radius: 5px !important;
  text-decoration: none !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  line-height: 1 !important;
  padding: 0 8px !important;
  margin: 0 !important;
  border: 0 !important;
}

.uc-drawer-auth-btn:hover {
  text-decoration: none !important;
}

.uc-drawer-auth-btn.is-light {
  background: #f4f4f5 !important;
  color: #111827 !important;
}

.uc-drawer-auth-btn.is-dark {
  background: #22263a !important;
  color: #ffffff !important;
}

.uc-drawer-section-title {
  height: 36px !important;
  padding: 11px 14px 0 !important;
  margin: 0 !important;
  font-size: 10px !important;
  line-height: 1 !important;
  letter-spacing: .11em !important;
  font-weight: 600 !important;
  color: #8c8c8c !important;
  background: #ffffff !important;
  border-bottom: 1px solid #eeeeee !important;
}

.uc-drawer-nav {
  display: flex !important;
  flex-direction: column !important;
  background: #ffffff !important;
  margin: 0 !important;
  padding: 0 !important;
}

.uc-drawer-link {
  height: 49px !important;
  min-height: 49px !important;
  max-height: 49px !important;
  padding: 0 14px !important;
  margin: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 12px !important;
  text-decoration: none !important;
  color: #555555 !important;
  background: #ffffff !important;
  border-bottom: 1px solid #eeeeee !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  line-height: 1 !important;
}

.uc-drawer-link span {
  display: block !important;
  flex: 1 1 auto !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  line-height: 1 !important;
  color: #555555 !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
}

.uc-drawer-link i {
  color: #a0a0a0 !important;
  font-size: 13px !important;
  line-height: 1 !important;
  flex-shrink: 0 !important;
}

.uc-drawer-link:hover,
.uc-drawer-link:focus {
  background: #f7f7f7 !important;
  color: #333333 !important;
  text-decoration: none !important;
}

.offcanvas-backdrop.show {
  opacity: .48 !important;
  background-color: #000000 !important;
}

.uc-drawer,
.uc-drawer *,
.uc-drawer-body,
.uc-drawer .offcanvas-body {
  scrollbar-width: none !important;
}

.uc-drawer::-webkit-scrollbar,
.uc-drawer *::-webkit-scrollbar,
.uc-drawer-body::-webkit-scrollbar,
.uc-drawer .offcanvas-body::-webkit-scrollbar {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
}

/* ── Hero ─────────────────────────────────────────────────────── */
.uc-hero {
  position: relative;
  overflow: hidden;
}

.hero-img {
  max-height: 520px;
  object-fit: cover;
  width: 100%;
}

.hero-placeholder {
  background: linear-gradient(135deg, var(--uc-dark) 0%, var(--uc-dark2) 50%, #0057ff22 100%);
  min-height: 480px;
}

.uc-caption {
  text-shadow: 0 2px 12px rgba(0,0,0,.6);
  bottom: 15% !important;
  text-align: left !important;
  padding-left: 5% !important;
}

.hero-title {
  font-size: clamp(1.4rem, 3.5vw, 2.8rem);
  font-weight: 800;
  margin-bottom: .5rem;
}

.hero-subtitle {
  font-size: clamp(.9rem, 1.8vw, 1.2rem);
  opacity: .9;
  max-width: 560px;
}

.hero-no-banner {
  background: linear-gradient(135deg, var(--uc-dark) 0%, var(--uc-dark2) 60%, #0a2255 100%);
  color: #fff;
  min-height: 460px;
  display: flex;
  align-items: center;
}

.hero-title-plain {
  font-size: clamp(1.6rem,4vw,3rem);
  font-weight: 800;
  color: #fff;
}

.hero-subtitle-plain {
  color: rgba(255,255,255,.8);
  font-size: 1.15rem;
}

.carousel-indicators button {
  width: 8px !important;
  height: 8px !important;
  border-radius: 50% !important;
}

/* ── Quick Buttons ─────────────────────────────────────────────── */
.uc-quick-buttons {
  background: var(--uc-gray);
  border-bottom: 1px solid var(--uc-border);
}

.uc-quick-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: .5rem 1.2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: .88rem;
  text-decoration: none;
  transition: all .2s;
  border: 2px solid transparent;
}

.uc-quick-btn.btn-success {
  background:#16c77a;
  color:#fff;
  border-color:#16c77a;
}

.uc-quick-btn.btn-whatsapp {
  background:#25d366;
  color:#fff;
  border-color:#25d366;
}

.uc-quick-btn.btn-telegram {
  background:#0088cc;
  color:#fff;
  border-color:#0088cc;
}

.uc-quick-btn.btn-primary {
  background:var(--uc-primary);
  color:#fff;
  border-color:var(--uc-primary);
}

.uc-quick-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0,0,0,.2);
  text-decoration: none;
  color: inherit;
}

/* ── Sections ──────────────────────────────────────────────────── */
.uc-section {
  padding: 80px 0;
}

.section-badge {
  display: inline-block;
  background: rgba(0,87,255,.1);
  color: var(--uc-primary);
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  padding: .3rem .9rem;
  border-radius: 50px;
}

.section-badge-light {
  background: rgba(255,255,255,.15);
  color: rgba(255,255,255,.85);
}

.section-title {
  font-size: clamp(1.4rem,2.5vw,2.1rem);
  font-weight: 800;
  color: var(--uc-dark);
}

.section-subtitle {
  color: var(--uc-muted);
  max-width: 520px;
  margin: 0 auto;
}

/* ── Service cards ─────────────────────────────────────────────── */
.uc-services-section {
  background: var(--uc-gray);
}

.uc-service-card {
  background: var(--uc-card-bg);
  border: 1px solid var(--uc-border);
  border-radius: var(--uc-radius);
  padding: 1.75rem 1.5rem;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: all .25s;
}

.uc-service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--uc-primary), var(--uc-secondary));
  opacity: 0;
  transition: opacity .25s;
}

.uc-service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--uc-shadow-lg);
}

.uc-service-card:hover::before {
  opacity: 1;
}

.service-icon-wrap {
  width: 52px;
  height: 52px;
  background: rgba(0,87,255,.08);
  color: var(--uc-primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.service-title {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: .35rem;
}

.service-desc {
  color: var(--uc-muted);
  font-size: .87rem;
  margin-bottom: .5rem;
}

.service-price-from {
  font-size: .85rem;
  color: var(--uc-muted);
}

.service-price-from strong {
  color: var(--uc-primary);
  font-size: 1rem;
}

/* ── Why section ───────────────────────────────────────────────── */
.uc-why-section {
  background: var(--uc-dark);
}

.uc-why-section .section-title {
  color: #fff;
}

.uc-why-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--uc-radius);
  padding: 1.5rem;
  height: 100%;
  text-align: center;
  transition: all .25s;
}

.uc-why-card:hover {
  background: rgba(255,255,255,.08);
  transform: translateY(-3px);
}

.why-icon {
  width: 54px;
  height: 54px;
  background: rgba(0,87,255,.2);
  color: var(--uc-secondary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin: 0 auto 1rem;
}

.why-title {
  color: #fff;
  font-weight: 700;
  font-size: .95rem;
  margin-bottom: .4rem;
}

.why-desc {
  color: rgba(255,255,255,.65);
  font-size: .84rem;
  margin: 0;
}

/* ── Stats ─────────────────────────────────────────────────────── */
.uc-stats-section {
  background: linear-gradient(135deg, var(--uc-primary) 0%, #0040cc 100%);
  padding: 60px 0;
}

.stat-item {
  color: #fff;
}

.stat-number {
  font-size: clamp(1.6rem,3vw,2.5rem);
  font-weight: 900;
  line-height: 1;
}

.stat-label {
  font-size: .85rem;
  opacity: .8;
  margin-top: .3rem;
  text-transform: uppercase;
  letter-spacing: .06em;
}

/* ── Payment methods ───────────────────────────────────────────── */
.uc-pay-section {
  background: var(--uc-gray);
}

.uc-pay-method {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--uc-border);
  border-radius: var(--uc-radius);
  padding: 1.25rem 1.75rem;
  font-weight: 600;
  font-size: .88rem;
  color: var(--uc-text);
  transition: all .2s;
  min-width: 120px;
}

.uc-pay-method i {
  font-size: 1.8rem;
  color: var(--uc-primary);
}

.uc-pay-method:hover {
  transform: translateY(-3px);
  box-shadow: var(--uc-shadow);
}

/* ── Testimonials ──────────────────────────────────────────────── */
.uc-testimonial-card {
  background: #fff;
  border: 1px solid var(--uc-border);
  border-radius: var(--uc-radius);
  padding: 1.5rem;
  height: 100%;
  box-shadow: var(--uc-shadow);
}

.t-comment {
  font-size: .9rem;
  color: var(--uc-muted);
  line-height: 1.6;
  margin-bottom: 1rem;
  font-style: italic;
}

.t-author {
  display: flex;
  align-items: center;
  gap: .75rem;
}

.t-avatar {
  width: 40px;
  height: 40px;
  background: var(--uc-primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.t-name {
  font-weight: 700;
  font-size: .9rem;
}

.t-country {
  font-size: .8rem;
  color: var(--uc-muted);
}

/* ── CTA ───────────────────────────────────────────────────────── */
.uc-cta-section {
  background: linear-gradient(135deg, var(--uc-dark2) 0%, #0a1e40 100%);
  color: #fff;
  padding: 80px 0;
}

.cta-title {
  font-size: clamp(1.4rem,2.5vw,2.2rem);
  font-weight: 800;
}

.cta-desc {
  opacity: .8;
  font-size: 1.05rem;
  max-width: 500px;
  margin: 0 auto;
}

/* ── Footer ────────────────────────────────────────────────────── */
.uc-footer {
  background: var(--uc-dark);
  color: rgba(255,255,255,.75);
  padding-top: 60px;
}

.footer-brand {
  display: flex;
  align-items: center;
  color: #fff;
}

.footer-desc {
  font-size: .87rem;
  opacity: .7;
}

.footer-heading {
  color: #fff;
  font-weight: 700;
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: .75rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: .4rem;
}

.footer-links a {
  color: rgba(255,255,255,.65);
  font-size: .88rem;
  transition: color .2s;
}

.footer-links a:hover {
  color: #fff;
  text-decoration: none;
}

.footer-social {
  width: 34px;
  height: 34px;
  background: rgba(255,255,255,.1);
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.7);
  font-size: .9rem;
  transition: all .2s;
}

.footer-social:hover {
  background: var(--uc-primary);
  color: #fff;
  text-decoration: none;
}

.footer-social.footer-wa:hover {
  background: #25d366;
}

.footer-social.footer-tg:hover {
  background: #0088cc;
}

.footer-divider {
  border-color: rgba(255,255,255,.1);
}

.footer-copy {
  color: rgba(255,255,255,.45);
  font-size: .83rem;
}

.footer-copy-link {
  color: rgba(255,255,255,.55);
  font-size: .83rem;
}

.footer-copy-link:hover {
  color: #fff;
}

/* ── WhatsApp float ────────────────────────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  width: 54px;
  height: 54px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.5rem;
  box-shadow: 0 4px 20px rgba(37,211,102,.5);
  transition: all .25s;
}

.wa-float:hover {
  transform: scale(1.1);
  color: #fff;
  text-decoration: none;
}

/* ══════════════════════════════════════
   PRICING PAGE
══════════════════════════════════════ */
.pricing-hero {
  background: linear-gradient(135deg, var(--uc-dark) 0%, var(--uc-dark2) 100%);
  color: #fff;
  padding: 40px 0 30px;
}

.pricing-hero .breadcrumb-item a {
  color: rgba(255,255,255,.7);
}

.pricing-hero .breadcrumb-item.active {
  color: rgba(255,255,255,.5);
}

.pricing-hero .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255,255,255,.4);
}

.pricing-page-title {
  font-size: clamp(1.2rem,2.5vw,1.8rem);
  font-weight: 800;
  margin-bottom: .3rem;
}

.pricing-page-sub {
  color: rgba(255,255,255,.65);
  font-size: .9rem;
  margin: 0;
}

.pricing-tabs-wrap {
  background: var(--uc-dark2);
  border-bottom: 1px solid rgba(255,255,255,.1);
  padding: .75rem 0;
}

.pricing-tab-btn {
  display: inline-flex;
  align-items: center;
  padding: .4rem .9rem;
  border-radius: 8px;
  color: rgba(255,255,255,.7);
  font-size: .85rem;
  font-weight: 500;
  border: 1px solid rgba(255,255,255,.15);
  transition: all .2s;
  text-decoration: none;
}

.pricing-tab-btn:hover,
.pricing-tab-btn.active {
  background: var(--uc-primary);
  color: #fff;
  border-color: var(--uc-primary);
  text-decoration: none;
}

.pricing-content {
  background: var(--uc-gray);
  min-height: 60vh;
  padding: 24px 0 60px;
}

.pricing-filters {
  background: #fff;
  border: 1px solid var(--uc-border);
  border-radius: var(--uc-radius);
  padding: 1rem 1.25rem;
  margin-bottom: 1rem;
  box-shadow: var(--uc-shadow);
}

.pricing-login-hint {
  font-size: .85rem;
  color: var(--uc-muted);
}

.pricing-login-hint a {
  color: var(--uc-primary);
  font-weight: 600;
}

.pricing-group-card {
  background: #fff;
  border: 1px solid var(--uc-border);
  border-radius: var(--uc-radius);
  overflow: hidden;
  margin-bottom: 1.25rem;
  box-shadow: var(--uc-shadow);
}

.pricing-group-header {
  background: var(--uc-dark);
  color: #fff;
  padding: .75rem 1.25rem;
  font-weight: 700;
  font-size: .93rem;
  display: flex;
  align-items: center;
}

.pricing-table-wrap {
  overflow-x: auto;
}

.pricing-table {
  margin: 0;
  font-size: .87rem;
}

.pricing-table thead th {
  background: var(--uc-gray);
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--uc-muted);
  font-weight: 700;
  padding: .6rem 1rem;
  border-bottom: 1px solid var(--uc-border);
}

.pricing-table tbody td {
  padding: .7rem 1rem;
  border-bottom: 1px solid #f5f5f8;
  vertical-align: middle;
}

.pricing-row:hover td {
  background: #f8f9ff;
}

.pricing-row.row-hot td {
  background: #fffdf4;
}

.pricing-row.row-hot:hover td {
  background: #fff8e8;
}

.col-icon {
  width: 28px;
  padding-right: 0 !important;
}

.col-time {
  width: 160px;
}

.col-price {
  width: 130px;
}

.col-action {
  width: 110px;
}

.svc-name {
  font-weight: 500;
  color: var(--uc-text);
}

.svc-type-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
  background: var(--uc-muted);
}

.svc-type-dot.type-imei {
  background: var(--uc-primary);
}

.svc-type-dot.type-server {
  background: var(--uc-secondary);
}

.svc-type-dot.type-remote {
  background: var(--uc-success);
}

.svc-type-dot.type-file {
  background: var(--uc-warning);
}

.svc-type-dot.type-tool-rent {
  background: var(--uc-danger);
}

.svc-type-dot.type-credit {
  background: #9c59d1;
}

.badge-hot {
  background: #fff3e0;
  color: #e65100;
  font-size: .72rem;
  font-weight: 700;
  border: 1px solid #ffcc80;
}

.badge-instant {
  background: #e8f5e9;
  color: #2e7d32;
  font-size: .72rem;
  font-weight: 700;
  border: 1px solid #a5d6a7;
}

.delivery-badge {
  display: inline-block;
  background: var(--uc-gray);
  border: 1px solid var(--uc-border);
  border-radius: 6px;
  padding: .15rem .55rem;
  font-size: .78rem;
  color: var(--uc-muted);
}

.price-amount {
  font-weight: 800;
  font-size: 1rem;
  color: var(--uc-primary);
}

.pricing-empty {
  text-align: center;
  padding: 80px 20px;
}

/* ── Responsive tweaks ─────────────────────────────────────────── */
@media (max-width: 768px) {
  .uc-topbar .container > div {
    flex-direction: column;
    gap: .4rem !important;
  }
}

@media (max-width: 576px) {
  .uc-section {
    padding: 50px 0;
  }

  .hero-img {
    max-height: 280px;
  }

  .hero-placeholder {
    min-height: 280px;
  }

  .uc-caption {
    bottom: 5% !important;
    padding-left: 3% !important;
  }

  .hero-title {
    font-size: 1.2rem;
  }

  .hero-buttons .btn {
    padding: .4rem .8rem;
    font-size: .85rem;
  }

  .pricing-tabs {
    overflow-x: auto;
    flex-wrap: nowrap !important;
    padding-bottom: .5rem;
  }

  .pricing-tab-btn {
    white-space: nowrap;
  }

  .col-time,
  .col-action {
    display: none;
  }
}

/* ── Small iPhone drawer adjustments ─────────────────────────── */
@media (max-width: 390px) {
  .uc-drawer.offcanvas,
  .uc-drawer.offcanvas-start {
    width: 74vw !important;
    max-width: 285px !important;
  }

  .uc-drawer-brand-text {
    max-width: 155px !important;
    font-size: 14px !important;
  }

  .uc-drawer-link,
  .uc-drawer-link span {
    font-size: 13.5px !important;
  }
}

@media (max-width: 340px) {
  .uc-drawer.offcanvas,
  .uc-drawer.offcanvas-start {
    width: 78vw !important;
    max-width: 270px !important;
  }

  .uc-drawer-link {
    height: 46px !important;
    min-height: 46px !important;
    max-height: 46px !important;
  }

  .uc-drawer-link,
  .uc-drawer-link span {
    font-size: 13px !important;
  }

  .uc-drawer-auth-btn {
    font-size: 12.5px !important;
  }
}