/* ============================================================
   Yellow Pillar — Corporate Theme (Black / Yellow / White)
   ============================================================ */

:root {
  --yp-yellow:        #FFC400;
  --yp-yellow-dark:   #E0A800;
  --yp-yellow-soft:   #FFF6D6;
  --yp-black:         #0E0E10;
  --yp-black-soft:    #1A1A1D;
  --yp-grey-900:      #212121;
  --yp-grey-700:      #4a4a4a;
  --yp-grey-500:      #8a8a8a;
  --yp-grey-200:      #ececec;
  --yp-grey-100:      #f6f6f8;
  --yp-white:         #ffffff;

  --font-head: 'Poppins', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;

  --shadow-sm: 0 2px 10px rgba(0,0,0,.04);
  --shadow-md: 0 10px 30px rgba(0,0,0,.08);
  --shadow-lg: 0 20px 50px rgba(0,0,0,.12);
}

* { box-sizing: border-box; }
html, body { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--yp-grey-900);
  background: var(--yp-white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--yp-black);
}

h1 { font-size: clamp(2rem, 4.5vw, 3.5rem); line-height: 1.15; }
h2 { font-size: clamp(1.6rem, 3vw, 2.5rem); line-height: 1.2; }
h3 { font-size: clamp(1.25rem, 2vw, 1.6rem); }

a { color: var(--yp-black); text-decoration: none; transition: color .2s; }
a:hover { color: var(--yp-yellow-dark); }

.text-muted-2 { color: var(--yp-grey-500); }
.section { padding: clamp(3.5rem, 7vw, 6rem) 0; }
.section-title { margin-bottom: 2.5rem; }
.section-title .eyebrow {
  display: inline-block; font-size: .8rem; font-weight: 700;
  letter-spacing: .15em; text-transform: uppercase;
  color: var(--yp-yellow-dark); margin-bottom: .75rem;
}
.section-title h2 { margin-bottom: .75rem; }
.section-title p { color: var(--yp-grey-700); max-width: 720px; }
.section-title.center { text-align: center; }
.section-title.center p { margin-left: auto; margin-right: auto; }

/* --------- Top Bar --------- */
.top-bar {
  background: var(--yp-black);
  color: var(--yp-white);
  padding: 8px 0;
  font-size: .875rem;
}
.top-bar a { color: var(--yp-white); }
.top-bar a:hover { color: var(--yp-yellow); }
.social-top a { margin-left: .9rem; color: var(--yp-white); }
.social-top a:hover { color: var(--yp-yellow); }

/* --------- Navbar --------- */
.yp-navbar {
  background: var(--yp-white);
  box-shadow: var(--shadow-sm);
  padding: .55rem 0;
  border-bottom: 3px solid var(--yp-yellow);
}
.yp-navbar .navbar-brand { padding: 0; margin-right: 1.5rem; }
.yp-navbar .brand-logo {
  height: 72px;
  width: auto;
  max-width: 260px;
  display: block;
  transition: transform .2s ease;
}
.yp-navbar .brand-logo:hover { transform: scale(1.03); }
@media (max-width: 991.98px) {
  .yp-navbar .brand-logo { height: 58px; max-width: 200px; }
}
@media (max-width: 575px) {
  .yp-navbar .brand-logo { height: 50px; max-width: 170px; }
}
.yp-navbar .nav-link {
  font-weight: 500;
  color: var(--yp-black) !important;
  padding: .5rem 1rem !important;
  position: relative;
}
.yp-navbar .nav-link::after {
  content: ''; position: absolute; left: 1rem; right: 1rem; bottom: 4px;
  height: 2px; background: var(--yp-yellow);
  transform: scaleX(0); transform-origin: left; transition: transform .25s ease;
}
.yp-navbar .nav-link:hover::after,
.yp-navbar .nav-link.active::after { transform: scaleX(1); }
.yp-navbar .nav-link.active { color: var(--yp-yellow-dark) !important; }
.yp-navbar .dropdown-menu {
  border: 0; box-shadow: var(--shadow-md); border-top: 3px solid var(--yp-yellow);
  border-radius: 6px; padding: .5rem 0;
}
.yp-navbar .dropdown-item { padding: .55rem 1.25rem; font-weight: 500; }
.yp-navbar .dropdown-item:hover { background: var(--yp-yellow-soft); color: var(--yp-black); }

/* --------- Buttons --------- */
.btn-yp {
  font-weight: 600; letter-spacing: .02em;
  padding: .7rem 1.6rem; border-radius: 6px;
  border: 2px solid transparent; transition: all .25s ease;
  display: inline-flex; align-items: center; gap: .4rem;
}
.btn-yp-primary {
  background: var(--yp-yellow); color: var(--yp-black) !important;
  border-color: var(--yp-yellow);
}
.btn-yp-primary:hover {
  background: var(--yp-black); color: var(--yp-yellow) !important;
  border-color: var(--yp-black); transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,.18);
}
.btn-yp-dark {
  background: var(--yp-black); color: var(--yp-yellow) !important;
  border-color: var(--yp-black);
}
.btn-yp-dark:hover {
  background: var(--yp-yellow); color: var(--yp-black) !important;
  border-color: var(--yp-yellow); transform: translateY(-2px);
}
.btn-yp-outline {
  background: transparent; color: var(--yp-black) !important;
  border-color: var(--yp-black);
}
.btn-yp-outline:hover {
  background: var(--yp-yellow); color: var(--yp-black) !important;
  border-color: var(--yp-yellow);
}
.btn-yp-outline-light {
  background: transparent; color: var(--yp-white) !important;
  border-color: var(--yp-white);
}
.btn-yp-outline-light:hover {
  background: var(--yp-yellow); color: var(--yp-black) !important;
  border-color: var(--yp-yellow);
}

