/* RoofCoat Leads additions on top of the Gencyo template (style.css).
   Only covers pieces the template doesn't have; everything else is template CSS. */

/* ---------- Header / navigation ---------- */
/* One fixed header for every page. The template scrolled the header away and slid in
   a cloned "sticky" header after 100px, so the menu vanished and jumped on scroll. */
.sticky-header { display: none !important; }
.main-header.header-1 { position: fixed; top: 0; left: 0; right: 0; z-index: 9990; }
/* Template header: 1680px-wide container with no side padding plus a full-width 1px rule
   under it. Inset it to line up with the hero copy (6.2vw) and drop the rule. */
.main-header.header-1 { border-bottom: 0; }
.main-header.header-1 .container { max-width: none; padding-left: 6.2vw; padding-right: 6.2vw; }
@media (max-width: 1199.98px) { .main-header.header-1 .container { padding-left: 24px; padding-right: 24px; } }
@media (max-width: 575.98px) { .main-header.header-1 .container { padding-left: 16px; padding-right: 16px; } }
/* Blur lives on a pseudo-element: backdrop-filter on the header itself would trap the
   position:fixed mobile drawer inside the header's box. */
.main-header.header-1::before { content: ""; position: absolute; inset: 0; z-index: -1; background: rgba(10,10,10,0); border-bottom: 1px solid rgba(255,255,255,0); transition: background .35s ease, border-color .35s ease; pointer-events: none; }
.main-header.header-1.fixed-header::before { background: rgba(10,10,10,.86); border-bottom-color: rgba(255,255,255,.08); -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px); }
.main-header.header-1 .main-box.pl-main-box { transition: padding .35s ease; padding: 18px 0; }
.main-header.header-1.fixed-header .main-box.pl-main-box { padding: 10px 0; }
.main-header.header-1 .logo img { transition: max-height .35s ease; }
.main-header.header-1.fixed-header .logo img { max-height: 52px; }
.header-1 .main-menu .navigation > li > a { position: relative; }
.header-1 .main-menu .navigation > li.current > a { color: var(--theme-color1); }
/* Template custom cursor: hidden until a real mouse moves (it sat as a dot in the corner). */
.mouseCursor { opacity: 0; transition: opacity .3s; }
html.pl-has-mouse .mouseCursor { opacity: 1; }
@media (hover: none) { .mouseCursor { display: none !important; } }
/* One header layout on every page: logo left, menu centred, CTA right.
   (The template left-aligned the menu on the home page and centred it elsewhere.) */