/* --------- Hero --------- */
.hero {
  background:
    radial-gradient(60% 80% at 80% 20%, rgba(255,196,0,.22), transparent 70%),
    radial-gradient(50% 70% at 0% 100%, rgba(255,196,0,.10), transparent 70%),
    var(--yp-black);
  color: var(--yp-white);
  padding: clamp(4rem, 8vw, 7rem) 0;
  position: relative; overflow: hidden;
}
.hero h1 { color: var(--yp-white); }
.hero h1 .accent { color: var(--yp-yellow); }
.hero p.lead { color: rgba(255,255,255,.85); font-size: 1.15rem; }
.hero .hero-stats { margin-top: 2.5rem; }
.hero .stat strong {
  display: block; font-family: var(--font-head);
  font-size: 2.2rem; font-weight: 800; color: var(--yp-yellow);
}
.hero .stat span { color: rgba(255,255,255,.75); font-size: .9rem; }
.hero-illustration {
  position: relative; aspect-ratio: 1/1; max-width: 480px; margin-left: auto;
  background:
    radial-gradient(50% 50% at 50% 50%, rgba(255,196,0,.25), transparent 70%);
  display: flex; align-items: center; justify-content: center;
}
.hero-illustration .ill-box {
  position: absolute; inset: 12%;
  background: linear-gradient(135deg, var(--yp-yellow), #ffd54a);
  border-radius: 24px; transform: rotate(-6deg);
  box-shadow: 0 30px 60px rgba(0,0,0,.4);
}
.hero-illustration .ill-box-2 {
  position: absolute; inset: 22%;
  background: var(--yp-black); border-radius: 18px; transform: rotate(8deg);
  border: 2px solid var(--yp-yellow);
}
.hero-illustration .ill-icon {
  position: absolute; font-size: 5rem; color: var(--yp-yellow); z-index: 2;
}

/* --------- News Ticker (hero) --------- */
.hero { padding-top: 0 !important; }
.hero > .container { padding-top: clamp(2.5rem, 6vw, 5rem); }
.news-ticker {
  background: rgba(0, 0, 0, 0.55);
  border-bottom: 1px solid rgba(255, 196, 0, 0.25);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(4px);
  width: 100%;
}
.news-ticker-inner {
  display: flex;
  align-items: stretch;
  height: 44px;
}
.news-ticker-tag {
  background: var(--yp-yellow);
  color: var(--yp-black);
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  padding: 0 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}
.news-ticker-tag::after {
  content: '';
  position: absolute;
  right: -12px;
  top: 0;
  bottom: 0;
  width: 12px;
  background: var(--yp-yellow);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}
.news-ticker-track {
  flex: 1;
  overflow: hidden;
  position: relative;
  padding-left: 1.5rem;
  display: flex;
  align-items: center;
  mask-image: linear-gradient(to right, transparent, #000 4%, #000 96%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 4%, #000 96%, transparent);
}
.news-ticker-content {
  display: inline-flex;
  white-space: nowrap;
  animation: yp-ticker-scroll 40s linear infinite;
  color: #fff;
  font-size: 0.92rem;
  font-weight: 500;
}
.news-ticker-track:hover .news-ticker-content {
  animation-play-state: paused;
}
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-right: 2rem;
}
.ticker-label {
  background: var(--yp-yellow);
  color: var(--yp-black);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 0.15rem 0.55rem;
  border-radius: 3px;
  text-transform: uppercase;
}
.ticker-item a {
  color: #fff;
  text-decoration: none;
  border-bottom: 1px dashed rgba(255, 196, 0, 0.4);
  transition: color 0.2s, border-color 0.2s;
}
.ticker-item a:hover {
  color: var(--yp-yellow);
  border-bottom-color: var(--yp-yellow);
}
.ticker-sep {
  color: var(--yp-yellow);
  opacity: 0.7;
  margin-left: 0.3rem;
}
@keyframes yp-ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@media (max-width: 575px) {
  .news-ticker-inner { height: 38px; }
  .news-ticker-tag { font-size: 0.7rem; padding: 0 0.75rem; }
  .news-ticker-content { font-size: 0.82rem; animation-duration: 32s; }
  .ticker-item { margin-right: 1.5rem; }
}
@media (prefers-reduced-motion: reduce) {
  .news-ticker-content { animation: none; }
  .news-ticker-track { mask-image: none; -webkit-mask-image: none; overflow-x: auto; }
}

/* --------- Page banner (interior pages) --------- */
.page-banner {
  background: var(--yp-black); color: var(--yp-white);
  padding: 4.5rem 0 3.5rem; position: relative; overflow: hidden;
  border-bottom: 3px solid var(--yp-yellow);
}
.page-banner::after {
  content: ''; position: absolute; right: -100px; top: -100px;
  width: 300px; height: 300px; background: var(--yp-yellow);
  border-radius: 50%; opacity: .1;
}
.page-banner h1 { color: var(--yp-white); margin-bottom: .5rem; }
.page-banner .breadcrumb { color: rgba(255,255,255,.6); margin: 0; }
.page-banner .breadcrumb a { color: var(--yp-yellow); }
.page-banner .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,.5); }

/* --------- Service cards --------- */
.svc-card {
  background: var(--yp-white); border-radius: 12px;
  padding: 2rem; height: 100%;
  border: 1px solid var(--yp-grey-200);
  transition: all .3s ease;
  position: relative; overflow: hidden;
}
.svc-card::before {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 4px;
  background: var(--yp-yellow); transform: scaleX(0); transform-origin: left;
  transition: transform .3s ease;
}
.svc-card:hover {
  transform: translateY(-8px); box-shadow: var(--shadow-lg);
  border-color: var(--yp-yellow);
}
.svc-card:hover::before { transform: scaleX(1); }
.svc-card .icon-wrap {
  width: 60px; height: 60px; border-radius: 12px;
  background: var(--yp-yellow-soft); color: var(--yp-yellow-dark);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.75rem; margin-bottom: 1.25rem;
  transition: all .3s;
}
.svc-card:hover .icon-wrap {
  background: var(--yp-black); color: var(--yp-yellow);
}
.svc-card h3 { font-size: 1.25rem; margin-bottom: .65rem; }
.svc-card p { color: var(--yp-grey-700); font-size: .95rem; margin-bottom: 1rem; }
.svc-card .read-more {
  font-weight: 600; color: var(--yp-black);
  display: inline-flex; align-items: center; gap: .3rem;
}
.svc-card .read-more:hover { color: var(--yp-yellow-dark); gap: .55rem; }

/* --------- Portfolio --------- */
.portfolio-card {
  border-radius: 12px; overflow: hidden;
  background: var(--yp-white); border: 1px solid var(--yp-grey-200);
  transition: all .3s ease; height: 100%;
}
.portfolio-card:hover {
  transform: translateY(-6px); box-shadow: var(--shadow-lg);
}
.portfolio-card .img-wrap {
  aspect-ratio: 16/10; background: var(--yp-grey-100);
  overflow: hidden; position: relative;
}
.portfolio-card .img-wrap img,
.portfolio-card .img-wrap svg {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s ease;
}
.portfolio-card:hover .img-wrap img { transform: scale(1.06); }
.portfolio-card .body { padding: 1.25rem 1.5rem 1.5rem; }
.portfolio-card .industry {
  font-size: .75rem; text-transform: uppercase;
  letter-spacing: .12em; color: var(--yp-yellow-dark); font-weight: 700;
}
.portfolio-card h4 { font-size: 1.15rem; margin: .35rem 0 .5rem; }
.portfolio-card p { font-size: .9rem; color: var(--yp-grey-700); margin-bottom: 1rem; }

/* --------- Testimonials --------- */
.testimonial-card {
  background: var(--yp-white); border-radius: 12px;
  padding: 2rem; height: 100%;
  border: 1px solid var(--yp-grey-200); position: relative;
  transition: all .3s ease;
}
.testimonial-card:hover { box-shadow: var(--shadow-md); border-color: var(--yp-yellow); }
.testimonial-card .quote-mark {
  position: absolute; top: 1rem; right: 1.25rem;
  font-size: 3rem; color: var(--yp-yellow); opacity: .25;
  font-family: serif; line-height: 1;
}
.testimonial-card .stars { color: var(--yp-yellow); margin-bottom: 1rem; }
.testimonial-card .quote {
  font-style: italic; color: var(--yp-grey-900); margin-bottom: 1.25rem;
}
.testimonial-card .person {
  display: flex; align-items: center; gap: .75rem;
}
.testimonial-card .person .avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--yp-yellow); color: var(--yp-black);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
}
.testimonial-card .person small { display: block; color: var(--yp-grey-500); }

/* --------- Clients strip --------- */
.clients-strip {
  background: var(--yp-grey-100); padding: 3rem 0;
}
.client-logo {
  height: 60px; width: 100%; display: flex; align-items: center; justify-content: center;
  filter: grayscale(1); opacity: .65; transition: all .3s;
}
.client-logo:hover { filter: grayscale(0); opacity: 1; }
.client-logo img, .client-logo svg { max-height: 100%; max-width: 100%; }

/* --------- Onboarding process --------- */
.process-step {
  position: relative; padding: 2rem 1.5rem 1.5rem;
  background: var(--yp-white); border-radius: 12px;
  border: 1px solid var(--yp-grey-200);
  text-align: center; height: 100%;
  transition: all .3s ease;
}
.process-step:hover {
  background: var(--yp-black); color: var(--yp-white);
  border-color: var(--yp-black); transform: translateY(-6px);
}
.process-step:hover h4 { color: var(--yp-yellow); }
.process-step:hover p { color: rgba(255,255,255,.8); }
.process-step .step-num {
  position: absolute; top: -18px; left: 50%; transform: translateX(-50%);
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--yp-yellow); color: var(--yp-black);
  font-weight: 800; display: flex; align-items: center; justify-content: center;
  border: 4px solid var(--yp-white);
}
.process-step:hover .step-num { border-color: var(--yp-black); }
.process-step .step-icon {
  font-size: 2.25rem; color: var(--yp-yellow-dark); margin: .5rem 0 .75rem;
}
.process-step:hover .step-icon { color: var(--yp-yellow); }
.process-step h4 { font-size: 1.1rem; margin-bottom: .5rem; }
.process-step p { font-size: .9rem; color: var(--yp-grey-700); margin: 0; }

/* --------- CTA strip --------- */
.cta-strip {
  background: var(--yp-yellow);
  padding: 2.5rem 0;
  color: var(--yp-black);
}
.cta-strip h3 { margin: 0; color: var(--yp-black); font-size: 1.7rem; }
.cta-strip p { color: var(--yp-black); }
.cta-strip .btn-yp-primary {
  background: var(--yp-black); color: var(--yp-yellow) !important; border-color: var(--yp-black);
}
.cta-strip .btn-yp-primary:hover {
  background: var(--yp-white); color: var(--yp-black) !important; border-color: var(--yp-white);
}
.cta-strip .btn-yp-outline-light {
  border-color: var(--yp-black); color: var(--yp-black) !important;
}
.cta-strip .btn-yp-outline-light:hover {
  background: var(--yp-black); color: var(--yp-yellow) !important; border-color: var(--yp-black);
}

/* --------- Footer --------- */
.yp-footer {
  background: var(--yp-black); color: var(--yp-grey-200);
  padding: 4rem 0 1.5rem;
}
.yp-footer .footer-logo { height: 56px; filter: brightness(0) invert(1); }
.yp-footer .footer-title {
  color: var(--yp-yellow); font-size: 1rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em; margin-bottom: 1rem;
}
.yp-footer .footer-links, .yp-footer .footer-contact {
  list-style: none; padding: 0; margin: 0;
}
.yp-footer .footer-links li { margin-bottom: .55rem; }
.yp-footer .footer-links a { color: var(--yp-grey-200); font-size: .9rem; }
.yp-footer .footer-links a:hover { color: var(--yp-yellow); padding-left: 4px; }
.yp-footer .footer-contact li {
  display: flex; gap: .65rem; align-items: flex-start;
  margin-bottom: .65rem; font-size: .9rem;
}
.yp-footer .footer-contact i { color: var(--yp-yellow); margin-top: 4px; }
.yp-footer .footer-contact a { color: var(--yp-grey-200); }
.yp-footer .footer-contact a:hover { color: var(--yp-yellow); }
.yp-footer .footer-divider {
  border-color: rgba(255,255,255,.1); margin: 2rem 0 1rem;
}
.yp-footer .footer-locations a {
  color: var(--yp-grey-200); margin: 0 0.15rem;
  transition: color .2s;
}
.yp-footer .footer-locations a:hover { color: var(--yp-yellow); }
.yp-footer .social-icons a {
  display: inline-flex; width: 38px; height: 38px; border-radius: 50%;
  background: var(--yp-grey-900); color: var(--yp-white);
  align-items: center; justify-content: center; margin-right: .5rem;
  transition: all .25s ease;
}
.yp-footer .social-icons a:hover {
  background: var(--yp-yellow); color: var(--yp-black); transform: translateY(-3px);
}