.header-1 .main-box.pl-main-box { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 30px; }
.pl-main-box .logo { justify-self: start; }
.pl-main-box .main-menu { justify-self: center; }
.pl-main-box .outer-box { justify-self: end; display: flex; align-items: center; gap: 22px; }
.pl-main-box .pl-header-cta {
  border: 0; cursor: pointer; white-space: nowrap; border-radius: 50px; padding: 12px 26px;
  background: var(--theme-color1); color: #09090b; font-size: 16px; font-weight: 500; line-height: 1; transition: background .3s, color .3s;
}
.pl-main-box .pl-header-cta:hover { background: #fff; color: #09090b; }
.header-1 .main-menu .navigation > li { margin: 0 18px; }
@media (max-width: 1199.98px) {
  .header-1 .main-menu .navigation > li { margin: 0 11px; }
  .pl-main-box .pl-header-cta { padding: 11px 20px; font-size: 15px; }
}
@media (max-width: 1023px) {
  .header-1 .main-box.pl-main-box { grid-template-columns: auto auto; justify-content: space-between; padding: 12px 0; }
  .pl-main-box .main-menu { display: none; }
  .pl-main-box .outer-box { gap: 16px; }
  .pl-main-box .pl-header-cta { display: inline-block !important; padding: 9px 16px; font-size: 14px; }
}
@media (max-width: 420px) {
  .pl-main-box .pl-header-cta { display: none !important; } /* the fixed bottom bar carries the CTA on phones */
}
/* The main menu is visible from 1024px, so the drawer toggle is only needed below that. */
@media (min-width: 1024px) {
  .main-header .header-lower .mobile-nav-toggler,
  .sticky-header .pl-sticky-toggler { display: none !important; }
}
.sticky-header .nav-outer { display: flex; align-items: center; gap: 36px; }
.pl-sticky-cta {
  border: 0; cursor: pointer; white-space: nowrap; border-radius: 50px; padding: 9px 22px;
  background: var(--theme-color1); color: #09090b; font-size: 15px; font-weight: 500; transition: background .3s;
}
.pl-sticky-cta:hover { background: #fff; color: #09090b; }
.sticky-header .logo img { max-height: 46px; }
.sticky-header .pl-sticky-toggler { width: 26px; height: 11px; position: relative; cursor: pointer; }
.sticky-header .pl-sticky-toggler span { position: absolute; left: 0; width: 100%; height: 2px; background: #fff; }
.sticky-header .pl-sticky-toggler span:nth-child(1) { top: 0; }
.sticky-header .pl-sticky-toggler span:nth-child(2) { top: 5px; width: 70%; left: auto; right: 0; }
.sticky-header .pl-sticky-toggler span:nth-child(3) { top: 10px; }
.mobile-menu .pl-drawer-cta { padding: 24px 25px 6px; }
.mobile-menu .pl-drawer-cta .btn-style-one { width: 100%; max-width: 250px; justify-content: center; white-space: nowrap; font-size: 15px; padding: 13px 56px 13px 22px; }
body.mobile-menu-visible .pl-mobile-cta { display: none !important; }
@media (max-width: 1023px) {
  .sticky-header .main-menu { display: none; }
  .sticky-header .pl-sticky-cta { padding: 8px 16px; font-size: 14px; }
  .sticky-header .nav-outer { gap: 18px; }
}
.main-header .logo img,
.sticky-header .logo img,
.mobile-menu .nav-logo img { max-height: 64px; width: auto; }
button.btn-style-one { border: 0; cursor: pointer; }

/* ---------- Hero (Nexella "style_two" banner, rebuilt in RoofCoat Leads colours) ---------- */
@keyframes plh-spin { to { transform: rotate(360deg); } }
@keyframes plh-rise { from { opacity: 0; transform: translate3d(0, 40px, 0); } to { opacity: 1; transform: none; } }
/* The hero is the artwork's own shape (1916x821) so the whole image shows, uncropped.
   Copy sits in the empty dark space on the left; nothing is laid over the person. */
.plh { position: relative; overflow: hidden; display: flex; align-items: center; aspect-ratio: 1916 / 821; min-height: 600px; padding-top: 96px; background: #0b0b0b url(../images/rc/hero-bg.jpg) center right / cover no-repeat; }
.plh::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 90px; background: linear-gradient(0deg, #09090b 0%, rgba(13,13,13,0) 100%); pointer-events: none; }
/* Copy is placed relative to the artwork (which scales with the viewport), not a centred container. */
.plh__container.container { position: relative; z-index: 2; width: 100%; max-width: none; padding-left: 6.2vw; padding-right: 0; }
.plh__content { max-width: 37vw; }
.plh__title { margin: 0 0 26px; color: #fff; font-size: clamp(38px, 3.55vw, 76px); line-height: 1.08; font-weight: 700; text-transform: uppercase; letter-spacing: -.01em; animation: plh-rise .9s .15s both; }
.plh__title span { color: var(--theme-color1); font-weight: 300; }
.plh__icon-bx { display: flex; align-items: center; gap: 20px; margin-bottom: 34px; animation: plh-rise 1s .45s both; }
.plh__icon-bx p { margin: 0; max-width: 430px; color: #fff; font-size: clamp(15px, 1.05vw, 19px); line-height: 1.7; }
.plh__badge { position: relative; flex: 0 0 110px; width: 110px; height: 110px; }
.plh__badge-ring { width: 100%; height: 100%; animation: plh-spin 20s linear infinite; }
.plh__badge-ring text { fill: #fff; font-size: 10.5px; font-weight: 600; }
.plh__badge-core { position: absolute; inset: 28px; border-radius: 50%; display: grid; place-items: center; background: var(--theme-color1); color: #09090b; font-size: 20px; }
.plh-btn { margin-left: 60px; animation: plh-rise 1s .7s both; }

/* Nexella floating elements, placed on the artwork clear of the face */
@keyframes plh-bob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
@keyframes plh-bob2 { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-24px); } }
.plh__campaign { position: absolute; left: 45.5%; top: 25%; z-index: 3; animation: plh-bob2 3s linear infinite; }
.plh__campaign span { position: relative; display: inline-block; padding: 9px 29px; border-radius: 40px; background: var(--theme-color1); color: #09090b; font-size: 16px; font-weight: 500; line-height: 26px; transform: rotate(-24deg); box-shadow: 0 14px 30px rgba(234, 179, 8,.35); }
.plh__campaign span::before { content: "\f245"; font-family: "Font Awesome 6 Pro"; font-weight: 900; position: absolute; right: -20px; top: -18px; color: #fff; font-size: 22px; transform: rotate(17deg); }
.plh__marketing { position: absolute; right: 5.5%; bottom: 16%; z-index: 3; display: flex; align-items: center; gap: 20px; width: 300px; padding: 25px; border-radius: 16px; background: rgba(255,255,255,.1); -webkit-backdrop-filter: blur(30px); backdrop-filter: blur(30px); animation: plh-bob 2s linear infinite; }
.plh__marketing::before { content: ""; position: absolute; inset: 0; padding: 2px; border-radius: 16px; background: linear-gradient(97deg, rgba(255,255,255,.65), rgba(0,0,0,.31)); -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0); -webkit-mask-composite: xor; mask: linear-gradient(#fff 0 0) content-box exclude, linear-gradient(#fff 0 0); pointer-events: none; }
.plh__marketing-icon { flex: 0 0 70px; height: 70px; border-radius: 10px; display: grid; place-items: center; background: var(--theme-color1); color: #09090b; font-size: 28px; }
.plh__marketing h6 { margin: 0; color: #fff; font-size: 20px; font-weight: 500; line-height: 28px; }
.plh__mobile-art { display: none; }

/* Nexella three-part pill button */
.plh-btn { position: relative; display: inline-flex; align-items: center; gap: 1px; border: 0; padding: 0; background: none; cursor: pointer; }
.plh-btn__label { display: inline-flex; align-items: center; height: 56px; padding: 0 38px; border-radius: 100px; background: var(--theme-color1); color: #09090b; font-size: 16px; font-weight: 500; white-space: nowrap; transition: transform .4s, background-color .4s, color .4s; }
.plh-btn__arrow { width: 56px; height: 56px; border-radius: 50%; display: inline-grid; place-items: center; background: var(--theme-color1); color: #09090b; transition: scale .4s, background-color .4s, color .4s; }
.plh-btn__arrow i { transform: rotate(-45deg); }
.plh-btn__arrow--left { position: absolute; left: 0; scale: 0; }
.plh-btn:hover .plh-btn__arrow--left { scale: 1; background: #fff; color: #09090b; }
.plh-btn:hover .plh-btn__label { transform: translateX(56px); background: #fff; color: #09090b; }
.plh-btn:hover .plh-btn__arrow--right { scale: 0; }

@media (max-width: 1399.98px) {
  .plh__icon-bx p { font-size: 16px; }
  .plh__badge { flex-basis: 92px; width: 92px; height: 92px; }
  .plh__badge-core { inset: 23px; font-size: 17px; }
  .plh__marketing { width: 260px; padding: 18px; gap: 14px; }
  .plh__marketing-icon { flex-basis: 56px; height: 56px; font-size: 22px; }
  .plh__marketing h6 { font-size: 17px; line-height: 24px; }
}
@media (max-width: 1199.98px) {
  .plh-btn { margin-left: 0; }
  .plh__campaign, .plh__marketing { display: none; }
  .plh__content { max-width: 40vw; }
}
/* Phones/tablets: copy first on dark, then the artwork shown whole underneath */
@media (max-width: 991.98px) {
  .plh { aspect-ratio: auto; min-height: 0; display: block; padding: 130px 0 0; background: #0b0b0b; }
  .plh::after { display: none; }
  .plh__container.container { max-width: 720px; padding-left: 15px; padding-right: 15px; }
  .plh__content { max-width: 620px; }
  .plh__title { font-size: 48px; }
  .plh__mobile-art { display: block; width: 100%; height: auto; margin-top: 44px; -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 22%, #000 80%, transparent 100%); mask-image: linear-gradient(180deg, transparent 0%, #000 22%, #000 80%, transparent 100%); }
}
@media (max-width: 575.98px) {
  .plh { padding-top: 116px; }
  .plh__container.container { padding-left: 12px; padding-right: 12px; }
  .plh__title { font-size: 34px; line-height: 1.12; margin-bottom: 20px; }
  .plh__badge { display: none; }
  .plh__icon-bx { margin-bottom: 26px; }
  .plh__icon-bx p { font-size: 16px; line-height: 1.7; }
  .plh-btn__label { height: 50px; padding: 0 26px; font-size: 15px; }
  .plh-btn__arrow { width: 50px; height: 50px; }
  .plh-btn:hover .plh-btn__label { transform: translateX(50px); }
  .plh__mobile-art { margin-top: 30px; width: 170%; max-width: none; margin-left: -62%; }
}

/* ---------- old hero helpers still used elsewhere ---------- */
.pl-hero { background-position: center; }
.pl-hero-buttons { display: flex; flex-wrap: wrap; align-items: center; gap: 18px 28px; margin-top: 30px; }
.pl-hero .hero-content .content .btn-style-one { margin-top: 0; }
.pl-link-btn { color: #fff; font-weight: 500; display: inline-flex; align-items: center; gap: 12px; }
.pl-link-btn i {
  width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center;
  border: 1px solid rgba(255, 255, 255, .25); color: var(--theme-color1); font-size: 14px; transition: .3s;
}
.pl-link-btn:hover { color: var(--theme-color1); }
.pl-link-btn:hover i { background: var(--theme-color1); color: #09090b; border-color: var(--theme-color1); }

/* Letter avatars in the template's round client-image slots (no client headshots exist). */
.pl-initials span[class^="icon-"],
.pl-avatar {
  display: inline-grid; place-items: center; border-radius: 50%;
  background: #1d1d1d; color: var(--theme-color1); font-weight: 700; font-size: 15px;
  border: 2px solid #09090b;
}
.hero-2 .pl-initials span[class^="icon-"] { width: 40px; height: 40px; }
.work-process-inner-2 .pl-initials span[class^="icon-"] { width: 49px; height: 49px; }
.testimonial-block-two .author-info .thumb.pl-avatar { width: 60px; height: 60px; font-size: 22px; }

/* ---------- Stats ---------- */
.pl-stats {
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); margin-top: 50px;
  border-top: 1px solid var(--border-color2-rgba);
}
.pl-stat { padding: 34px 20px 0; text-align: center; border-right: 1px solid var(--border-color2-rgba); }
.pl-stat:last-child { border-right: 0; }
.pl-stat__value { display: block; color: #fff; font-size: 56px; font-weight: 600; line-height: 1; }
.pl-stat__label { display: block; margin-top: 12px; font-size: 14px; text-transform: uppercase; letter-spacing: .1em; }

/* ---------- Trusted by ---------- */
.pl-trusted__board {
  max-width: 1080px; margin: 0 auto; padding: 30px; border-radius: 24px;
  background: #f4f1ec; border: 1px solid var(--border-color2-rgba);
}
.pl-trusted__board img { width: 100%; height: auto; display: block; }
.pl-trusted__text { max-width: 640px; margin: 30px auto 0; text-align: center; font-size: 18px; }

/* ---------- Featured YouTube video ---------- */
.pl-youtube { position: relative; margin-top: 50px; aspect-ratio: 16 / 9; border-radius: 40px; overflow: hidden; background: #000; }
.pl-youtube img, .pl-youtube iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; object-fit: cover; }
.pl-youtube::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(13,13,13,.75) 0%, rgba(13,13,13,0) 45%); pointer-events: none; }
.pl-youtube__play { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); z-index: 2; border: 0; background: none; cursor: pointer; transition: transform .3s; }
.pl-youtube__play:hover { transform: translate(-50%, -50%) scale(1.08); }
.pl-youtube__caption { position: absolute; left: 40px; bottom: 34px; z-index: 2; color: #fff; font-size: 22px; font-weight: 500; line-height: 1.3; }
.pl-youtube__caption span { display: block; color: var(--theme-color1); font-size: 13px; text-transform: uppercase; letter-spacing: .14em; }
.pl-youtube.is-playing::after, .pl-youtube.is-playing .pl-youtube__play, .pl-youtube.is-playing .pl-youtube__caption, .pl-youtube.is-playing img { display: none; }
.about-items-2 .sub-title { display: inline-flex; margin-bottom: 20px; }

/* ---------- Client video cards ---------- */
.pl-reels__intro { max-width: 560px; margin: 16px auto 0; }
.pl-reel { height: 100%; display: flex; flex-direction: column; border-radius: 30px; overflow: hidden; background: #18181b; border: 1px solid var(--border-color2-rgba); transition: border-color .3s, transform .3s; }
.pl-reel:hover { border-color: rgba(var(--theme-color1-rgb), .6); transform: translateY(-4px); }
.pl-reel__media { position: relative; aspect-ratio: 9 / 16; max-height: 520px; background: #000; overflow: hidden; }
.pl-reel__media img, .pl-reel__media video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.pl-reel__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,0) 40%); pointer-events: none; }
.pl-reel__play { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); z-index: 2; width: 76px; height: 76px; border-radius: 50%; border: 0; cursor: pointer; background: var(--theme-color1); color: #09090b; font-size: 20px; box-shadow: 0 0 0 10px rgba(var(--theme-color1-rgb), .25); transition: transform .3s; }
.pl-reel__play:hover { transform: translate(-50%, -50%) scale(1.08); }
.pl-reel__label { position: absolute; left: 16px; top: 16px; z-index: 2; padding: 5px 12px; border-radius: 30px; background: rgba(0,0,0,.6); color: #fff; font-size: 11px; text-transform: uppercase; letter-spacing: .12em; }
.pl-reel__media.is-playing::after, .pl-reel__media.is-playing .pl-reel__play, .pl-reel__media.is-playing .pl-reel__label, .pl-reel__media.is-playing img { display: none; }
.pl-reel__body { flex: 1; display: flex; flex-direction: column; justify-content: space-between; gap: 20px; padding: 24px; }
.pl-reel__body p { margin: 0; color: #e8e8e8; font-size: 17px; line-height: 1.55; }
.pl-reel__author { display: flex; align-items: center; gap: 12px; padding-top: 18px; border-top: 1px solid var(--border-color2-rgba); }
.pl-reel__author .pl-avatar { width: 42px; height: 42px; flex: 0 0 42px; }
.pl-reel__author strong { display: block; color: #fff; font-weight: 500; line-height: 1.3; }
.pl-reel__author span { display: block; font-size: 13px; line-height: 1.4; }

/* ---------- Facebook ad mockups ---------- */
.pl-fbad { height: 100%; border-radius: 22px; overflow: hidden; background: #fff; color: #050505; font-family: Helvetica, Arial, sans-serif; box-shadow: 0 30px 60px rgba(0,0,0,.45); transition: transform .35s; }
.pl-fbad:hover { transform: translateY(-6px) rotate(-.4deg); }
.pl-fbad__head { display: flex; align-items: center; gap: 10px; padding: 14px 16px 8px; }
.pl-fbad__avatar { width: 40px; height: 40px; border-radius: 50%; background: #09090b; display: grid; place-items: center; overflow: hidden; }
.pl-fbad__avatar img { width: 30px; height: 30px; object-fit: contain; }
.pl-fbad__head strong { display: block; font-size: 15px; line-height: 1.2; color: #050505; }
.pl-fbad__head span { display: block; font-size: 12px; line-height: 1.4; color: #65676b; }
.pl-fbad__more { margin-left: auto; color: #65676b; }
.pl-fbad__text { margin: 0; padding: 0 16px 12px; font-size: 15px; line-height: 1.4; color: #050505; }
.pl-fbad__media { aspect-ratio: 1.91 / 1; overflow: hidden; }
.pl-fbad__media img { width: 100%; height: 100%; object-fit: cover; }
.pl-fbad__link { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 12px 16px; background: #f0f2f5; }
.pl-fbad__link span { display: block; font-size: 12px; color: #65676b; line-height: 1.3; }
.pl-fbad__link strong { display: block; font-size: 16px; color: #050505; line-height: 1.3; }
.pl-fbad__link .pl-fbad__cta { flex: 0 0 auto; padding: 8px 14px; border-radius: 6px; background: #e4e6eb; color: #050505; font-size: 14px; font-weight: 600; }
.pl-fbad__stats { display: flex; justify-content: space-between; padding: 10px 16px; font-size: 14px; color: #65676b; }
.pl-fbad__stats i { color: #1877f2; }
.pl-fbad__actions { display: flex; justify-content: space-around; padding: 8px 12px 12px; border-top: 1px solid #e4e6eb; margin: 0 12px; font-size: 14px; font-weight: 600; color: #65676b; }
.pl-ads__note { margin: 40px auto 0; text-align: center; font-size: 14px; }

/* ---------- Work process ---------- */
.pl-phase-stat { margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--border-color2-rgba); font-size: 14px; text-transform: uppercase; letter-spacing: .08em; }
.pl-phase-stat strong { color: var(--theme-color1); font-size: 26px; margin-right: 8px; letter-spacing: 0; }

/* ---------- Feature section ---------- */
.pl-them { list-style: none; padding: 0; margin: 30px 0 34px; }
.pl-them li { display: flex; gap: 16px; padding: 14px 0; border-bottom: 1px solid var(--border-color2-rgba); }
.pl-them li i { color: #555; margin-top: 7px; }
.pl-them strong { display: block; color: #bdbdbd; font-weight: 500; }
.pl-them span { font-size: 14px; }
.pl-feature-photo img { width: 100%; height: 394px; object-fit: cover; border-radius: 20px; }

/* ---------- Pricing ---------- */
.pl-plan-desc { margin: -6px 0 22px; line-height: 1.6; }
.pricing-block .pricing-btn { border: 0; cursor: pointer; width: 100%; }
.pricing-block .sub-title .pl-limited { display: inline-block; margin-left: 8px; padding: 2px 10px; border-radius: 20px; background: #c0392b; color: #fff; font-size: 11px; letter-spacing: .08em; text-transform: uppercase; vertical-align: middle; }
.pricing-block .price.pl-price-custom { font-size: 60px; }
.pl-guarantee {
  display: flex; align-items: center; gap: 30px; max-width: 960px; margin: 60px auto 0; padding: 34px 40px;
  border-radius: 24px; background: #18181b; border: 1px solid var(--border-color2-rgba); border-top: 4px solid var(--theme-color1);
}
.pl-guarantee__icon { flex: 0 0 80px; height: 80px; border-radius: 50%; display: grid; place-items: center; background: rgba(var(--theme-color1-rgb), .12); color: var(--theme-color1); font-size: 34px; }
.pl-guarantee h4 { margin-bottom: 8px; }
.pl-guarantee p { margin: 0; line-height: 1.7; }
.pl-guarantee strong { color: #fff; }

/* ---------- Testimonials ---------- */
.pl-metric { display: inline-flex; align-items: baseline; gap: 10px; margin-bottom: 18px; padding: 6px 16px; border-radius: 30px; background: rgba(var(--theme-color1-rgb), .12); color: #bbb; font-size: 13px; text-transform: uppercase; letter-spacing: .08em; }
.pl-metric strong { color: var(--theme-color1); font-size: 16px; letter-spacing: 0; }

/* ---------- Territory card (award slot) ---------- */
.pl-territory-card { height: 100%; padding: 34px 30px; border-radius: 24px; background: #18181b; border: 1px solid var(--border-color2-rgba); }
.pl-territory-card__num { display: block; color: var(--theme-color1); font-size: 80px; font-weight: 600; line-height: 1; }
.pl-territory-card__label { display: block; margin: 8px 0 16px; color: #fff; text-transform: uppercase; letter-spacing: .1em; font-size: 14px; }
.pl-territory-card p { line-height: 1.6; }
.pl-territory-card ul { list-style: none; padding: 0; margin: 0 0 26px; }
.pl-territory-card li { position: relative; padding: 6px 0 6px 18px; font-size: 14px; color: #bdbdbd; }
.pl-territory-card li::before { content: ""; position: absolute; left: 0; top: 16px; width: 6px; height: 6px; background: var(--theme-color1); }
.award-block-two .list-item .right-text .text { white-space: nowrap; }

/* ---------- ROI calculator ---------- */
.pl-roi__intro { max-width: 560px; margin: 16px auto 0; }
.pl-roi__grid { display: grid; grid-template-columns: 7fr 5fr; gap: 16px; }
.pl-roi__input, .pl-roi__tile, .pl-roi__result { background: #18181b; border: 1px solid var(--border-color2-rgba); border-radius: 24px; }
.pl-roi__input { padding: 40px; }
.pl-roi__kicker, .pl-roi__result small, .pl-roi__consts small { display: block; color: var(--theme-color1); font-size: 13px; text-transform: uppercase; letter-spacing: .12em; }
.pl-roi__budget { display: flex; align-items: baseline; gap: 14px; margin: 8px 0 26px; }
.pl-roi__budget output { color: #fff; font-size: 80px; font-weight: 600; line-height: 1; }
.pl-roi__budget small { text-transform: uppercase; letter-spacing: .1em; }
.pl-roi__grid input[type="range"] {
  --pl-fill: 10%;
  -webkit-appearance: none; appearance: none; width: 100%; height: 6px; border-radius: 6px; outline: none;
  background: linear-gradient(90deg, var(--theme-color1) var(--pl-fill), #2a2a2a var(--pl-fill));
}
.pl-roi__grid input[type="range"]::-webkit-slider-thumb { -webkit-appearance: none; width: 26px; height: 26px; border-radius: 50%; background: #fff; border: 6px solid var(--theme-color1); cursor: pointer; }
.pl-roi__grid input[type="range"]::-moz-range-thumb { width: 16px; height: 16px; border-radius: 50%; background: #fff; border: 6px solid var(--theme-color1); cursor: pointer; }
.pl-roi__scale { display: flex; justify-content: space-between; margin-top: 12px; font-size: 12px; text-transform: uppercase; letter-spacing: .1em; }
.pl-roi__consts { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 30px; padding-top: 24px; border-top: 1px solid var(--border-color2-rgba); color: #fff; }
.pl-roi__tiles { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.pl-roi__tile { padding: 28px; display: flex; flex-direction: column; justify-content: flex-end; }
.pl-roi__tile strong { color: #fff; font-size: 44px; font-weight: 600; line-height: 1; }
.pl-roi__tile span { margin-top: 10px; font-size: 13px; text-transform: uppercase; letter-spacing: .1em; }
.pl-roi__tile--hot { background: var(--theme-color1); border-color: var(--theme-color1); }
.pl-roi__tile--hot span { color: rgba(255, 255, 255, .85); }
.pl-roi__result { grid-column: 1 / -1; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 24px; padding: 34px 40px; }
.pl-roi__result strong { display: block; color: #fff; font-size: 56px; font-weight: 600; line-height: 1.1; }
.pl-roi__result .pl-roi__profit { color: #3ecf6e; }
.pl-roi__note { max-width: 760px; margin: 30px auto 0; text-align: center; font-size: 13px; line-height: 1.7; }

/* ---------- Services page ---------- */
.pl-tier .pl-tier__sub { display: block; color: var(--theme-color1); font-size: 13px; text-transform: uppercase; letter-spacing: .12em; margin-bottom: 6px; }
.pl-tier__list { list-style: none; padding: 0; margin: 14px 0 22px; }
.pl-tier__list li { display: flex; gap: 10px; padding: 5px 0; line-height: 1.5; font-size: 15px; }
.pl-tier__list i { color: var(--theme-color1); margin-top: 4px; }
.service-block-one button.arrow-link { background: none; border: 0; padding: 0; cursor: pointer; }
.pl-channel { height: 100%; padding: 30px; border-radius: 24px; background: #18181b; border: 1px solid var(--border-color2-rgba); }
.pl-channel__photo img { width: 100%; height: 300px; object-fit: cover; border-radius: 16px; margin-bottom: 26px; }
.pl-channel__method { color: var(--theme-color1); font-size: 13px; text-transform: uppercase; letter-spacing: .12em; }
.pl-channel h3 { margin: 6px 0 12px; }
.pl-channel ul { list-style: none; padding: 0; margin: 18px 0 0; }
.pl-channel li { display: flex; gap: 10px; padding: 5px 0; color: #ccc; }
.pl-channel li i { color: var(--theme-color1); margin-top: 6px; }
.pl-balance-note { max-width: 820px; margin: 50px auto 0; text-align: center; font-size: 20px; line-height: 1.6; }
.pl-balance-note strong { color: #fff; }

/* ---------- Contact page ---------- */
.pl-calendar { border-radius: 24px; overflow: hidden; background: #fff; border: 1px solid var(--border-color2-rgba); }
.pl-calendar iframe { width: 100%; min-height: 720px; border: 0; display: block; }
.pl-agenda-num { color: var(--theme-color1); font-weight: 700; font-size: 18px; }
.pl-contact-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 30px; }
.pl-contact-stats div { padding: 22px 12px; text-align: center; border-radius: 18px; background: #18181b; border: 1px solid var(--border-color2-rgba); }
.pl-contact-stats strong { display: block; color: #fff; font-size: 30px; line-height: 1; }
.pl-contact-stats span { display: block; margin-top: 8px; font-size: 12px; text-transform: uppercase; letter-spacing: .1em; }
.pl-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.pl-badges span { padding: 8px 16px; border-radius: 30px; border: 1px solid var(--border-color2-rgba); color: #ccc; font-size: 14px; }
.pl-badges i { color: var(--theme-color1); margin-right: 6px; }
.pl-jotform__card { padding: 12px; border-radius: 24px; background: #fff; }
/* Contact switch: calendar or form in one card */
.pl-switch { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 6px; margin-bottom: 18px; padding: 6px; border-radius: 60px; background: #18181b; border: 1px solid var(--border-color2-rgba); }
.pl-switch__btn { position: relative; z-index: 1; display: inline-flex; align-items: center; justify-content: center; gap: 10px; height: 52px; border: 0; border-radius: 50px; background: transparent; color: #bdbdbd; font-size: 16px; font-weight: 500; cursor: pointer; transition: color .3s; white-space: nowrap; }
.pl-switch__btn i { font-size: 15px; }
.pl-switch__btn.is-active { color: #fff; }
.pl-switch__btn:not(.is-active):hover { color: #fff; }
.pl-switch__btn:focus-visible { outline: 2px solid var(--theme-color1) !important; outline-offset: 2px; }
.pl-switch__thumb { position: absolute; top: 6px; bottom: 6px; left: 6px; width: calc(50% - 9px); border-radius: 50px; background: var(--theme-color1); box-shadow: 0 8px 24px rgba(var(--theme-color1-rgb), .35); transition: transform .35s cubic-bezier(.4,0,.2,1); }
.pl-switch[data-active="form"] .pl-switch__thumb { transform: translateX(calc(100% + 6px)); }
.pl-switch__panel[hidden] { display: none !important; }
@media (max-width: 575.98px) {
  .pl-switch__btn { height: 46px; font-size: 14px; gap: 7px; }
  .pl-switch__btn i { display: none; }
}
.pl-404 .title { margin-bottom: 14px; }

/* ---------- Footer ---------- */
.pl-footer .footer-vec { display: none !important; }
.pl-footer .footer-lets-talk { gap: 40px; }
.pl-footer-cta__copy { max-width: 760px; }
.pl-footer-cta__kicker { display: inline-block; white-space: nowrap; margin-bottom: 14px; padding: 6px 16px; border-radius: 30px; background: rgba(0,0,0,.25); color: #fff; font-size: 13px; text-transform: uppercase; letter-spacing: .12em; }
.pl-footer .footer-lets-talk .title { margin: 0 0 12px; line-height: 1.05; }
.pl-footer .footer-lets-talk p { margin: 0; color: rgba(255,255,255,.92); font-size: 18px; line-height: 1.55; }
.pl-footer .footer-lets-talk .circle-btn { flex: 0 0 auto; border: 0; cursor: pointer; background: #09090b; line-height: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; transition: transform .3s; }
.pl-footer .footer-lets-talk .circle-btn:hover { transform: scale(1.05); }
.pl-footer .footer-lets-talk .circle-btn img { width: 44px; }
.pl-footer-cta__label { color: #fff; font-size: 15px; font-weight: 500; }

.pl-footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.35fr; gap: 50px; padding: 80px 0 60px; }
.pl-footer__logo img { max-height: 92px; width: auto; }
.pl-footer__brand p { margin: 24px 0 22px; color: #bdbdbd; font-size: 16px; line-height: 1.7; max-width: 420px; }
.pl-footer__trust { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.pl-footer__trust li { color: #fff; font-size: 15px; line-height: 1.4; }
.pl-footer__trust i { width: 22px; color: var(--theme-color1); }
.pl-footer__title { margin: 8px 0 22px; color: var(--theme-color1); font-size: 20px; font-weight: 500; }
.pl-footer__links { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.pl-footer__links a { color: #d6d6d6; font-size: 16px; line-height: 1.4; transition: color .25s, padding .25s; }
.pl-footer__links a:hover { color: var(--theme-color1); padding-left: 6px; }
.pl-footer__card { align-self: start; padding: 30px; border-radius: 24px; background: #18181b; border: 1px solid var(--border-color2-rgba); }
.pl-footer__card-icon { width: 54px; height: 54px; border-radius: 50%; display: grid; place-items: center; background: rgba(var(--theme-color1-rgb), .14); color: var(--theme-color1); font-size: 22px; }
.pl-footer__card h4 { margin: 18px 0 6px; font-size: 22px; line-height: 1.25; }
.pl-footer__card p { margin: 0 0 20px; color: #bdbdbd; line-height: 1.5; }
.pl-footer__card .btn-style-one { width: 100%; justify-content: center; }
.pl-footer__social { display: inline-flex; align-items: center; gap: 10px; margin-top: 18px; color: #d6d6d6; font-size: 15px; }
.pl-footer__social i { width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center; background: #1f1f1f; color: #fff; transition: background .25s; }
.pl-footer__social:hover { color: #fff; }
.pl-footer__social:hover i { background: var(--theme-color1); }
.pl-footer__bottom { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 26px 0 30px; border-top: 1px solid var(--border-color2-rgba); }
.pl-footer__bottom p { margin: 0; color: #9a9a9a; font-size: 15px; }
.pl-footer__bottom-links { display: flex; align-items: center; gap: 24px; }
.pl-footer__bottom-links a { color: #bdbdbd; font-size: 15px; }
.pl-footer__bottom-links a:hover { color: var(--theme-color1); }
.pl-footer__top { width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--border-color2-rgba); background: transparent; color: #fff; cursor: pointer; transition: background .25s; }
.pl-footer__top:hover { background: var(--theme-color1); border-color: var(--theme-color1); }

@media (max-width: 1199.98px) {
  .pl-footer__grid { grid-template-columns: 1fr 1fr; gap: 44px 40px; }
}
@media (max-width: 991.98px) {
  .pl-footer .footer-lets-talk .circle-btn { width: 150px; height: 150px; }
  .pl-footer-cta__copy { margin: 0 auto; }
}
@media (max-width: 767.98px) {
  .pl-footer .foorer-area { padding-left: 0 !important; padding-right: 0 !important; }
  .pl-footer .footer-lets-talk { padding: 34px 22px; border-radius: 0 0 28px 28px; gap: 24px; }
  .pl-footer .footer-lets-talk p { font-size: 16px; }
  .pl-footer-cta__kicker { font-size: 11px; padding: 5px 12px; letter-spacing: .08em; }
  .pl-footer .footer-lets-talk .circle-btn { width: 120px; height: 120px; gap: 8px; }
  .pl-footer .footer-lets-talk .circle-btn img { width: 32px; }
  .pl-footer-cta__label { font-size: 14px; }
  .pl-footer__grid { grid-template-columns: 1fr 1fr; gap: 36px 20px; padding: 50px 0 40px; }
  .pl-footer__brand, .pl-footer__card { grid-column: 1 / -1; }
  .pl-footer__logo img { max-height: 76px; }
  .pl-footer__card { padding: 24px 20px; }
  .pl-footer__title { margin: 0 0 16px; font-size: 18px; }
  .pl-footer__links { gap: 10px; }
  .pl-footer__bottom { flex-direction: column-reverse; text-align: center; padding: 22px 0 26px; }
  .pl-footer__bottom-links { gap: 20px; }
}
/* ---------- Booking modal ---------- */
html.pl-modal-open, html.pl-modal-open body { overflow: hidden; }
.pl-modal { position: fixed; inset: 0; z-index: 100000; display: flex; align-items: center; justify-content: center; padding: 16px; }
.pl-modal[hidden] { display: none; }
.pl-modal__backdrop { position: absolute; inset: 0; background: rgba(0, 0, 0, .8); opacity: 0; transition: opacity .25s; }
.pl-modal__panel {
  position: relative; width: 100%; max-width: 920px; max-height: 94vh; display: flex; flex-direction: column;
  background: #18181b; border: 1px solid var(--border-color2-rgba); border-radius: 24px; overflow: hidden;
  transform: translateY(20px); opacity: 0; transition: transform .25s, opacity .25s;
}
.pl-modal.is-open .pl-modal__backdrop { opacity: 1; }
.pl-modal.is-open .pl-modal__panel { transform: none; opacity: 1; }
.pl-modal__head { display: flex; justify-content: space-between; gap: 20px; padding: 24px 28px; border-bottom: 1px solid var(--border-color2-rgba); }
.pl-modal__head h3 { margin: 2px 0 4px; font-size: 26px; }
.pl-modal__head p { margin: 0; line-height: 1.5; }
.pl-modal__kicker { color: var(--theme-color1); font-size: 12px; text-transform: uppercase; letter-spacing: .14em; }
.pl-modal__close { flex: 0 0 46px; height: 46px; border-radius: 50%; border: 1px solid var(--border-color2-rgba); background: transparent; color: #fff; cursor: pointer; }
.pl-modal__close:hover { background: var(--theme-color1); border-color: var(--theme-color1); }
.pl-modal__body { position: relative; flex: 1; overflow: auto; background: #fff; }
.pl-modal__body iframe { width: 100%; height: clamp(520px, 72vh, 760px); border: 0; display: block; }
.pl-modal__loading { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px; background: #18181b; color: #bbb; font-size: 13px; text-transform: uppercase; letter-spacing: .14em; }
.pl-modal__loading span { width: 34px; height: 34px; border-radius: 50%; border: 3px solid rgba(255, 255, 255, .15); border-top-color: var(--theme-color1); animation: pl-spin 0.8s linear infinite; }
.pl-modal.is-loaded .pl-modal__loading { display: none; }
@keyframes pl-spin { to { transform: rotate(360deg); } }

/* ---------- Mobile booking bar ---------- */
.pl-mobile-cta { display: none; }

@media (max-width: 1199.98px) {
  .pl-roi__budget output { font-size: 60px; }
}
@media (max-width: 991.98px) {
  .pl-stats { grid-template-columns: repeat(2, 1fr); }
  .pl-stat:nth-child(2) { border-right: 0; }
  .pl-stat { padding-bottom: 20px; }
  .pl-roi__grid { grid-template-columns: 1fr; }
  body { padding-bottom: 64px; }
  .pl-mobile-cta {
    display: flex; align-items: center; justify-content: center; gap: 10px;
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 9999; height: 64px; border: 0;
    background: var(--theme-color1); color: #09090b; font-size: 17px; font-weight: 600; cursor: pointer;
    box-shadow: 0 -6px 20px rgba(0, 0, 0, .35);
  }
  #back-top { bottom: 80px; }
}
@media (max-width: 767.98px) {
  .pl-stat__value { font-size: 40px; }
  .pl-guarantee { flex-direction: column; text-align: center; padding: 28px 22px; }
  .pl-roi__input, .pl-roi__result { padding: 26px 22px; }
  .pl-roi__budget output { font-size: 46px; }
  .pl-roi__tile strong, .pl-roi__result strong { font-size: 34px; }
  .pl-contact-stats strong { font-size: 24px; }
  .pl-calendar iframe { min-height: 640px; }
  .pl-trusted__board { padding: 14px; border-radius: 16px; }
  .award-block-two .list-item .right-text .text { white-space: normal; }
}

/* ---------- Mobile polish ---------- */
.btn-style-one { white-space: nowrap; }
.swiper.testimonial-slider-2, .swiper.testimonial-slider-5 { overflow: hidden; }
@media (max-width: 1199.98px) {
  /* Template offsets this copy under a photo that isn't shown at this size. */
  .feature-box-style3 .content .title { margin-left: 0; max-width: none; text-align: left; padding-bottom: 40px; }
  .feature-box-style3 .content .text { margin-left: 0; text-align: left; }
}
@media (max-width: 767.98px) {
  .pl-youtube { margin-top: 34px; border-radius: 20px; }
  .pl-youtube__caption { display: none; }
  .pl-youtube__play svg { width: 68px; height: 48px; }

  /* Client videos: swipeable row instead of four full-height cards */
  .pl-reels .row { flex-wrap: nowrap; overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; margin-right: -12px; padding-bottom: 12px; scrollbar-width: none; }
  .pl-reels .row::-webkit-scrollbar { display: none; }
  .pl-reels .row > [class*="col-"] { flex: 0 0 80%; max-width: 80%; scroll-snap-align: start; }
  .pl-reel:hover { transform: none; }
  .pl-reel__body { padding: 18px; }
  .pl-reel__body p { font-size: 15px; }
  .pl-reels__swipe { display: block; }

  .testimonial-block-two .inner-box .text { font-size: 17px; line-height: 1.6; }
  .how-it-client-wrapper .clieng-btn .btn-style-one,
  .feature-button .btn-style-one { padding-right: 56px; }
  .pl-territory-card__num { font-size: 64px; }
}
.pl-reels__swipe { display: none; margin-top: 14px; text-align: center; font-size: 13px; text-transform: uppercase; letter-spacing: .12em; }
.pl-reels__swipe i { color: var(--theme-color1); margin-left: 6px; }
/* Footer banner: keep copy readable on the light end of the orange artwork */
.pl-footer .footer-lets-talk { position: relative; isolation: isolate; }
.pl-footer .footer-lets-talk::before { content: ""; position: absolute; inset: 0; z-index: -1; border-radius: inherit; background: linear-gradient(90deg, rgba(120,35,0,.55) 0%, rgba(120,35,0,.2) 60%, rgba(0,0,0,0) 100%); }
@media (max-width: 991.98px) {
  .pl-footer .footer-lets-talk::before { background: linear-gradient(180deg, rgba(110,30,0,.6) 0%, rgba(110,30,0,.35) 100%); }
}
@media (max-width: 767.98px) {
  /* Territory list: one compact row per market */
  .award-block-two .list-item { padding: 16px 0; }
  .award-block-two .list-item .content-box { display: flex; flex-direction: column; align-items: stretch; justify-content: flex-start; gap: 4px; text-align: left; }
  .award-block-two .list-item .content-box .title-box { display: flex; align-items: baseline; justify-content: flex-start; gap: 14px; margin: 0; text-align: left; }
  .award-block-two .list-item .content-box .title-box .year { min-width: 30px; margin: 0; color: var(--theme-color1); }
  .award-block-two .list-item .content-box .title-box .title { margin: 0; font-size: 18px; }
  .award-block-two .list-item .content-box .right-text { display: flex; justify-content: flex-start; align-items: center; gap: 12px; margin: 0; padding-left: 44px; }
  .award-block-two .list-item .content-box .right-text .text { font-size: 14px; }
  .award-block-two .list-item .content-box .right-text .arrow-icon { display: none; }
  .pricing-block .pricing-flower { display: none; }
}

/* ================= Scroll performance ================= */
/* The template fixes the page background to the viewport, which makes the browser repaint
   it on every scroll frame. */
body { background-attachment: scroll; }
/* A live blur of everything scrolling under the fixed header is one of the most expensive
   things to composite per frame; a near-opaque header looks the same over dark sections. */
.main-header.header-1.fixed-header::before { background: rgba(10,10,10,.95); -webkit-backdrop-filter: none; backdrop-filter: none; }
/* Same for the floating hero card: blur + an infinite bob re-rendered the blur constantly. */
.plh__marketing { background: linear-gradient(135deg, rgba(58,40,30,.82), rgba(25,20,18,.78)); -webkit-backdrop-filter: none; backdrop-filter: none; }
.plh__marketing, .plh__campaign { will-change: transform; }
.tm-gsap-animate-circle { will-change: transform; }
html { scroll-behavior: smooth; }