/* --------- WhatsApp float --------- */
.whatsapp-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 1040;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; color: #fff !important;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; box-shadow: 0 10px 25px rgba(37,211,102,.45);
  transition: all .3s ease;
}
.whatsapp-float:hover { transform: scale(1.08); color: #fff !important; }
.wa-pulse {
  position: absolute; inset: 0; border-radius: 50%;
  background: #25D366; opacity: .6; animation: wa-pulse 1.8s infinite;
  z-index: -1;
}
@keyframes wa-pulse {
  0%   { transform: scale(1);    opacity: .6; }
  100% { transform: scale(1.6);  opacity: 0;  }
}

/* --------- Back to top --------- */
.back-to-top {
  position: fixed; right: 22px; bottom: 92px; z-index: 1039;
  width: 44px; height: 44px; border-radius: 50%;
  border: 0; background: var(--yp-black); color: var(--yp-yellow);
  opacity: 0; transform: translateY(20px); transition: all .3s;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; cursor: pointer; box-shadow: var(--shadow-md);
}
.back-to-top.show { opacity: 1; transform: translateY(0); }
.back-to-top:hover { background: var(--yp-yellow); color: var(--yp-black); }

/* --------- Forms --------- */
.form-control, .form-select {
  border-radius: 8px; padding: .75rem 1rem;
  border: 1.5px solid var(--yp-grey-200);
  transition: border-color .2s, box-shadow .2s;
}
.form-control:focus, .form-select:focus {
  border-color: var(--yp-yellow);
  box-shadow: 0 0 0 .2rem rgba(255,196,0,.18);
}
.form-label { font-weight: 600; color: var(--yp-grey-900); margin-bottom: .35rem; }
.required-mark { color: #e74c3c; }

/* --------- Alerts --------- */
.alert-yp-success {
  background: #e6f7ec; color: #1d6f3c; border-color: #c4e9d2;
}
.alert-yp-danger {
  background: #fde8e8; color: #b03434; border-color: #f5c7c7;
}

/* --------- Blog --------- */
.blog-card {
  background: var(--yp-white); border-radius: 12px;
  border: 1px solid var(--yp-grey-200); overflow: hidden;
  height: 100%; transition: all .3s ease;
}
.blog-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.blog-card .img-wrap {
  aspect-ratio: 16/9; background: var(--yp-grey-100); overflow: hidden;
}
.blog-card .img-wrap img, .blog-card .img-wrap svg {
  width: 100%; height: 100%; object-fit: cover; transition: transform .5s;
}
.blog-card:hover .img-wrap img { transform: scale(1.06); }
.blog-card .body { padding: 1.5rem; }
.blog-card .meta {
  font-size: .8rem; color: var(--yp-grey-500);
  text-transform: uppercase; letter-spacing: .08em;
}
.blog-card .meta .cat {
  color: var(--yp-yellow-dark); font-weight: 700;
}
.blog-card h4 { font-size: 1.15rem; margin: .5rem 0; }
.blog-card h4 a:hover { color: var(--yp-yellow-dark); }

/* --------- Single blog --------- */
.blog-content { font-size: 1.05rem; line-height: 1.75; color: var(--yp-grey-900); }
.blog-content h2, .blog-content h3 { margin-top: 2rem; }
.blog-content img { max-width: 100%; height: auto; border-radius: 8px; }
.blog-content blockquote {
  border-left: 4px solid var(--yp-yellow);
  padding: .5rem 1.25rem; color: var(--yp-grey-700);
  font-style: italic; background: var(--yp-yellow-soft); border-radius: 0 6px 6px 0;
}

/* --------- CEO Message section --------- */
.ceo-section {
  background:
    radial-gradient(40% 60% at 90% 0%, rgba(255, 196, 0, 0.10), transparent 70%),
    radial-gradient(40% 60% at 0% 100%, rgba(255, 196, 0, 0.06), transparent 70%),
    #fafafa;
}
.ceo-photo-wrap {
  position: relative;
  display: inline-block;
  max-width: 320px;
}
.ceo-photo-wrap img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 50%;
  border: 5px solid var(--yp-yellow);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
  position: relative;
  z-index: 2;
}
.ceo-photo-accent {
  position: absolute;
  inset: -16px -16px auto auto;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--yp-black);
  z-index: 1;
  opacity: 0.07;
}
.ceo-message-card {
  background: var(--yp-white);
  border-radius: 16px;
  padding: 2.5rem 2.5rem 2rem;
  box-shadow: var(--shadow-md);
  border-left: 5px solid var(--yp-yellow);
  position: relative;
}
.ceo-quote-icon {
  position: absolute;
  top: 0.6rem;
  right: 1.25rem;
  font-size: 5rem;
  color: var(--yp-yellow);
  opacity: 0.18;
  line-height: 1;
}
.ceo-message-text p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--yp-grey-900);
  margin-bottom: 1.1rem;
}
.ceo-message-text p:last-child { margin-bottom: 0; }
.ceo-signature {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px dashed var(--yp-grey-200);
}
.ceo-signature .divider-yellow {
  display: block;
  margin-bottom: 0.6rem;
}
.ceo-signature strong {
  font-family: var(--font-head);
  color: var(--yp-black);
}
@media (max-width: 767px) {
  .ceo-message-card { padding: 1.75rem 1.5rem; }
  .ceo-quote-icon { font-size: 3.5rem; }
}

/* --------- Join Our Team / Vacancies --------- */
.join-team-section { background: var(--yp-grey-100); }
.vacancy-card {
  background: var(--yp-white);
  border-radius: 12px;
  padding: 1.75rem;
  height: 100%;
  border: 1px solid var(--yp-grey-200);
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}
.vacancy-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--yp-yellow);
}
.vacancy-header h3 {
  font-size: 1.3rem;
  margin: 0 0 0.5rem;
}
.vacancy-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  font-size: 0.85rem;
  color: var(--yp-grey-700);
  margin-bottom: 0.75rem;
}
.vacancy-meta i { color: var(--yp-yellow-dark); margin-right: 0.2rem; }
.vacancy-meta .badge-type {
  background: var(--yp-yellow);
  color: var(--yp-black);
  padding: 0.18rem 0.55rem;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.vacancy-salary {
  background: var(--yp-yellow-soft);
  color: var(--yp-grey-900);
  padding: 0.5rem 0.8rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-block;
  margin-bottom: 1rem;
}
.vacancy-salary i { color: var(--yp-yellow-dark); }
.vacancy-desc {
  color: var(--yp-grey-700);
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 1rem;
  flex: 1;
}
.vacancy-details {
  background: var(--yp-grey-100);
  border-radius: 8px;
  padding: 0.6rem 1rem;
  margin-bottom: 1rem;
  border: 1px solid var(--yp-grey-200);
}
.vacancy-details summary {
  font-weight: 600;
  cursor: pointer;
  color: var(--yp-black);
  list-style: none;
  position: relative;
  padding-right: 1.5rem;
}
.vacancy-details summary::-webkit-details-marker { display: none; }
.vacancy-details summary::after {
  content: '\F282'; /* bi-chevron-down */
  font-family: 'bootstrap-icons';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.2s;
  color: var(--yp-yellow-dark);
}
.vacancy-details[open] summary::after { transform: translateY(-50%) rotate(180deg); }
.vacancy-details ul {
  margin: 0.8rem 0 0;
  padding-left: 1.25rem;
}
.vacancy-details li {
  font-size: 0.9rem;
  color: var(--yp-grey-700);
  margin-bottom: 0.35rem;
}
.vacancy-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-top: auto;
}
.empty-jobs {
  background: var(--yp-white);
  border: 2px dashed var(--yp-yellow);
  border-radius: 16px;
  padding: 3rem 1.5rem;
  max-width: 560px;
  margin: 0 auto;
}

/* ============================================================
   SERVICE DETAIL PAGE (redesigned)
   ============================================================ */
.svc-hero {
  background:
    radial-gradient(60% 80% at 85% 20%, rgba(255,196,0,.22), transparent 70%),
    radial-gradient(40% 60% at 0% 100%, rgba(255,196,0,.10), transparent 70%),
    var(--yp-black);
  color: var(--yp-white);
  padding: clamp(3rem, 6vw, 5rem) 0 clamp(3rem, 6vw, 5rem);
  position: relative;
  overflow: hidden;
}
.svc-hero h1 { color: var(--yp-white); font-size: clamp(2.2rem, 4.5vw, 3.4rem); }
.svc-hero p.lead { color: rgba(255,255,255,.85); font-size: 1.15rem; max-width: 560px; }
.svc-hero-crumb {
  font-size: .85rem; color: rgba(255,255,255,.6);
  margin-bottom: 1.5rem;
}
.svc-hero-crumb a { color: var(--yp-yellow); text-decoration: none; }
.svc-hero-crumb a:hover { color: #fff; }
.svc-hero-crumb span { color: rgba(255,255,255,.85); }
.svc-hero-pills { display: flex; flex-wrap: wrap; gap: .55rem; margin-top: 1.25rem; }
.svc-hero-pills .pill {
  display: inline-flex; align-items: center; gap: .35rem;
  background: rgba(255,196,0,.12);
  border: 1px solid rgba(255,196,0,.35);
  color: var(--yp-yellow);
  padding: .4rem .85rem;
  border-radius: 30px;
  font-size: .82rem;
  font-weight: 600;
}
.svc-hero-pills .pill i { color: var(--yp-yellow); }

/* Hero floating visual */
.svc-hero-visual {
  position: relative;
  aspect-ratio: 1/1;
  max-width: 460px;
  margin-left: auto;
}
.svc-hero-visual .vis-card {
  position: absolute;
  background: var(--yp-white);
  color: var(--yp-black);
  border-radius: 14px;
  padding: 1rem 1.25rem;
  box-shadow: 0 20px 50px rgba(0,0,0,.4);
  font-family: var(--font-head);
  animation: vis-float 5s ease-in-out infinite;
}
.svc-hero-visual .vis-card small { display:block; font-size:.7rem; color:var(--yp-grey-500); text-transform:uppercase; letter-spacing:.1em; }
.svc-hero-visual .vis-card strong { display:block; font-size: 1.1rem; color: var(--yp-black); }
.svc-hero-visual .vis-card-1 {
  inset: 4% auto auto 18%;
  background: var(--yp-yellow);
  color: var(--yp-black);
  font-size: 3.5rem;
  width: 130px; height: 130px;
  display:flex; align-items:center; justify-content:center;
  border-radius: 24px;
  animation-delay: 0s;
}
.svc-hero-visual .vis-card-2 { inset: 22% 8% auto auto; animation-delay: .8s; }
.svc-hero-visual .vis-card-3 { inset: auto 22% 14% auto; animation-delay: 1.6s; }
.svc-hero-visual .vis-card-4 { inset: auto auto 0% 6%; animation-delay: 2.4s; }
@keyframes vis-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* Stats band */
.svc-stats {
  background: var(--yp-white);
  border-bottom: 1px solid var(--yp-grey-200);
  padding: 2.2rem 0;
}
.svc-stats .stat-num {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--yp-black);
  line-height: 1;
}
.svc-stats .stat-label {
  font-size: .85rem;
  color: var(--yp-grey-500);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-top: .35rem;
}

/* VA Offer banner */
.svc-offer-section { padding: 2.5rem 0; background: var(--yp-grey-100); }
.offer-banner {
  background: linear-gradient(135deg, var(--yp-black) 0%, #1A1A1D 100%);
  border: 2px solid var(--yp-yellow);
  border-radius: 18px;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}
.offer-banner::before {
  content: ''; position: absolute; inset: -50% -50% auto auto;
  width: 280px; height: 280px;
  background: var(--yp-yellow); opacity: .08;
  border-radius: 50%;
}
.offer-banner .badge-offer {
  display: inline-block;
  background: var(--yp-yellow); color: var(--yp-black);
  padding: .35rem 1rem; border-radius: 30px;
  font-size: .75rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: .12em;
}
.offer-banner h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
.offer-banner h2 .strike { text-decoration: line-through; opacity: .6; font-weight: 500; }
.offer-price-tag {
  display: inline-block; background: var(--yp-yellow); color: var(--yp-black);
  padding: 1.5rem 2.5rem; border-radius: 14px; position: relative;
  box-shadow: 0 15px 40px rgba(255,196,0,.25);
}
.offer-price-tag .strike {
  display: block; text-decoration: line-through;
  font-size: 1.1rem; opacity: .55;
}
.offer-price-tag strong {
  display: block; font-family: var(--font-head);
  font-size: 2.8rem; line-height: 1; margin: .25rem 0;
}
.offer-price-tag small { font-size: .85rem; opacity: .7; }

/* Features grid v2 */
.svc-features .feature-card {
  background: var(--yp-white);
  border: 1px solid var(--yp-grey-200);
  border-radius: 14px;
  padding: 2rem 1.75rem;
  height: 100%;
  transition: all .3s ease;
  position: relative;
}
.svc-features .feature-card:hover {
  transform: translateY(-6px);
  border-color: var(--yp-yellow);
  box-shadow: var(--shadow-lg);
}
.svc-features .feature-icon {
  width: 56px; height: 56px;
  border-radius: 12px;
  background: var(--yp-yellow-soft);
  color: var(--yp-yellow-dark);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.7rem;
  margin-bottom: 1rem;
  transition: all .3s;
}
.svc-features .feature-card:hover .feature-icon {
  background: var(--yp-black);
  color: var(--yp-yellow);
}
.svc-features .feature-card h4 { font-size: 1.15rem; margin: 0 0 .5rem; }
.svc-features .feature-card p { color: var(--yp-grey-700); font-size: .92rem; margin: 0; }

/* Process — horizontal timeline */
.svc-process-section .process-line {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.svc-process-section .process-line::before {
  content: '';
  position: absolute;
  top: 22px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: repeating-linear-gradient(to right, var(--yp-yellow) 0 6px, transparent 6px 12px);
  z-index: 0;
}
.svc-process-section .process-line-step {
  position: relative;
  text-align: center;
  z-index: 1;
}
.svc-process-section .step-circle {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--yp-yellow);
  color: var(--yp-black);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-family: var(--font-head);
  margin: 0 auto 1rem;
  border: 4px solid var(--yp-black);
}
.svc-process-section .step-icon {
  font-size: 2rem;
  color: var(--yp-yellow);
  margin-bottom: .5rem;
}
.svc-process-section .process-line-step h5 { color: #fff; font-size: 1rem; margin-bottom: .35rem; }
.svc-process-section .process-line-step p { color: rgba(255,255,255,.7); font-size: .82rem; margin: 0; line-height: 1.5; }
@media (max-width: 991px) {
  .svc-process-section .process-line { grid-template-columns: repeat(2, 1fr); }
  .svc-process-section .process-line::before { display: none; }
}
@media (max-width: 575px) {
  .svc-process-section .process-line { grid-template-columns: 1fr; }
}

/* Pricing tiers */
.pricing-card {
  background: var(--yp-white);
  border: 2px solid var(--yp-grey-200);
  border-radius: 16px;
  padding: 2rem 1.75rem;
  height: 100%;
  display: flex; flex-direction: column;
  transition: all .3s ease;
  position: relative;
}
.pricing-card:hover {
  transform: translateY(-6px);
  border-color: var(--yp-yellow);
  box-shadow: var(--shadow-lg);
}
.pricing-card.popular {
  border-color: var(--yp-yellow);
  background: linear-gradient(180deg, var(--yp-yellow-soft) 0%, var(--yp-white) 30%);
  transform: scale(1.03);
}
.pricing-card.popular:hover { transform: scale(1.03) translateY(-6px); }
.pricing-card .popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--yp-black);
  color: var(--yp-yellow);
  padding: .35rem 1rem;
  border-radius: 20px;
  font-size: .72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
}
.pricing-card .tier-name {
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--yp-grey-700);
  margin-bottom: 1rem;
}
.pricing-card .tier-price {
  margin-bottom: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px dashed var(--yp-grey-200);
}
.pricing-card .tier-price strong {
  display: block;
  font-family: var(--font-head);
  font-size: 2.2rem;
  color: var(--yp-black);
  line-height: 1;
}
.pricing-card .tier-price small {
  display: block;
  color: var(--yp-grey-500);
  font-size: .85rem;
  margin-top: .25rem;
}
.pricing-card .tier-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 1;
}
.pricing-card .tier-bullets li {
  display: flex;
  align-items: flex-start;
  gap: .5rem;
  font-size: .92rem;
  padding: .45rem 0;
  color: var(--yp-grey-900);
}
.pricing-card .tier-bullets li i {
  color: var(--yp-yellow-dark);
  font-weight: 700;
  margin-top: 3px;
  flex-shrink: 0;
}

/* Service overview (SEO long-form) */
.svc-overview p { color: var(--yp-grey-900); font-size: 1.02rem; line-height: 1.8; margin-bottom: 1.1rem; }
.svc-overview p.lead { font-size: 1.15rem; color: var(--yp-grey-700); font-weight: 500; margin-bottom: 1.5rem; }
.svc-overview h2 { font-size: clamp(1.5rem, 2.5vw, 2rem); }

/* Service variations cards */
.svc-variations .variation-card {
  background: var(--yp-white);
  border-radius: 12px;
  border: 1px solid var(--yp-grey-200);
  padding: 1.75rem;
  height: 100%;
  transition: all .3s;
  position: relative;
  overflow: hidden;
}
.svc-variations .variation-card::after {
  content: '';
  position: absolute;
  inset: auto -20% -20% auto;
  width: 120px; height: 120px;
  background: var(--yp-yellow-soft);
  border-radius: 50%;
  transition: transform .4s;
}
.svc-variations .variation-card:hover {
  transform: translateY(-4px);
  border-color: var(--yp-yellow);
  box-shadow: var(--shadow-md);
}
.svc-variations .variation-card:hover::after { transform: scale(1.5); }
.svc-variations .variation-card > * { position: relative; z-index: 1; }
.svc-variations .variation-card i {
  font-size: 2rem;
  color: var(--yp-yellow-dark);
  margin-bottom: .75rem;
}
.svc-variations .variation-card h4 { font-size: 1.05rem; margin-bottom: .5rem; }
.svc-variations .variation-card p { font-size: .9rem; color: var(--yp-grey-700); margin: 0; }

/* Why-it-matters block */
.svc-why h2 { font-size: clamp(1.5rem, 2.5vw, 2rem); }
.svc-why p { color: var(--yp-grey-900); font-size: 1rem; line-height: 1.75; margin-bottom: 1rem; }

/* Cities we serve (internal linking) */
.svc-cities { background: var(--yp-white); }
.svc-cities h2 { font-size: clamp(1.5rem, 2.5vw, 2rem); }
.city-link-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: .25rem;
  background: var(--yp-yellow-soft);
  border: 1px solid var(--yp-yellow);
  border-radius: 12px;
  padding: 1.25rem;
  text-decoration: none;
  color: var(--yp-black);
  transition: all .3s;
  height: 100%;
}
.city-link-card:hover {
  background: var(--yp-black);
  border-color: var(--yp-black);
  color: #fff;
  transform: translateY(-3px);
}
.city-link-card i.bi-geo-alt-fill {
  font-size: 1.4rem;
  color: var(--yp-yellow-dark);
  transition: color .3s;
}
.city-link-card:hover i.bi-geo-alt-fill { color: var(--yp-yellow); }
.city-link-card strong {
  font-family: var(--font-head);
  font-size: 1.1rem;
  display: block;
}
.city-link-card small {
  font-size: .8rem;
  opacity: .75;
  display: inline-flex;
  align-items: center;
  gap: .2rem;
}

/* Related services — redesigned "Better Together" section */
.svc-related-section {
  background:
    radial-gradient(50% 70% at 20% 0%, rgba(255,196,0,.10), transparent 70%),
    radial-gradient(50% 70% at 80% 100%, rgba(255,196,0,.06), transparent 70%),
    var(--yp-black);
  color: var(--yp-white);
  position: relative;
  overflow: hidden;
}
.svc-related-section .section-title h2 { color: var(--yp-white); font-size: clamp(1.6rem, 3vw, 2.4rem); }
.svc-related-section .section-title p { color: rgba(255,255,255,.7); max-width: 720px; }

.combo-card {
  position: relative;
  background: linear-gradient(180deg, rgba(255,255,255,.04) 0%, rgba(255,255,255,.02) 100%);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
  padding: 2rem 1.75rem 1.75rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all .35s ease;
  backdrop-filter: blur(6px);
}
.combo-card:hover {
  transform: translateY(-8px);
  border-color: var(--yp-yellow);
  background: linear-gradient(180deg, rgba(255,196,0,.06) 0%, rgba(255,196,0,.02) 100%);
  box-shadow: 0 30px 60px rgba(0,0,0,.4);
}
.combo-card .combo-number {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  font-family: var(--font-head);
  font-size: 2.4rem;
  font-weight: 800;
  color: rgba(255,196,0,.25);
  line-height: 1;
  transition: color .3s;
}
.combo-card:hover .combo-number { color: var(--yp-yellow); }

.combo-pairing {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: stretch;
  gap: .75rem;
  margin-bottom: 1.5rem;
}
.combo-current, .combo-related {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 10px;
  padding: 1rem .85rem;
  text-align: center;
  transition: all .3s;
}
.combo-card:hover .combo-current { background: rgba(255,255,255,.06); }
.combo-card:hover .combo-related {
  background: var(--yp-yellow);
  border-color: var(--yp-yellow);
}
.combo-current i, .combo-related i {
  font-size: 1.5rem;
  display: block;
  margin-bottom: .35rem;
  color: var(--yp-yellow);
  transition: color .3s;
}
.combo-card:hover .combo-related i { color: var(--yp-black); }
.combo-current small, .combo-related small {
  display: block;
  font-size: .65rem;
  color: rgba(255,255,255,.5);
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: .15rem;
}
.combo-card:hover .combo-related small { color: rgba(14,14,16,.55); }
.combo-current strong, .combo-related strong {
  display: block;
  font-family: var(--font-head);
  font-size: .85rem;
  color: #fff;
  line-height: 1.2;
}
.combo-card:hover .combo-related strong { color: var(--yp-black); }

.combo-plus {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--yp-yellow);
  font-weight: 800;
}

.combo-benefit {
  background: rgba(255,196,0,.08);
  border-left: 3px solid var(--yp-yellow);
  border-radius: 0 8px 8px 0;
  color: var(--yp-yellow);
  padding: .75rem 1rem;
  font-size: .92rem;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 1rem;
  display: flex;
  gap: .55rem;
  align-items: flex-start;
}
.combo-benefit i { flex-shrink: 0; margin-top: 3px; }

.combo-desc {
  color: rgba(255,255,255,.65);
  font-size: .9rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
  flex: 1;
}

.combo-actions { margin-top: auto; }
.combo-actions .btn-yp-primary {
  font-size: .9rem;
  padding: .65rem 1rem;
}

@media (max-width: 575px) {
  .combo-pairing { grid-template-columns: 1fr; }
  .combo-plus { transform: rotate(90deg); padding: .25rem 0; }
}

/* Industries chips */
.industry-chip {
  background: var(--yp-white);
  border: 1px solid var(--yp-grey-200);
  border-radius: 10px;
  padding: 1.5rem 1rem;
  text-align: center;
  transition: all .3s ease;
  height: 100%;
}
.industry-chip:hover {
  background: var(--yp-black);
  border-color: var(--yp-black);
  transform: translateY(-3px);
}
.industry-chip i {
  font-size: 2rem;
  color: var(--yp-yellow-dark);
  display: block;
  margin-bottom: .65rem;
  transition: color .3s;
}
.industry-chip:hover i { color: var(--yp-yellow); }
.industry-chip span {
  font-size: .85rem;
  font-weight: 600;
  color: var(--yp-black);
  display: block;
  transition: color .3s;
}
.industry-chip:hover span { color: #fff; }

/* Final CTA / Quote form */
.svc-final-cta {
  background:
    radial-gradient(50% 70% at 80% 0%, rgba(255,196,0,.18), transparent 70%),
    var(--yp-black);
  padding: clamp(3rem, 6vw, 5rem) 0;
  color: var(--yp-white);
}
.svc-final-cta h2 { color: var(--yp-white); }
.quote-card {
  background: var(--yp-white);
  border-radius: 18px;
  padding: 2rem;
  box-shadow: 0 30px 60px rgba(0,0,0,.4);
  border-top: 5px solid var(--yp-yellow);
}
.quote-card h4 { font-family: var(--font-head); color: var(--yp-black); }

/* --------- Location Landing Pages --------- */
.location-banner {
  background:
    radial-gradient(50% 70% at 20% 0%, rgba(255,196,0,.18), transparent 70%),
    var(--yp-black);
}
.local-fact-card {
  background: var(--yp-yellow-soft);
  border: 1px solid var(--yp-yellow);
  border-radius: 12px;
  padding: 1.5rem;
}
.local-fact-card ul li {
  display: flex; gap: 0.6rem; align-items: flex-start;
  margin-bottom: 0.85rem; font-size: 0.92rem;
}
.local-fact-card ul li i {
  color: var(--yp-yellow-dark); font-size: 1.15rem;
  margin-top: 2px; flex-shrink: 0;
}
.yp-faq .accordion-item {
  border: 1px solid var(--yp-grey-200) !important;
  border-radius: 8px !important;
  margin-bottom: 0.75rem;
  background: var(--yp-white);
}
.yp-faq .accordion-button {
  font-weight: 600;
  color: var(--yp-black);
  border-radius: 8px !important;
  padding: 1rem 1.25rem;
  background: var(--yp-white);
}
.yp-faq .accordion-button:not(.collapsed) {
  background: var(--yp-yellow-soft);
  color: var(--yp-black);
  box-shadow: none;
}
.yp-faq .accordion-button:focus { box-shadow: 0 0 0 .2rem rgba(255,196,0,.18); border-color: var(--yp-yellow); }
.yp-faq .accordion-button::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23E0A800' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
}
.yp-faq .accordion-body { color: var(--yp-grey-700); padding: 0 1.25rem 1rem; line-height: 1.7; }

/* --------- Pricing offer (VA page) --------- */
.offer-card {
  background: var(--yp-black); color: var(--yp-white);
  border-radius: 16px; padding: 2.5rem; text-align: center;
  border: 3px solid var(--yp-yellow);
  position: relative;
}
.offer-card .badge-offer {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--yp-yellow); color: var(--yp-black);
  padding: .3rem 1rem; border-radius: 20px;
  font-weight: 700; font-size: .8rem; text-transform: uppercase; letter-spacing: .1em;
}
.offer-card .price-strike {
  text-decoration: line-through; color: rgba(255,255,255,.5);
  font-size: 1.25rem; margin-right: .5rem;
}
.offer-card .price {
  font-family: var(--font-head); font-size: 3rem; color: var(--yp-yellow);
  font-weight: 800; line-height: 1;
}
.offer-card .price-unit { color: rgba(255,255,255,.7); font-size: 1rem; }

/* --------- Payment page --------- */
.bank-card {
  background: var(--yp-white); border: 2px dashed var(--yp-yellow);
  border-radius: 12px; padding: 2rem;
}
.bank-card .row-item {
  display: flex; justify-content: space-between; padding: .6rem 0;
  border-bottom: 1px dashed var(--yp-grey-200);
}
.bank-card .row-item:last-child { border-bottom: 0; }
.bank-card .label { color: var(--yp-grey-700); font-weight: 500; }
.bank-card .value { color: var(--yp-black); font-weight: 700; }

/* --------- SEO score widget --------- */
.seo-score {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--yp-black); color: var(--yp-yellow);
  padding: .4rem .75rem; border-radius: 6px;
  font-size: .8rem; font-weight: 600;
}
.seo-score .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--yp-yellow); }
.seo-score.good { background: #1d6f3c; color: #fff; }
.seo-score.good .dot { background: #6ee7a3; }
.seo-score.warn { background: #b87800; color: #fff; }
.seo-score.bad  { background: #b03434; color: #fff; }

/* --------- Utility --------- */
.bg-yp-yellow { background: var(--yp-yellow) !important; }
.bg-yp-black  { background: var(--yp-black) !important;  color: var(--yp-white); }
.text-yp-yellow { color: var(--yp-yellow) !important; }
.text-yp-black  { color: var(--yp-black)  !important; }
.divider-yellow { display: inline-block; width: 56px; height: 4px; background: var(--yp-yellow); border-radius: 2px; }

/* --------- Responsive tweaks --------- */
@media (max-width: 991px) {
  .yp-navbar .nav-link::after { display: none; }
  .yp-navbar .nav-link.active { background: var(--yp-yellow-soft); border-radius: 4px; }
  .hero-illustration { display: none; }
}
@media (max-width: 575px) {
  .whatsapp-float { width: 50px; height: 50px; font-size: 1.5rem; right: 16px; bottom: 16px; }
  .back-to-top { right: 16px; bottom: 76px; }
  .cta-strip h3 { font-size: 1.3rem; }
  .section { padding: 3rem 0; }
}

/* --------- Admin panel styles --------- */
.admin-wrap { display: flex; min-height: 100vh; background: var(--yp-grey-100); }
.admin-sidebar {
  width: 240px; background: var(--yp-black); color: var(--yp-white);
  padding: 1.5rem 0; min-height: 100vh; flex-shrink: 0;
  position: sticky; top: 0;
}
.admin-sidebar .brand {
  padding: 0 1.5rem 1.5rem; display: flex; align-items: center; gap: .6rem;
  border-bottom: 1px solid rgba(255,255,255,.1); margin-bottom: 1rem;
}
.admin-sidebar .brand img { height: 36px; filter: brightness(0) invert(1); }
.admin-sidebar .brand strong { color: var(--yp-yellow); font-family: var(--font-head); }
.admin-sidebar .nav-link {
  color: rgba(255,255,255,.7); padding: .65rem 1.5rem;
  display: flex; align-items: center; gap: .6rem;
  border-left: 3px solid transparent;
}
.admin-sidebar .nav-link:hover {
  color: var(--yp-yellow); background: rgba(255,196,0,.05);
}
.admin-sidebar .nav-link.active {
  color: var(--yp-yellow); background: rgba(255,196,0,.08);
  border-left-color: var(--yp-yellow);
}
.admin-main { flex: 1; padding: 0; }
.admin-topbar {
  background: var(--yp-white); padding: 1rem 1.5rem;
  display: flex; justify-content: space-between; align-items: center;
  box-shadow: var(--shadow-sm);
}
.admin-content { padding: 1.5rem; }
.admin-card {
  background: var(--yp-white); border-radius: 10px; box-shadow: var(--shadow-sm);
  padding: 1.5rem; margin-bottom: 1.5rem;
}
.admin-stat {
  background: var(--yp-white); border-radius: 10px; padding: 1.5rem;
  border-left: 4px solid var(--yp-yellow);
  box-shadow: var(--shadow-sm);
}
.admin-stat .num {
  font-size: 2rem; font-weight: 800; color: var(--yp-black);
  font-family: var(--font-head);
}
.admin-stat .label { color: var(--yp-grey-500); font-size: .9rem; }
.table-admin th { background: var(--yp-black); color: var(--yp-yellow); font-weight: 600; }
.table-admin tbody tr:hover { background: var(--yp-yellow-soft); }
.admin-login-wrap {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  background:
    radial-gradient(60% 80% at 50% 0%, rgba(255,196,0,.18), transparent 70%),
    var(--yp-black);
  padding: 2rem 1rem;
}
.admin-login-card {
  background: var(--yp-white); border-radius: 14px;
  padding: 2.5rem; width: 100%; max-width: 420px;
  box-shadow: var(--shadow-lg); border-top: 5px solid var(--yp-yellow);
}
.admin-login-card .logo { height: 60px; display: block; margin: 0 auto 1.5rem; }

@media (max-width: 767px) {
  .admin-sidebar { width: 70px; }
  .admin-sidebar .brand strong, .admin-sidebar .nav-link span { display: none; }
  .admin-sidebar .nav-link { justify-content: center; padding: .65rem 0; }
}
