/* ============================================
   DIJIVO PLASPLYWOOD WIDGETS — MASTER CSS
   ============================================ */

:root {
  --ppw-orange: #E8531E;
  --ppw-dark: #1A1A1A;
  --ppw-white: #ffffff;
  --ppw-gray: #9aa5b4;
  --ppw-light-bg: #f5f5f5;
  --ppw-cream-bg: #f5f0eb;
  --ppw-font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --ppw-radius: 10px;
  --ppw-radius-sm: 6px;
}

/* ============================================
   TOP BAR
   ============================================ */
.ppw-top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 24px;
  font-family: var(--ppw-font);
  font-size: 13px;
  background: var(--ppw-white);
  border-bottom: 1px solid #eee;
  flex-wrap: wrap;
  gap: 8px;
}
.ppw-top-bar__left {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.ppw-top-bar__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--ppw-radius-sm);
  background: var(--ppw-orange);
  flex-shrink: 0;
  transition: background-color 0.2s;
}
.ppw-top-bar__dot { color: #ccc; }
.ppw-top-bar__text { color: #444; }
.ppw-top-bar__email { color: #444; text-decoration: none; }
.ppw-top-bar__email:hover { color: var(--ppw-orange); }
.ppw-top-bar__right { color: #888; }

@media (max-width: 768px) {
  .ppw-top-bar { display: none !important; }
}

/* ============================================
   NAV HEADER
   ============================================ */
.ppw-nav-header {
  font-family: var(--ppw-font);
  background: var(--ppw-white);
  border-bottom: 1px solid #eee;
  position: relative;
  width: 100%;
}
.ppw-nav-header--sticky {
  position: sticky;
  top: 0;
  z-index: 1000;
}
.ppw-nav-header--stuck {
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
}
.ppw-nav-header__inner {
  display: flex;
  align-items: center;
  padding: 14px 24px;
  gap: 32px;
  max-width: 1300px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.ppw-nav-header__logo {
  text-decoration: none;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.ppw-nav-header__logo img { max-height: 48px; width: auto; }
.ppw-nav-header__logo-text {
  font-size: 24px;
  font-weight: 700;
  color: #ccc;
  letter-spacing: 2px;
}
.ppw-nav-header__menu {
  display: flex;
  align-items: center;
  gap: 24px;
  flex: 1;
  flex-wrap: wrap;
}
.ppw-nav-header__menu a {
  text-decoration: none;
  color: #1a1a1a;
  font-size: 14px;
  font-weight: 500;
  position: relative;
  padding-bottom: 4px;
  white-space: nowrap;
  transition: color 0.2s;
}
.ppw-nav-header__menu a:hover { color: var(--ppw-orange); }
.ppw-nav-header__menu a.active { color: #1a1a1a; }
.ppw-nav-header__menu a.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--ppw-orange);
  border-radius: 2px;
}
.ppw-nav-header__cta-group {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.ppw-nav-header__cta-text {
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  color: #1a1a1a;
  white-space: nowrap;
}
.ppw-nav-header__cta-dark,
.ppw-nav-header__cta-orange {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 16px;
  border-radius: var(--ppw-radius-sm);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  transition: opacity 0.2s, background-color 0.2s;
}
.ppw-nav-header__cta-dark {
  background: var(--ppw-dark);
  color: #ffffff;
  width: 40px;
  height: 40px;
  padding: 0;
}
.ppw-nav-header__cta-dark svg { stroke: #ffffff; }
.ppw-nav-header__cta-orange {
  background: var(--ppw-orange);
  color: #ffffff;
}
.ppw-nav-header__cta-orange svg { stroke: #ffffff; }
.ppw-nav-header__cta-dark:hover {
  background-color: #333333;
  color: #ffffff;
  opacity: 1;
}
.ppw-nav-header__cta-orange:hover {
  background-color: #d14a1a;
  color: #ffffff;
  opacity: 1;
}
/* Prevent browser default link colors */
.ppw-nav-header__cta-dark:visited,
.ppw-nav-header__cta-orange:visited {
  color: #ffffff;
}
.ppw-nav-header__cta-text:hover { color: var(--ppw-orange); }
.ppw-nav-header__cta-text:visited { color: #1a1a1a; }

/* Nav Header hamburger removed — use PPW Mobile Header widget for mobile */

/* ============================================
   MOBILE HEADER WIDGET (ppw-mh)
   ============================================ */
.ppw-mh {
  font-family: var(--ppw-font);
}
.ppw-mh__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  background: #ffffff;
  border-bottom: 1px solid #eee;
}
.ppw-mh__logo {
  text-decoration: none;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.ppw-mh__logo img { max-height: 36px; width: auto; }
.ppw-mh__logo-text {
  font-size: 20px;
  font-weight: 700;
  color: #1a1a1a;
  letter-spacing: 1px;
}
.ppw-mh__hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  width: 44px;
  height: 44px;
  border-radius: 6px;
}
.ppw-mh__hamburger:hover { background: rgba(0,0,0,0.05); }
.ppw-mh__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #1a1a1a;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.ppw-mh__hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.ppw-mh__hamburger.active span:nth-child(2) { opacity: 0; }
.ppw-mh__hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Fullscreen panel */
.ppw-mh__panel {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  height: 100dvh;
  background: #ffffff;
  z-index: 999999;
  flex-direction: column;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.ppw-mh__panel.open {
  display: flex;
}
.ppw-mh__panel-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border-bottom: 1px solid #eee;
  flex-shrink: 0;
}
.ppw-mh__close {
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  color: #1a1a1a;
  padding: 0;
}
.ppw-mh__close:hover { background: rgba(0,0,0,0.05); }
.ppw-mh__links {
  display: flex;
  flex-direction: column;
  padding: 8px 20px;
  flex: 1;
}
.ppw-mh__links a {
  display: block;
  text-decoration: none;
  color: #1a1a1a;
  font-size: 17px;
  font-weight: 500;
  padding: 15px 0;
  border-bottom: 1px solid #f0f0f0;
  transition: color 0.2s;
}
.ppw-mh__links a:visited { color: #1a1a1a; }
.ppw-mh__links a:hover { color: #E8531E; }
.ppw-mh__links a:last-child { border-bottom: none; }
.ppw-mh__cta {
  padding: 16px 20px 24px;
  border-top: 1px solid #eee;
  flex-shrink: 0;
}
.ppw-mh__cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  background: #E8531E;
  color: #ffffff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  padding: 14px 20px;
  border-radius: 6px;
  transition: background 0.2s;
  box-sizing: border-box;
}
.ppw-mh__cta-btn:visited { color: #ffffff; }
.ppw-mh__cta-btn:hover { background: #d14a1a; color: #ffffff; }

/* ============================================
   HERO SLIDER
   ============================================ */
.ppw-hero-slider {
  position: relative;
  overflow: hidden;
  background: #111;
  height: 480px;
  min-height: 320px;
  font-family: var(--ppw-font);
}
.ppw-hero-slider__track {
  position: relative;
  width: 100%;
  height: 100%;
}
.ppw-hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  opacity: 0;
  transition: opacity 0.7s ease;
  pointer-events: none;
}
.ppw-hero-slide.active {
  opacity: 1;
  pointer-events: auto;
}
.ppw-hero-slider__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
}
.ppw-hero-slide__content {
  position: relative;
  z-index: 2;
  padding: 0 clamp(20px, 5vw, 80px);
  max-width: min(600px, 85vw);
  width: 100%;
}
.ppw-hero-slide__badge {
  display: inline-block;
  background: #fff;
  color: #1a1a1a;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 4px;
  margin-bottom: 14px;
}
.ppw-hero-slide__title {
  font-size: clamp(22px, 5vw, 42px);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin: 0 0 10px;
}
.ppw-hero-slide__subtitle {
  font-size: clamp(14px, 2.5vw, 18px);
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  margin: 0 0 8px;
}
.ppw-hero-slide__desc {
  font-size: clamp(12px, 2vw, 14px);
  color: rgba(255,255,255,0.75);
  margin: 0 0 24px;
  line-height: 1.6;
}
.ppw-hero-slide__btn {
  display: inline-block;
  background: var(--ppw-dark);
  color: #fff;
  padding: 12px 24px;
  border-radius: var(--ppw-radius-sm);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: background 0.2s;
}
.ppw-hero-slide__btn:hover { background: #0d1520; }

.ppw-hero-slider__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: var(--ppw-orange);
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s;
}
.ppw-hero-slider__arrow:hover { opacity: 0.85; }
.ppw-hero-slider__arrow--prev { left: 20px; }
.ppw-hero-slider__arrow--next { right: 20px; }

@media (max-width: 768px) {
  .ppw-hero-slider { height: 420px; }
  .ppw-hero-slide__content { padding: 0 20px; max-width: 90vw; }
  .ppw-hero-slide__badge { font-size: 11px; padding: 3px 10px; margin-bottom: 10px; }
  .ppw-hero-slide__desc { margin-bottom: 18px; }
  .ppw-hero-slide__btn { padding: 10px 20px; font-size: 13px; }
  .ppw-hero-slider__arrow { width: 38px; height: 38px; }
  .ppw-hero-slider__arrow--prev { left: 10px; }
  .ppw-hero-slider__arrow--next { right: 10px; }
}
@media (max-width: 640px) {
  .ppw-hero-slider { height: 380px; }
  .ppw-hero-slide__content { padding: 0 16px; max-width: 95vw; }
  .ppw-hero-slide__subtitle { margin-bottom: 4px; }
  .ppw-hero-slide__desc { font-size: 12px; margin-bottom: 16px; line-height: 1.5; }
}
@media (max-width: 480px) {
  .ppw-hero-slider { height: auto; min-height: 320px; }
  .ppw-hero-slide { padding: 40px 0; }
  .ppw-hero-slide__content { padding: 0 16px; }
  .ppw-hero-slide__badge { font-size: 10px; }
  .ppw-hero-slide__btn { padding: 10px 18px; font-size: 12px; width: 100%; text-align: center; }
  .ppw-hero-slider__arrow { width: 32px; height: 32px; }
  .ppw-hero-slider__arrow--prev { left: 6px; }
  .ppw-hero-slider__arrow--next { right: 6px; }
}

/* ============================================
   TECHNICAL DETAILS
   ============================================ */
.ppw-tech-details {
  padding: 60px 40px;
  background: var(--ppw-white);
  border-top: 4px solid var(--ppw-orange);
  font-family: var(--ppw-font);
}
.ppw-tech-details__header {
  text-align: center;
  margin-bottom: 40px;
}
.ppw-tech-details__title {
  font-size: 36px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 12px;
}
.ppw-tech-details__title-highlight { color: var(--ppw-orange); }
.ppw-tech-details__desc {
  font-size: 15px;
  color: #666;
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.6;
}
.ppw-tech-details__cards {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}
.ppw-tech-details__card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #f8f9fa;
  border: 1px solid #eee;
  border-radius: var(--ppw-radius);
  padding: 18px 22px;
  min-width: 200px;
  flex: 1;
  max-width: 280px;
}
.ppw-tech-details__card-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--ppw-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ppw-tech-details__card-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.ppw-tech-details__card-text strong {
  font-size: 15px;
  font-weight: 700;
  color: #1a1a1a;
}
.ppw-tech-details__card-text span {
  font-size: 13px;
  color: #666;
}

/* ============================================
   COMPARISON TABLE
   ============================================ */
.ppw-comparison {
  padding: 60px 40px;
  background: var(--ppw-light-bg);
  font-family: var(--ppw-font);
}
.ppw-comparison__header {
  text-align: center;
  margin-bottom: 36px;
}
.ppw-comparison__title {
  font-size: 32px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 12px;
}
.ppw-comparison__vs-text { color: var(--ppw-orange); }
.ppw-comparison__desc {
  font-size: 15px;
  color: #666;
  max-width: 500px;
  margin: 0 auto 24px;
  line-height: 1.6;
}
.ppw-comparison__tabs {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
}
.ppw-comparison__tab {
  padding: 10px 22px;
  border-radius: 6px;
  border: 1px solid #ddd;
  background: #fff;
  font-size: 14px;
  font-weight: 600;
  color: #444;
  cursor: pointer;
  transition: all 0.2s;
}
.ppw-comparison__tab.active {
  background: var(--ppw-dark);
  color: #fff;
  border-color: var(--ppw-dark);
}
.ppw-comparison__panel { display: none; }
.ppw-comparison__panel.active { display: block; }
.ppw-comparison__columns {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 20px;
  align-items: start;
  margin-top: 28px;
}
.ppw-comparison__vs-bubble {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #555;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 60px;
  flex-shrink: 0;
}
.ppw-comparison__competitor-card,
.ppw-comparison__product-card {
  border-radius: var(--ppw-radius);
  padding: 24px;
  border: 2px solid transparent;
}
.ppw-comparison__competitor-card {
  background: #fff;
  border-color: #eee;
}
.ppw-comparison__product-card {
  background: var(--ppw-dark);
  border-color: var(--ppw-orange);
}
.ppw-comparison__card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.ppw-comparison__card-header strong { font-size: 16px; font-weight: 700; }
.ppw-comparison__product-card .ppw-comparison__card-header strong { color: #fff; }
.ppw-comparison__badge {
  margin-left: auto;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
}
.ppw-comparison__badge--conventional { background: #fdecea; color: #c0392b; }
.ppw-comparison__badge--recommended  { background: var(--ppw-orange); color: #fff; }
.ppw-comparison__product-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(232,83,30,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}
.ppw-comparison__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ppw-comparison__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  padding: 10px 14px;
  border-radius: var(--ppw-radius-sm);
}
.ppw-comparison__list--bad li {
  background: #f8f9fa;
  color: #444;
}
.ppw-comparison__list--good li {
  background: rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.88);
}
.ppw-comparison__icon {
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.ppw-comparison__icon--bad  { color: #e74c3c; }
.ppw-comparison__icon--good { color: #2ecc71; }

@media (max-width: 768px) {
  .ppw-comparison__columns { grid-template-columns: 1fr; }
  .ppw-comparison__vs-bubble { margin: 0 auto; }
}

/* ============================================
   WHY SECTION
   ============================================ */
.ppw-why {
  padding: 60px 40px;
  font-family: var(--ppw-font);
  background: #fff;
}
.ppw-why__header {
  text-align: center;
  margin-bottom: 40px;
}
.ppw-why__title {
  font-size: 36px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 12px;
}
.ppw-why__title-highlight { color: var(--ppw-orange); }
.ppw-why__desc {
  font-size: 15px;
  color: #666;
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.6;
}
.ppw-why__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}
.ppw-why__accordion {
  background: var(--ppw-dark);
  border-radius: var(--ppw-radius);
  overflow: hidden;
}
.ppw-why__accordion-item {
  border-bottom: 1px solid rgba(255,255,255,0.07);
  cursor: pointer;
  transition: background 0.2s;
}
.ppw-why__accordion-item:last-child { border-bottom: none; }
.ppw-why__accordion-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
}
.ppw-why__accordion-num {
  font-size: 13px;
  font-weight: 700;
  color: var(--ppw-orange);
  flex-shrink: 0;
  width: 24px;
}
.ppw-why__accordion-label {
  flex: 1;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  position: relative;
  padding-bottom: 2px;
  transition: color 0.2s;
}
.ppw-why__accordion-item.active .ppw-why__accordion-label {
  color: #fff;
  font-weight: 600;
}
.ppw-why__accordion-item.active .ppw-why__accordion-label::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--ppw-orange);
  border-radius: 2px;
}
.ppw-why__accordion-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.2s, color 0.2s;
}
.ppw-why__accordion-item.active .ppw-why__accordion-btn {
  background: var(--ppw-orange);
  color: #fff;
}

/* Detail Panel */
.ppw-why__detail {
  background: #f8f9fa;
  border-radius: var(--ppw-radius);
  border: 1px solid #eee;
  padding: 32px;
  position: relative;
  min-height: 320px;
}
.ppw-why__detail-panel { display: none; }
.ppw-why__detail-panel.active { display: block; }
.ppw-why__detail-counter {
  font-size: 13px;
  font-weight: 700;
  color: var(--ppw-orange);
  display: block;
  margin-bottom: 12px;
}
.ppw-why__detail-title {
  font-size: 24px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 16px;
  line-height: 1.3;
}
.ppw-why__detail-text {
  font-size: 14px;
  color: #555;
  line-height: 1.7;
  margin: 0 0 24px;
}
.ppw-why__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.ppw-why__tag {
  font-size: 12px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 20px;
  background: #ebebeb;
  color: #444;
}
.ppw-why__tag--main {
  background: #fde8e0;
  color: var(--ppw-orange);
}
.ppw-why__dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 20px;
}
.ppw-why__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ddd;
  cursor: pointer;
  transition: background 0.2s;
}
.ppw-why__dot.active { background: var(--ppw-orange); }

@media (max-width: 768px) {
  .ppw-why__layout { grid-template-columns: 1fr; }
}

/* ============================================
   VIDEO GRID
   ============================================ */
.ppw-video-grid {
  padding: 60px 40px;
  background: var(--ppw-cream-bg);
  font-family: var(--ppw-font);
}
.ppw-video-grid__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 32px;
  flex-wrap: wrap;
  gap: 20px;
}
.ppw-video-grid__label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--ppw-orange);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}
.ppw-video-grid__label-dot { font-size: 8px; }
.ppw-video-grid__title {
  font-size: 32px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 10px;
}
.ppw-video-grid__title-highlight { color: var(--ppw-orange); }
.ppw-video-grid__desc {
  font-size: 14px;
  color: #555;
  max-width: 360px;
  line-height: 1.6;
  margin: 0;
}
.ppw-video-grid__header-left { flex: 1; min-width: 0; }
.ppw-video-grid__yt-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ppw-dark);
  color: #fff;
  padding: 12px 20px;
  border-radius: var(--ppw-radius-sm);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  transition: opacity 0.2s;
  flex-shrink: 0;
}
.ppw-video-grid__yt-btn:hover { opacity: 0.85; }

.ppw-video-grid__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.ppw-video-card {
  display: block;
  background: #fff;
  border-radius: var(--ppw-radius);
  overflow: hidden;
  border: 1px solid #e8e0d8;
  cursor: pointer;
}
.ppw-video-card__thumb {
  position: relative;
  height: 220px;
  background: #1a1a1a;
  background-size: cover;
  background-position: center;
}
.ppw-video-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #E8531E;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
}
.ppw-video-card__duration {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(0,0,0,0.7);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 4px;
}
.ppw-video-card__info {
  padding: 18px 20px;
}
.ppw-video-card__category {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--ppw-orange);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}
.ppw-video-card__title {
  font-size: 16px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 14px;
  line-height: 1.4;
}
.ppw-video-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.ppw-video-card__views {
  font-size: 13px;
  color: #888;
  display: flex;
  align-items: center;
  gap: 4px;
}
.ppw-video-card__dot { color: var(--ppw-orange); font-size: 10px; }
.ppw-video-card__watch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ppw-orange);
  text-decoration: none;
}
.ppw-video-card__watch:hover { opacity: 0.8; }
.ppw-video-card__play-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.85);
  opacity: 0;
  transition: opacity 0.3s, transform 0.3s;
}
.ppw-video-card:hover .ppw-video-card__play-icon {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

@media (max-width: 640px) {
  .ppw-video-grid__grid { grid-template-columns: 1fr; }
}

/* ============================================
   FOOTER
   ============================================ */
.ppw-footer {
  background: var(--ppw-dark);
  padding: 60px 40px 32px;
  font-family: var(--ppw-font);
  color: var(--ppw-gray);
}
.ppw-footer__main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}
.ppw-footer__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.ppw-footer__logo-icon {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: var(--ppw-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ppw-footer__logo-text {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 1px;
}
.ppw-footer__brand-desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--ppw-gray);
  margin: 0 0 20px;
  max-width: 320px;
}
.ppw-footer__social {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
}
.ppw-footer__social-btn {
  width: 38px;
  height: 38px;
  border-radius: var(--ppw-radius-sm);
  background: rgba(255,255,255,0.07);
  color: var(--ppw-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.ppw-footer__social-btn:hover {
  background: var(--ppw-orange);
  color: #fff;
}
.ppw-footer__contact-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ppw-footer__contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--ppw-gray);
}
.ppw-footer__contact-item--address { align-items: flex-start; }
.ppw-footer__contact-icon {
  width: 32px;
  height: 32px;
  border-radius: var(--ppw-radius-sm);
  background: rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ppw-footer__col-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--ppw-gray);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0 0 20px;
}
.ppw-footer__link-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ppw-footer__link {
  text-decoration: none;
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  transition: color 0.2s;
}
.ppw-footer__link:hover { color: var(--ppw-orange); }
.ppw-footer__divider {
  border: none;
  border-top: 1px solid #2d3748;
  margin: 0 0 28px;
}
.ppw-footer__bottom {
  font-size: 13px;
  color: var(--ppw-gray);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 16px;
}
.ppw-footer__bottom-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
  color: #666;
}
.ppw-footer__bottom-title {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 4px;
}
.ppw-footer__bottom-sub { margin: 0; }
.ppw-footer__copyright {
  font-size: 12px;
  color: #666;
  margin: 12px 0 0;
}

/* Footer Column Accordion (Mobile) */
.ppw-footer__col-toggle {
  display: flex;
  width: 100%;
  background: none;
  border: none;
  padding: 0;
  align-items: center;
  justify-content: space-between;
  color: inherit;
  font-family: inherit;
  text-align: left;
  cursor: default;
}
.ppw-footer__col-toggle .ppw-footer__col-title {
  margin: 0 0 20px;
}
.ppw-footer__col-arrow {
  display: none;
  transition: transform 0.3s;
  flex-shrink: 0;
  color: var(--ppw-gray);
}
.ppw-footer__col--accordion.active .ppw-footer__col-arrow {
  transform: rotate(180deg);
}

@media (max-width: 768px) {
  .ppw-footer[data-mobile-accordion="yes"] .ppw-footer__col-toggle {
    cursor: pointer;
    padding: 14px 0;
  }
  .ppw-footer[data-mobile-accordion="yes"] .ppw-footer__col-toggle .ppw-footer__col-title {
    margin: 0;
  }
  .ppw-footer[data-mobile-accordion="yes"] .ppw-footer__col-arrow {
    display: block;
  }
  .ppw-footer[data-mobile-accordion="yes"] .ppw-footer__col-content {
    display: none;
    padding-bottom: 16px;
  }
  .ppw-footer[data-mobile-accordion="yes"] .ppw-footer__col--accordion.active .ppw-footer__col-content {
    display: block;
  }
  .ppw-footer[data-mobile-accordion="yes"] .ppw-footer__col--accordion {
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding-bottom: 0;
  }
}

/* Newsletter */
.ppw-footer__newsletter {
  grid-column: 1 / -1;
  padding: 32px 0 0;
}
.ppw-footer__newsletter-title {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 8px;
}
.ppw-footer__newsletter-desc {
  font-size: 14px;
  color: var(--ppw-gray);
  margin: 0 0 16px;
  max-width: 400px;
}
.ppw-footer__newsletter-form {
  display: flex;
  gap: 8px;
  max-width: 420px;
}
.ppw-footer__newsletter-input {
  flex: 1;
  padding: 12px 16px;
  border-radius: var(--ppw-radius-sm);
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.05);
  color: #fff;
  font-size: 14px;
  font-family: var(--ppw-font);
  outline: none;
  transition: border-color 0.2s;
}
.ppw-footer__newsletter-input::placeholder {
  color: rgba(255,255,255,0.35);
}
.ppw-footer__newsletter-input:focus {
  border-color: var(--ppw-orange);
}
.ppw-footer__newsletter-btn {
  padding: 12px 24px;
  border: none;
  border-radius: var(--ppw-radius-sm);
  background: var(--ppw-orange);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  font-family: var(--ppw-font);
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s, transform 0.2s;
}
.ppw-footer__newsletter-btn:hover {
  background: #d14a1a;
  transform: translateY(-1px);
}
.ppw-footer__newsletter-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}
.ppw-footer__newsletter-input.ppw-input--error {
  border-color: #e74c3c;
  animation: ppw-shake 0.4s ease;
}
@keyframes ppw-shake {
  0%, 100% { transform: translateX(0); }
  20%, 60% { transform: translateX(-6px); }
  40%, 80% { transform: translateX(6px); }
}

@media (max-width: 1100px) {
  .ppw-footer__main { grid-template-columns: 2fr 1fr 1fr; }
}
@media (max-width: 900px) {
  .ppw-footer__main { grid-template-columns: 1fr 1fr; }
  .ppw-footer__brand { grid-column: 1 / -1; }
}
@media (max-width: 540px) {
  .ppw-footer__main { grid-template-columns: 1fr; }
  .ppw-why { padding: 40px 20px; }
  .ppw-tech-details { padding: 40px 20px; }
  .ppw-comparison { padding: 40px 20px; }
  .ppw-video-grid { padding: 40px 20px; }
  .ppw-footer { padding: 40px 20px 24px; }
}

/* ============================================
   HOVER & TRANSITION ENHANCEMENTS
   ============================================ */
.ppw-tech-details__card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.ppw-tech-details__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.ppw-video-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.ppw-video-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}
.ppw-footer__link {
  transition: color 0.25s ease;
}
.ppw-footer__social-btn {
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}
.ppw-footer__social-btn:hover {
  transform: translateY(-2px);
}
.ppw-nav-header__menu a {
  transition: color 0.25s ease;
}
.ppw-why__accordion-item {
  transition: background 0.25s ease;
}
.ppw-comparison__tab {
  transition: all 0.25s ease;
}
.ppw-comparison__tab:hover {
  border-color: var(--ppw-orange);
  color: var(--ppw-orange);
}

/* ============================================
   SCROLL ANIMATIONS (Intersection Observer)
   ============================================ */
@keyframes ppw-fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes ppw-slideUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes ppw-slideDown {
  from { opacity: 0; transform: translateY(-30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes ppw-slideLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes ppw-slideRight {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes ppw-zoomIn {
  from { opacity: 0; transform: scale(0.92); }
  to { opacity: 1; transform: scale(1); }
}

[data-ppw-animate] {
  opacity: 0;
}
[data-ppw-animate].ppw-animated {
  animation-fill-mode: both;
}
/* Elementor editor: skip animation so widgets are visible while editing */
.elementor-editor-active [data-ppw-animate] {
  opacity: 1 !important;
  animation: none !important;
}

/* ============================================
   HERO SLIDER — Dots & Progress Bar
   ============================================ */
.ppw-hero-slider__dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 8px;
  align-items: center;
}
.ppw-hero-slider__dot {
  width: 32px;
  height: 4px;
  border-radius: 2px;
  background: rgba(255,255,255,0.3);
  border: none;
  cursor: pointer;
  padding: 0;
  position: relative;
  overflow: hidden;
  transition: width 0.3s ease;
}
.ppw-hero-slider__dot.active {
  width: 48px;
  background: rgba(255,255,255,0.3);
}
.ppw-hero-slider__dot-progress {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: var(--ppw-orange);
  border-radius: 2px;
  transition: none;
}
.ppw-hero-slider__dot.active .ppw-hero-slider__dot-progress {
  animation: ppw-dot-fill var(--ppw-slider-speed, 5s) linear forwards;
}
.ppw-hero-slider__progress {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(255,255,255,0.15);
  z-index: 10;
}
.ppw-hero-slider__progress-bar {
  height: 100%;
  width: 0%;
  background: var(--ppw-orange);
  animation: ppw-progress-fill var(--ppw-slider-speed, 5s) linear forwards;
}
@keyframes ppw-dot-fill {
  from { width: 0%; }
  to { width: 100%; }
}
@keyframes ppw-progress-fill {
  from { width: 0%; }
  to { width: 100%; }
}

/* ============================================
   WHY SECTION — Auto-advance Progress Bar
   ============================================ */
.ppw-why__progress-wrap {
  height: 3px;
  background: rgba(255,255,255,0.1);
  overflow: hidden;
  margin: 0;
}
.ppw-why__progress-bar {
  height: 100%;
  width: 0%;
  background: var(--ppw-orange);
  border-radius: 0 2px 2px 0;
  transition: none;
}
.ppw-why__accordion-item.active .ppw-why__progress-bar {
  animation: ppw-progress-fill var(--ppw-why-speed, 5s) linear forwards;
}
.ppw-why__accordion-item:not(.active) .ppw-why__progress-bar {
  width: 0%;
  animation: none;
}

/* Why Section — Smooth detail panel transition */
.ppw-why__detail-panel {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  position: absolute;
  visibility: hidden;
}
.ppw-why__detail-panel.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
  position: relative;
  visibility: visible;
}

/* ============================================
   HERO SLIDE — Staggered Content Entrance
   ============================================ */
.ppw-hero-slide.active .ppw-hero-slide__badge {
  animation: ppw-slideUp 0.5s ease 0.1s both;
}
.ppw-hero-slide.active .ppw-hero-slide__title {
  animation: ppw-slideUp 0.5s ease 0.2s both;
}
.ppw-hero-slide.active .ppw-hero-slide__subtitle {
  animation: ppw-slideUp 0.5s ease 0.3s both;
}
.ppw-hero-slide.active .ppw-hero-slide__desc {
  animation: ppw-slideUp 0.5s ease 0.4s both;
}
.ppw-hero-slide.active .ppw-hero-slide__btn {
  animation: ppw-slideUp 0.5s ease 0.5s both;
}

/* ============================================
   ENHANCED HOVER TRANSITIONS
   ============================================ */
.ppw-hero-slider__arrow {
  transition: opacity 0.2s, transform 0.2s;
}
.ppw-hero-slider__arrow:hover {
  transform: translateY(-50%) scale(1.08);
}
.ppw-hero-slide__btn {
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.ppw-hero-slide__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.ppw-nav-header__cta-dark,
.ppw-nav-header__cta-orange {
  transition: background-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.ppw-nav-header__cta-dark:hover,
.ppw-nav-header__cta-orange:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  color: #ffffff;
}
.ppw-comparison__tab:hover {
  transform: translateY(-1px);
}
.ppw-why__accordion-item:hover {
  background: rgba(255,255,255,0.03);
}
.ppw-video-grid__yt-btn {
  transition: opacity 0.2s, transform 0.2s;
}
.ppw-video-grid__yt-btn:hover {
  transform: translateY(-1px);
}

/* ============================================
   TABLET BREAKPOINT (768-1024px)
   ============================================ */
@media (max-width: 1024px) and (min-width: 769px) {
  .ppw-tech-details__cards { gap: 12px; }
  .ppw-tech-details__card { min-width: 180px; }
  .ppw-video-grid__header { flex-direction: column; align-items: flex-start; }
}

/* ============================================
   SMALL MOBILE (below 480px)
   ============================================ */
@media (max-width: 480px) {
  .ppw-top-bar { flex-direction: column; align-items: flex-start; gap: 4px; }
  .ppw-top-bar__left { gap: 6px; }
  .ppw-top-bar__dot { display: none; }
  .ppw-hero-slider__dots { bottom: 14px; gap: 6px; }
  .ppw-hero-slider__dot { width: 24px; }
  .ppw-hero-slider__dot.active { width: 36px; }
  .ppw-tech-details__title { font-size: 28px; }
  .ppw-comparison__title { font-size: 24px; }
  .ppw-why__title { font-size: 28px; }
  .ppw-why__detail { padding: 20px; min-height: auto; }
  .ppw-why__detail-title { font-size: 20px; }
  .ppw-video-grid__title { font-size: 24px; }
  .ppw-footer__bottom { text-align: center; }
  .ppw-footer__newsletter-form { flex-direction: column; }
  .ppw-stats { flex-direction: column; }
  .ppw-stats__item { min-width: auto; }
  .ppw-cta-banner { padding: 40px 20px; }
  .ppw-cta-banner__title { font-size: 24px; }
  .ppw-cta-banner__buttons { flex-direction: column; align-items: center; }
  .ppw-testimonials__card { padding: 24px 20px; }
  .ppw-heading__title { font-size: 28px; }
}

/* ============================================
   BUTTON WIDGET
   ============================================ */
.ppw-btn-wrap { display: block; }
.ppw-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  font-family: var(--ppw-font);
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
}
.ppw-btn--sm { padding: 8px 18px; font-size: 13px; }
.ppw-btn--md { padding: 12px 24px; font-size: 14px; }
.ppw-btn--lg { padding: 14px 32px; font-size: 16px; }
.ppw-btn--xl { padding: 18px 40px; font-size: 18px; }
.ppw-btn:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.ppw-btn__icon {
  display: inline-flex;
  align-items: center;
  transition: transform 0.2s;
}
/* Hover icon swap */
.ppw-btn__text { pointer-events: none; }
.ppw-btn__icon--hover { display: none; }
.ppw-btn--has-hover-icon:hover .ppw-btn__icon--normal { display: none; }
.ppw-btn--has-hover-icon:hover .ppw-btn__icon--hover { display: inline-flex; }
.ppw-btn:hover .ppw-btn__icon { transform: translateX(2px); }
/* Hover animations */
.ppw-btn--hover-up:hover { transform: translateY(-2px); }
.ppw-btn--hover-grow:hover { transform: scale(1.05); }
.ppw-btn--hover-pulse:hover { animation: ppw-btn-pulse 0.6s ease; }
@keyframes ppw-btn-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.06); }
}

/* ============================================
   HEADING WIDGET
   ============================================ */
.ppw-heading {
  font-family: var(--ppw-font);
}
.ppw-heading__label {
  display: flex;
  align-items: center;
  justify-content: inherit;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--ppw-orange);
  margin-bottom: 12px;
}
.ppw-heading__label-icon { font-size: 8px; }
.ppw-heading__title {
  font-size: 36px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 12px;
  line-height: 1.2;
}
.ppw-heading__highlight { color: var(--ppw-orange); }
.ppw-heading__separator {
  display: block;
  width: 60px;
  height: 3px;
  background: var(--ppw-orange);
  border-radius: 2px;
  margin-bottom: 16px;
}
.ppw-heading__desc {
  font-size: 15px;
  color: #666;
  line-height: 1.7;
  margin: 0;
  max-width: 500px;
}

/* ============================================
   FAQ WIDGET
   ============================================ */
.ppw-faq {
  font-family: var(--ppw-font);
}
.ppw-faq__header {
  text-align: center;
  margin-bottom: 40px;
}
.ppw-faq__title {
  font-size: 32px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 12px;
}
.ppw-faq__title-highlight { color: var(--ppw-orange); }
.ppw-faq__desc {
  font-size: 15px;
  color: #666;
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.6;
}
.ppw-faq__item {
  border-bottom: 1px solid #eee;
  transition: background 0.2s;
}
.ppw-faq--bordered .ppw-faq__item {
  border: 1px solid #eee;
  border-radius: var(--ppw-radius-sm);
  margin-bottom: 12px;
}
.ppw-faq--card .ppw-faq__item {
  background: #f8f9fa;
  border: none;
  border-radius: var(--ppw-radius);
  margin-bottom: 12px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
}
.ppw-faq__question {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 18px 20px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--ppw-font);
  font-size: 15px;
  font-weight: 600;
  color: #1a1a1a;
  text-align: left;
  gap: 16px;
  transition: color 0.2s;
}
.ppw-faq__question--icon-left { flex-direction: row-reverse; }
.ppw-faq__question--icon-left .ppw-faq__question-text { flex: 1; }
.ppw-faq__question-text { flex: 1; }
.ppw-faq__icon {
  display: flex;
  align-items: center;
  font-size: 18px;
  color: #999;
  flex-shrink: 0;
  transition: color 0.2s, transform 0.3s;
}
.ppw-faq__item.active .ppw-faq__icon { color: var(--ppw-orange); }
.ppw-faq__icon-close { display: none; }
.ppw-faq__item.active .ppw-faq__icon-open { display: none; }
.ppw-faq__item.active .ppw-faq__icon-close { display: inline-flex; }
.ppw-faq__answer {
  display: none;
  overflow: hidden;
}
.ppw-faq__answer-inner {
  padding: 0 20px 18px;
  font-size: 14px;
  color: #555;
  line-height: 1.7;
}
.ppw-faq__item.active .ppw-faq__question { color: var(--ppw-orange); }

/* ============================================
   STATS COUNTER WIDGET
   ============================================ */
.ppw-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  align-items: stretch;
  font-family: var(--ppw-font);
}
.ppw-stats__header {
  width: 100%;
  text-align: center;
  margin-bottom: 32px;
}
.ppw-stats__title {
  font-size: 32px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 12px;
}
.ppw-stats__title-highlight { color: var(--ppw-orange); }
.ppw-stats__desc {
  font-size: 15px;
  color: #666;
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.6;
}
.ppw-stats--grid {
  display: grid;
}
.ppw-stats__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 32px 24px;
  min-width: 180px;
  flex: 1;
}
.ppw-stats__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--ppw-orange);
  margin-bottom: 12px;
}
.ppw-stats__number {
  font-size: 42px;
  font-weight: 800;
  color: var(--ppw-orange);
  line-height: 1;
  margin-bottom: 8px;
  display: flex;
  align-items: baseline;
}
.ppw-stats__prefix,
.ppw-stats__suffix {
  font-size: 0.6em;
  font-weight: 600;
}
.ppw-stats__value {
  display: inline-block;
}
.ppw-stats__label {
  font-size: 14px;
  color: #666;
  font-weight: 500;
}

/* ============================================
   CTA BANNER WIDGET
   ============================================ */
.ppw-cta-banner {
  position: relative;
  padding: 80px 40px;
  background: var(--ppw-dark);
  font-family: var(--ppw-font);
  overflow: hidden;
  text-align: center;
}
.ppw-cta-banner__overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,26,26,0.85);
}
.ppw-cta-banner__content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}
.ppw-cta-banner__badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 20px;
  background: var(--ppw-orange);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}
.ppw-cta-banner__title {
  font-size: 36px;
  font-weight: 800;
  color: #fff;
  margin: 0 0 16px;
  line-height: 1.2;
}
.ppw-cta-banner__desc {
  font-size: 16px;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin: 0 0 32px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.ppw-cta-banner__buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.ppw-cta-banner__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--ppw-radius-sm);
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.25s ease;
}
.ppw-cta-banner__btn--primary {
  background: var(--ppw-orange);
  color: #fff;
}
.ppw-cta-banner__btn--primary:hover {
  background: #d14a1a;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232,83,30,0.35);
}
.ppw-cta-banner__btn--secondary {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.3);
}
.ppw-cta-banner__btn--secondary:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-2px);
}

/* ============================================
   TESTIMONIALS WIDGET
   ============================================ */
.ppw-testimonials {
  padding: 60px 40px;
  font-family: var(--ppw-font);
  background: var(--ppw-light-bg);
}
.ppw-testimonials__header {
  text-align: center;
  margin-bottom: 40px;
}
.ppw-testimonials__title {
  font-size: 32px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
}
.ppw-testimonials__title-highlight { color: var(--ppw-orange); }
.ppw-testimonials__track {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  min-height: 260px;
}
.ppw-testimonials__slide {
  display: none;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.ppw-testimonials__slide.active {
  display: block;
  opacity: 1;
}
.ppw-testimonials__card {
  background: #fff;
  border-radius: var(--ppw-radius);
  padding: 40px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  position: relative;
}
.ppw-testimonials__quote-icon {
  color: var(--ppw-orange);
  margin-bottom: 16px;
}
.ppw-testimonials__stars {
  display: flex;
  gap: 2px;
  color: #f59e0b;
  font-size: 16px;
  margin-bottom: 16px;
}
.ppw-testimonials__text {
  font-size: 16px;
  color: #333;
  line-height: 1.7;
  margin: 0 0 24px;
  font-style: italic;
}
.ppw-testimonials__author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.ppw-testimonials__photo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}
.ppw-testimonials__photo-placeholder {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--ppw-orange);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  flex-shrink: 0;
}
.ppw-testimonials__name {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: #1a1a1a;
}
.ppw-testimonials__role {
  display: block;
  font-size: 13px;
  color: #888;
  margin-top: 2px;
}
.ppw-testimonials__dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 24px;
}
.ppw-testimonials__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ddd;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, transform 0.2s;
}
.ppw-testimonials__dot.active { background: var(--ppw-orange); transform: scale(1.2); }

/* ============================================
   GALLERY GRID
   ============================================ */
.ppw-gallery-grid {
  font-family: var(--ppw-font);
  padding: 60px 40px;
}
.ppw-gallery-grid__header {
  text-align: center;
  margin-bottom: 40px;
}
.ppw-gallery-grid__title {
  font-size: 32px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 12px;
}
.ppw-gallery-grid__title-highlight { color: var(--ppw-orange); }
.ppw-gallery-grid__desc {
  font-size: 15px;
  color: #666;
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.6;
}
.ppw-gallery-grid__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.ppw-gallery-grid__item { position: relative; overflow: hidden; border-radius: var(--ppw-radius); }
.ppw-gallery-grid__thumb {
  position: relative;
  height: 280px;
  overflow: hidden;
}
.ppw-gallery-grid__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.ppw-gallery-grid--hover-zoom .ppw-gallery-grid__item:hover img { transform: scale(1.08); }
.ppw-gallery-grid--hover-fade .ppw-gallery-grid__item:hover img { opacity: 0.8; }
.ppw-gallery-grid__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.4);
  opacity: 0;
  transition: opacity 0.3s;
}
.ppw-gallery-grid__item:hover .ppw-gallery-grid__overlay { opacity: 1; }
.ppw-gallery-grid__zoom {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background 0.2s;
}
.ppw-gallery-grid__zoom:hover { background: var(--ppw-orange); }
.ppw-gallery-grid__caption {
  padding: 14px 16px;
  background: #fff;
}
.ppw-gallery-grid__category {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: var(--ppw-orange);
  text-transform: uppercase;
  margin-bottom: 4px;
}
.ppw-gallery-grid__caption-text {
  font-size: 14px;
  color: #1a1a1a;
  font-weight: 600;
}

/* ============================================
   PRODUCT SHOWCASE
   ============================================ */
.ppw-product-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 80px 40px;
  font-family: var(--ppw-font);
  background: #fff;
}
.ppw-product-showcase--image-left { direction: rtl; }
.ppw-product-showcase--image-left > * { direction: ltr; }
.ppw-product-showcase--ratio-60-40 { grid-template-columns: 3fr 2fr; }
.ppw-product-showcase--ratio-40-60 { grid-template-columns: 2fr 3fr; }
.ppw-product-showcase__content { display: flex; flex-direction: column; gap: 0; }
.ppw-product-showcase__badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 20px;
  background: var(--ppw-orange);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.ppw-product-showcase__tagline {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--ppw-orange);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}
.ppw-product-showcase__name {
  font-size: 40px;
  font-weight: 800;
  color: #1a1a1a;
  margin: 0 0 16px;
  line-height: 1.15;
}
.ppw-product-showcase__desc {
  font-size: 15px;
  color: #666;
  line-height: 1.7;
  margin: 0 0 28px;
}
.ppw-product-showcase__features {
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ppw-product-showcase__feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 500;
  color: #333;
}
.ppw-product-showcase__feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--ppw-radius-sm);
  background: #fde8e0;
  color: var(--ppw-orange);
  font-size: 16px;
  flex-shrink: 0;
}
.ppw-product-showcase__buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.ppw-product-showcase__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--ppw-radius-sm);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.25s ease;
}
.ppw-product-showcase__btn--primary {
  background: var(--ppw-orange);
  color: #fff;
}
.ppw-product-showcase__btn--primary:hover {
  background: #d14a1a;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232,83,30,0.3);
}
.ppw-product-showcase__btn--secondary {
  background: transparent;
  color: #1a1a1a;
  border: 1px solid #ddd;
}
.ppw-product-showcase__btn--secondary:hover {
  border-color: var(--ppw-orange);
  color: var(--ppw-orange);
}
.ppw-product-showcase__image img {
  width: 100%;
  height: auto;
  border-radius: var(--ppw-radius);
  object-fit: cover;
}

/* ============================================
   PRODUCT FEATURES
   ============================================ */
.ppw-product-features {
  font-family: var(--ppw-font);
  padding: 60px 40px;
}
.ppw-product-features__header {
  text-align: center;
  margin-bottom: 48px;
}
.ppw-product-features__title {
  font-size: 32px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 12px;
}
.ppw-product-features__title-highlight { color: var(--ppw-orange); }
.ppw-product-features__desc {
  font-size: 15px;
  color: #666;
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.6;
}
.ppw-product-features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.ppw-product-features__card {
  padding: 28px 24px;
  border-radius: var(--ppw-radius);
  transition: transform 0.3s, box-shadow 0.3s;
}
.ppw-product-features--elevated .ppw-product-features__card {
  background: #fff;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.ppw-product-features--elevated .ppw-product-features__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}
.ppw-product-features--bordered .ppw-product-features__card {
  border: 1px solid #eee;
}
.ppw-product-features--flat .ppw-product-features__card {
  background: #f8f9fa;
}
.ppw-product-features__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: var(--ppw-radius-sm);
  font-size: 22px;
  margin-bottom: 16px;
}
.ppw-product-features__card-title {
  font-size: 16px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 8px;
}
.ppw-product-features__card-text {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* ============================================
   CONTACT INFO BOX
   ============================================ */
.ppw-contact-box {
  font-family: var(--ppw-font);
  padding: 60px 40px;
}
.ppw-contact-box__header {
  text-align: center;
  margin-bottom: 40px;
}
.ppw-contact-box__title {
  font-size: 32px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
}
.ppw-contact-box__title-highlight { color: var(--ppw-orange); }
.ppw-contact-box__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.ppw-contact-box__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 32px 20px;
  background: #fff;
  border-radius: var(--ppw-radius);
  border: 1px solid #eee;
  text-decoration: none;
  transition: transform 0.3s, box-shadow 0.3s;
}
.ppw-contact-box__item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.ppw-contact-box__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: var(--ppw-radius-sm);
  background: #fde8e0;
  color: var(--ppw-orange);
  font-size: 22px;
  margin-bottom: 16px;
}
.ppw-contact-box__label {
  font-size: 12px;
  font-weight: 600;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}
.ppw-contact-box__value {
  font-size: 15px;
  font-weight: 600;
  color: #1a1a1a;
}

/* ============================================
   FLOATING BUTTONS
   ============================================ */
.ppw-floating {
  position: fixed;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ppw-floating--bottom-right { bottom: 24px; right: 24px; }
.ppw-floating--bottom-left { bottom: 24px; left: 24px; }
.ppw-floating-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 26px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.ppw-floating-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(0,0,0,0.2);
}
.ppw-floating-btn--whatsapp { background: #25D366; color: #fff; }
.ppw-floating-btn--whatsapp:hover { background: #1fb855; }
.ppw-floating-btn--phone { background: var(--ppw-orange); color: #fff; }
.ppw-floating-btn--phone:hover { background: #d14a1a; }
.ppw-floating-btn--top { background: var(--ppw-dark); color: #fff; }
.ppw-floating-btn--top:hover { background: #333; }

/* ============================================
   COOKIE NOTICE
   ============================================ */
.ppw-cookie {
  position: fixed;
  left: 0;
  right: 0;
  z-index: 10000;
  font-family: var(--ppw-font);
}
.ppw-cookie--bottom { bottom: 0; }
.ppw-cookie--top { top: 0; }
.ppw-cookie__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 32px;
  background: var(--ppw-dark);
  flex-wrap: wrap;
}
.ppw-cookie__text {
  flex: 1;
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  margin: 0;
  line-height: 1.6;
  min-width: 200px;
}
.ppw-cookie__link {
  color: var(--ppw-orange);
  text-decoration: underline;
  margin-left: 4px;
}
.ppw-cookie__link:hover { opacity: 0.8; }
.ppw-cookie__buttons {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}
.ppw-cookie__btn {
  padding: 10px 24px;
  border-radius: var(--ppw-radius-sm);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  font-family: var(--ppw-font);
  transition: all 0.2s;
}
.ppw-cookie__btn--accept {
  background: var(--ppw-orange);
  color: #fff;
}
.ppw-cookie__btn--accept:hover { background: #d14a1a; }
.ppw-cookie__btn--reject {
  background: transparent;
  color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.2);
}
.ppw-cookie__btn--reject:hover { background: rgba(255,255,255,0.1); }

/* ============================================
   RESPONSIVE — NEW WIDGETS
   ============================================ */
@media (max-width: 768px) {
  .ppw-stats { gap: 16px; }
  .ppw-stats__item { min-width: 140px; padding: 24px 16px; }
  .ppw-stats__number { font-size: 32px; }
  .ppw-cta-banner { padding: 60px 24px; }
  .ppw-cta-banner__title { font-size: 28px; }
  .ppw-testimonials { padding: 40px 24px; }
  .ppw-testimonials__card { padding: 28px 24px; }
  .ppw-testimonials__title { font-size: 26px; }
  .ppw-heading__title { font-size: 30px; }
  .ppw-btn--xl { padding: 14px 28px; font-size: 16px; }
  .ppw-gallery-grid__grid { grid-template-columns: repeat(2, 1fr); }
  .ppw-product-showcase { grid-template-columns: 1fr !important; padding: 40px 24px; gap: 32px; }
  .ppw-product-showcase--image-left { direction: ltr; }
  .ppw-product-showcase__name { font-size: 30px; }
  .ppw-product-features__grid { grid-template-columns: repeat(2, 1fr); }
  .ppw-contact-box__grid { grid-template-columns: repeat(2, 1fr); }
  .ppw-contact-box { padding: 40px 24px; }
  .ppw-cookie__inner { flex-direction: column; text-align: center; padding: 16px 20px; }
  .ppw-cookie__buttons { justify-content: center; }
}

@media (max-width: 640px) {
  .ppw-stats--grid { grid-template-columns: 1fr 1fr !important; }
  .ppw-stats__number { font-size: 28px; }
  .ppw-faq__question { padding: 14px 16px; font-size: 14px; }
  .ppw-faq__answer-inner { padding: 0 16px 14px; }
  .ppw-gallery-grid__grid { grid-template-columns: 1fr; }
  .ppw-gallery-grid__thumb { height: 220px; }
  .ppw-product-features__grid { grid-template-columns: 1fr; }
  .ppw-contact-box__grid { grid-template-columns: 1fr; }
}

/* ============================================
   TIMELINE
   ============================================ */
.ppw-timeline {
  font-family: var(--ppw-font);
  padding: 60px 40px;
}
.ppw-timeline__header {
  text-align: center;
  margin-bottom: 48px;
}
.ppw-timeline__title {
  font-size: 32px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 12px;
}
.ppw-timeline__title-highlight { color: var(--ppw-orange); }
.ppw-timeline__desc {
  font-size: 15px;
  color: #666;
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.6;
}
.ppw-timeline__track {
  position: relative;
  padding: 0 20px;
}
.ppw-timeline__track::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #eee;
  transform: translateX(-50%);
}
.ppw-timeline__item {
  position: relative;
  display: flex;
  align-items: flex-start;
  margin-bottom: 40px;
  width: 50%;
}
.ppw-timeline__item--left {
  padding-right: 40px;
  text-align: right;
  align-self: flex-start;
}
.ppw-timeline__item--right {
  padding-left: 40px;
  margin-left: 50%;
}
.ppw-timeline__dot {
  position: absolute;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--ppw-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ppw-orange);
  font-size: 14px;
  z-index: 2;
  flex-shrink: 0;
}
.ppw-timeline__dot-icon { display: flex; align-items: center; justify-content: center; }
.ppw-timeline__dot-icon svg { width: 1em; height: 1em; fill: currentColor; }
.ppw-timeline__item--left .ppw-timeline__dot {
  right: -16px;
}
.ppw-timeline__item--right .ppw-timeline__dot {
  left: -16px;
}
.ppw-timeline__card {
  background: #fff;
  border-radius: var(--ppw-radius);
  padding: 24px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  flex: 1;
  transition: transform 0.3s, box-shadow 0.3s;
}
.ppw-timeline__card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}
.ppw-timeline__year {
  font-size: 13px;
  font-weight: 700;
  color: var(--ppw-orange);
  display: block;
  margin-bottom: 6px;
}
.ppw-timeline__card-title {
  font-size: 18px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 8px;
}
.ppw-timeline__card-text {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 768px) {
  .ppw-timeline__track::before { left: 16px; }
  .ppw-timeline__item,
  .ppw-timeline__item--left,
  .ppw-timeline__item--right {
    width: 100%;
    margin-left: 0;
    padding-left: 50px;
    padding-right: 0;
    text-align: left;
  }
  .ppw-timeline__item--left .ppw-timeline__dot,
  .ppw-timeline__item--right .ppw-timeline__dot {
    left: 0;
    right: auto;
  }
  .ppw-timeline { padding: 40px 20px; }
}

/* ============================================
   LOGO CAROUSEL
   ============================================ */
.ppw-logo-carousel {
  font-family: var(--ppw-font);
  padding: 60px 40px;
  overflow: hidden;
}
.ppw-logo-carousel__header {
  text-align: center;
  margin-bottom: 32px;
}
.ppw-logo-carousel__title {
  font-size: 32px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
}
.ppw-logo-carousel__title-highlight { color: var(--ppw-orange); }
.ppw-logo-carousel__track {
  display: flex;
  width: max-content;
  animation: ppw-logo-scroll 30s linear infinite;
}
.ppw-logo-carousel__slider {
  display: flex;
  align-items: center;
  gap: 48px;
  padding: 0 24px;
}
.ppw-logo-carousel__item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  text-decoration: none;
  transition: opacity 0.3s, filter 0.3s;
}
.ppw-logo-carousel__item img {
  height: 60px;
  width: auto;
  object-fit: contain;
}
.ppw-logo-carousel--grayscale .ppw-logo-carousel__item img {
  filter: grayscale(100%);
  opacity: 0.6;
  transition: filter 0.3s, opacity 0.3s;
}
.ppw-logo-carousel--grayscale .ppw-logo-carousel__item:hover img {
  filter: grayscale(0%);
  opacity: 1;
}
.ppw-logo-carousel__track:hover {
  animation-play-state: paused;
}
@keyframes ppw-logo-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================
   BEFORE / AFTER
   ============================================ */
.ppw-before-after {
  font-family: var(--ppw-font);
  padding: 60px 40px;
}
.ppw-before-after__header {
  text-align: center;
  margin-bottom: 40px;
}
.ppw-before-after__title {
  font-size: 32px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 12px;
}
.ppw-before-after__title-highlight { color: var(--ppw-orange); }
.ppw-before-after__desc {
  font-size: 15px;
  color: #666;
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.6;
}
.ppw-before-after__container {
  position: relative;
  height: 450px;
  border-radius: var(--ppw-radius);
  overflow: hidden;
  cursor: ew-resize;
  user-select: none;
  -webkit-user-select: none;
}
.ppw-before-after__before,
.ppw-before-after__after {
  position: absolute;
  inset: 0;
}
.ppw-before-after__before { z-index: 2; overflow: hidden; }
.ppw-before-after__after { z-index: 1; }
.ppw-before-after__before img,
.ppw-before-after__after img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ppw-before-after__label {
  position: absolute;
  bottom: 16px;
  padding: 6px 14px;
  border-radius: 4px;
  background: rgba(0,0,0,0.6);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 5;
}
.ppw-before-after__label--before { left: 16px; }
.ppw-before-after__label--after { right: 16px; }
.ppw-before-after__handle {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 0;
}
.ppw-before-after__handle-line {
  flex: 1;
  width: 3px;
  background: var(--ppw-orange);
}
.ppw-before-after__handle-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--ppw-orange);
  color: #fff;
  border: 3px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: ew-resize;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
  flex-shrink: 0;
}
@media (max-width: 640px) {
  .ppw-before-after__container { height: 300px; }
  .ppw-before-after { padding: 40px 20px; }
  .ppw-before-after__handle-btn { width: 36px; height: 36px; }
}

/* ============================================
   BLOG GRID
   ============================================ */
.ppw-blog-grid {
  font-family: var(--ppw-font);
  padding: 60px 40px;
}
.ppw-blog-grid__header {
  text-align: center;
  margin-bottom: 40px;
}
.ppw-blog-grid__title {
  font-size: 32px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
}
.ppw-blog-grid__title-highlight { color: var(--ppw-orange); }
.ppw-blog-grid__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.ppw-blog-card {
  background: #fff;
  border-radius: var(--ppw-radius);
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  transition: transform 0.3s, box-shadow 0.3s;
}
.ppw-blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}
.ppw-blog-card__thumb {
  display: block;
  height: 220px;
  overflow: hidden;
}
.ppw-blog-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.ppw-blog-card:hover .ppw-blog-card__thumb img {
  transform: scale(1.05);
}
.ppw-blog-card__content {
  padding: 20px;
}
.ppw-blog-card__category {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  color: var(--ppw-orange);
  text-transform: uppercase;
  letter-spacing: 0.3px;
  margin-bottom: 8px;
}
.ppw-blog-card__title {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 10px;
  line-height: 1.4;
}
.ppw-blog-card__title a {
  color: #1a1a1a;
  text-decoration: none;
  transition: color 0.2s;
}
.ppw-blog-card__title a:hover { color: var(--ppw-orange); }
.ppw-blog-card__excerpt {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin: 0 0 16px;
}
.ppw-blog-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.ppw-blog-card__date {
  font-size: 12px;
  color: #999;
}
.ppw-blog-card__more {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ppw-orange);
  text-decoration: none;
}
.ppw-blog-card__more:hover { opacity: 0.8; }
.ppw-blog-grid__empty {
  text-align: center;
  color: #999;
  padding: 40px;
}
@media (max-width: 768px) {
  .ppw-blog-grid__grid { grid-template-columns: repeat(2, 1fr); }
  .ppw-blog-grid { padding: 40px 20px; }
}
@media (max-width: 640px) {
  .ppw-blog-grid__grid { grid-template-columns: 1fr; }
}

/* ============================================
   ICON LIST
   ============================================ */
.ppw-icon-list {
  list-style: none;
  margin: 0;
  padding: 0;
  font-family: var(--ppw-font);
}
.ppw-icon-list__item {
  display: flex;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid #f0f0f0;
}
.ppw-icon-list__item:last-child { border-bottom: none; }
.ppw-icon-list__link {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
  width: 100%;
  gap: 12px;
  transition: color 0.2s;
}
.ppw-icon-list__link:hover { color: var(--ppw-orange); }
.ppw-icon-list__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--ppw-orange);
  flex-shrink: 0;
  width: 24px;
}
.ppw-icon-list__text {
  font-size: 15px;
  color: #333;
  line-height: 1.5;
}
/* When no link, icon+text side by side */
.ppw-icon-list__item:not(:has(.ppw-icon-list__link)) {
  gap: 12px;
}

/* ============================================
   IMAGE + TEXT
   ============================================ */
.ppw-image-text {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 60px 40px;
  font-family: var(--ppw-font);
}
.ppw-image-text--img-right .ppw-image-text__image { order: 2; }
.ppw-image-text--img-right .ppw-image-text__content { order: 1; }
.ppw-image-text--ratio-60-40 { grid-template-columns: 3fr 2fr; }
.ppw-image-text--ratio-40-60 { grid-template-columns: 2fr 3fr; }
.ppw-image-text__image img {
  width: 100%;
  height: auto;
  border-radius: var(--ppw-radius);
  object-fit: cover;
}
.ppw-image-text__badge {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 20px;
  background: #fde8e0;
  color: var(--ppw-orange);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.ppw-image-text__title {
  font-size: 32px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 16px;
  line-height: 1.2;
}
.ppw-image-text__highlight { color: var(--ppw-orange); }
.ppw-image-text__text {
  font-size: 15px;
  color: #666;
  line-height: 1.7;
  margin: 0 0 28px;
}
.ppw-image-text__text p { margin: 0 0 12px; }
.ppw-image-text__text p:last-child { margin-bottom: 0; }
.ppw-image-text__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--ppw-radius-sm);
  background: var(--ppw-orange);
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.25s ease;
}
.ppw-image-text__btn:hover {
  background: #d14a1a;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232,83,30,0.3);
}
@media (max-width: 768px) {
  .ppw-image-text { grid-template-columns: 1fr !important; padding: 40px 20px; gap: 32px; }
  .ppw-image-text--img-right .ppw-image-text__image { order: 1; }
  .ppw-image-text--img-right .ppw-image-text__content { order: 2; }
  .ppw-image-text__title { font-size: 26px; }
}

/* ============================================
   LIGHTBOX
   ============================================ */
.ppw-lightbox {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ppw-lightbox__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.92);
}
.ppw-lightbox__content {
  position: relative;
  z-index: 2;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ppw-lightbox__img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.5);
}
.ppw-lightbox__close {
  position: fixed;
  top: 20px;
  right: 20px;
  background: rgba(255,255,255,0.1);
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.ppw-lightbox__close:hover { background: rgba(255,255,255,0.25); }
.ppw-lightbox__prev,
.ppw-lightbox__next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.ppw-lightbox__prev { left: 20px; }
.ppw-lightbox__next { right: 20px; }
.ppw-lightbox__prev:hover,
.ppw-lightbox__next:hover { background: rgba(255,255,255,0.25); }
@media (max-width: 640px) {
  .ppw-lightbox__prev,
  .ppw-lightbox__next { width: 36px; height: 36px; }
  .ppw-lightbox__prev { left: 10px; }
  .ppw-lightbox__next { right: 10px; }
}

/* Video card inline player */
.ppw-video-card__iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}
.ppw-video-card--playing .ppw-video-card__thumb {
  padding: 0;
}
.ppw-video-card--playing .ppw-video-card__play-icon,
.ppw-video-card--playing .ppw-video-card__badge,
.ppw-video-card--playing .ppw-video-card__duration {
  display: none;
}
.ppw-video-card__stop {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 32px;
  height: 32px;
  background: rgba(0, 0, 0, 0.6);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  transition: background 0.2s;
  padding: 0;
}
.ppw-video-card__stop:hover {
  background: rgba(0, 0, 0, 0.85);
}

/* ============================================
   APPLICATIONS SHOWCASE
   ============================================ */
.ppw-apps { padding: 60px 40px; font-family: var(--ppw-font); }
.ppw-apps__header { text-align: center; margin-bottom: 40px; }
.ppw-apps__label { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 600; color: var(--ppw-orange); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 8px; }
.ppw-apps__label-dot { font-size: 8px; }
.ppw-apps__title { font-size: 32px; font-weight: 700; color: #1a1a1a; margin: 0 0 12px; }
.ppw-apps__title span { color: var(--ppw-orange); }
.ppw-apps__desc { font-size: 14px; color: #555; max-width: 500px; margin: 0 auto; line-height: 1.6; }
.ppw-apps__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.ppw-apps__card {
  position: relative; height: 320px; background: #1a1a1a; background-size: cover; background-position: center;
  border-radius: 12px; overflow: hidden; cursor: default; display: flex; flex-direction: column; justify-content: flex-end;
}
.ppw-apps__card::after {
  content: ''; position: absolute; inset: 0; background: rgba(0,0,0,0.45); transition: background 0.3s;
}
.ppw-apps__card:hover::after { background: rgba(0,0,0,0.6); }
.ppw-apps__card:hover { transform: translateY(-4px); }
.ppw-apps__card { transition: transform 0.3s ease, box-shadow 0.3s ease; }
.ppw-apps__card:hover { box-shadow: 0 12px 32px rgba(0,0,0,0.15); }
.ppw-apps__tag {
  position: absolute; top: 14px; left: 14px; z-index: 2; background: var(--ppw-orange); color: #fff;
  font-size: 11px; font-weight: 700; padding: 4px 10px; border-radius: 4px;
}
.ppw-apps__card-content { position: relative; z-index: 2; padding: 24px; }
.ppw-apps__card-icon { font-size: 24px; color: var(--ppw-orange); margin-bottom: 10px; display: block; }
.ppw-apps__card-title { font-size: 18px; font-weight: 700; color: #fff; margin: 0 0 6px; }
.ppw-apps__card-desc { font-size: 13px; color: rgba(255,255,255,0.75); margin: 0; line-height: 1.5; }
@media (max-width: 768px) { .ppw-apps__grid { grid-template-columns: repeat(2, 1fr); } .ppw-apps { padding: 40px 20px; } }
@media (max-width: 480px) { .ppw-apps__grid { grid-template-columns: 1fr; } .ppw-apps__card { height: 260px; } .ppw-apps__title { font-size: 26px; } }

/* ============================================
   SPECS TABLE
   ============================================ */
.ppw-specs { padding: 60px 40px; font-family: var(--ppw-font); }
.ppw-specs__header { text-align: center; margin-bottom: 36px; }
.ppw-specs__label { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 600; color: var(--ppw-orange); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 8px; }
.ppw-specs__label-dot { font-size: 8px; }
.ppw-specs__title { font-size: 32px; font-weight: 700; color: #1a1a1a; margin: 0 0 12px; }
.ppw-specs__title span { color: var(--ppw-orange); }
.ppw-specs__desc { font-size: 14px; color: #555; max-width: 460px; margin: 0 auto; line-height: 1.6; }
.ppw-specs__table { max-width: 900px; margin: 0 auto; overflow: hidden; border-radius: 8px; }
.ppw-specs__row {
  display: flex; align-items: center; justify-content: space-between; padding: 16px 24px;
  background: #fff; border-bottom: 1px solid #e8e0d8; transition: background 0.2s;
}
.ppw-specs__row:last-child { border-bottom: none; }
.ppw-specs__row:nth-child(even) { background: #faf8f6; }
.ppw-specs__row:hover { background: #f0ebe5; }
.ppw-specs__row-left { display: flex; align-items: center; gap: 14px; flex: 1; min-width: 0; }
.ppw-specs__icon {
  display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px;
  background: rgba(232,83,30,0.08); color: var(--ppw-orange); border-radius: 8px; flex-shrink: 0; font-size: 16px;
}
.ppw-specs__row-label { font-size: 14px; font-weight: 500; color: #555; }
.ppw-specs__row-right { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.ppw-specs__row-value { font-size: 15px; font-weight: 700; color: #1a1a1a; }
.ppw-specs__row-note { font-size: 12px; color: #999; font-style: italic; }
@media (max-width: 640px) {
  .ppw-specs { padding: 40px 16px; }
  .ppw-specs__row { flex-direction: column; align-items: flex-start; gap: 6px; padding: 14px 16px; }
  .ppw-specs__row-right { padding-left: 50px; }
  .ppw-specs__title { font-size: 26px; }
}

/* ============================================
   PRODUCT GALLERY
   ============================================ */
.ppw-pgallery { padding: 60px 40px; font-family: var(--ppw-font); }
.ppw-pgallery__inner { max-width: 1200px; margin: 0 auto; }
.ppw-pgallery__header { text-align: center; margin-bottom: 36px; }
.ppw-pgallery__label { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 600; color: var(--ppw-orange); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 8px; }
.ppw-pgallery__label-dot { font-size: 8px; }
.ppw-pgallery__title { font-size: 32px; font-weight: 700; color: #1a1a1a; margin: 0; }
.ppw-pgallery__title span { color: var(--ppw-orange); }
.ppw-pgallery__layout { display: grid; grid-template-columns: 1fr 320px; gap: 24px; align-items: start; }
.ppw-pgallery__viewer { display: flex; flex-direction: column; }
.ppw-pgallery__main {
  position: relative; height: 450px; background: #f5f0eb; border-radius: 12px; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.ppw-pgallery__main-img { max-width: 100%; max-height: 100%; object-fit: contain; transition: opacity 0.3s; }
.ppw-pgallery__placeholder { color: #999; font-size: 14px; }
.ppw-pgallery__caption {
  position: absolute; bottom: 0; left: 0; right: 0; background: rgba(0,0,0,0.6); color: #fff;
  font-size: 13px; padding: 10px 16px; text-align: center;
}
.ppw-pgallery__thumbs { display: flex; gap: 10px; margin-top: 14px; flex-wrap: wrap; }
.ppw-pgallery__thumb {
  width: 72px; height: 72px; border-radius: 8px; overflow: hidden; border: 2px solid transparent;
  cursor: pointer; background: #f0ebe5; padding: 0; transition: border-color 0.2s, transform 0.2s;
}
.ppw-pgallery__thumb img { width: 100%; height: 100%; object-fit: cover; }
.ppw-pgallery__thumb.active { border-color: var(--ppw-orange); }
.ppw-pgallery__thumb:hover { transform: scale(1.05); }
.ppw-pgallery__info {
  background: #1A1A1A; border-radius: 12px; padding: 28px 24px; color: #fff;
}
.ppw-pgallery__info-title { font-size: 18px; font-weight: 700; margin: 0 0 20px; }
.ppw-pgallery__info-rows { display: flex; flex-direction: column; gap: 0; }
.ppw-pgallery__info-row {
  display: flex; justify-content: space-between; align-items: center; padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.ppw-pgallery__info-row:last-child { border-bottom: none; }
.ppw-pgallery__info-label { font-size: 13px; color: rgba(255,255,255,0.55); }
.ppw-pgallery__info-value { font-size: 14px; font-weight: 600; color: var(--ppw-orange); text-align: right; }
@media (max-width: 900px) { .ppw-pgallery__layout { grid-template-columns: 1fr; } }
@media (max-width: 640px) {
  .ppw-pgallery { padding: 40px 16px; }
  .ppw-pgallery__main { height: 300px; }
  .ppw-pgallery__thumb { width: 56px; height: 56px; }
  .ppw-pgallery__title { font-size: 26px; }
}

/* ============================================
   USE CASES / PROJECTS
   ============================================ */
.ppw-cases { padding: 60px 40px; font-family: var(--ppw-font); }
.ppw-cases__header { text-align: center; margin-bottom: 40px; }
.ppw-cases__label { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 600; color: var(--ppw-orange); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 8px; }
.ppw-cases__label-dot { font-size: 8px; }
.ppw-cases__title { font-size: 32px; font-weight: 700; color: #1a1a1a; margin: 0 0 12px; }
.ppw-cases__title span { color: var(--ppw-orange); }
.ppw-cases__desc { font-size: 14px; color: #555; max-width: 500px; margin: 0 auto; line-height: 1.6; }
.ppw-cases__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.ppw-cases__card {
  background: #fff; border-radius: 12px; overflow: hidden; transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid #e8e0d8;
}
.ppw-cases__card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.1); }
.ppw-cases__card-img {
  height: 220px; background: #1a1a1a; background-size: cover; background-position: center;
  position: relative;
}
.ppw-cases__type {
  position: absolute; top: 14px; left: 14px; background: var(--ppw-orange); color: #fff;
  font-size: 11px; font-weight: 700; padding: 4px 10px; border-radius: 4px;
  display: inline-flex; align-items: center; gap: 5px;
}
.ppw-cases__card-body { padding: 20px; }
.ppw-cases__card-title { font-size: 17px; font-weight: 700; color: #1a1a1a; margin: 0 0 6px; }
.ppw-cases__location { display: flex; align-items: center; gap: 4px; font-size: 13px; color: #888; margin-bottom: 16px; }
.ppw-cases__stats { display: flex; gap: 0; border-top: 1px solid #f0f0f0; padding-top: 14px; }
.ppw-cases__stat { flex: 1; text-align: center; }
.ppw-cases__stat + .ppw-cases__stat { border-left: 1px solid #f0f0f0; }
.ppw-cases__stat-value { display: block; font-size: 18px; font-weight: 800; color: var(--ppw-orange); }
.ppw-cases__stat-label { display: block; font-size: 11px; color: #999; margin-top: 2px; }
.ppw-cases__quote { font-size: 13px; color: #555; font-style: italic; margin: 14px 0 0; padding: 12px 0 0; border-top: 1px solid #f0f0f0; line-height: 1.5; }
@media (max-width: 768px) { .ppw-cases__grid { grid-template-columns: 1fr; } .ppw-cases { padding: 40px 20px; } .ppw-cases__title { font-size: 26px; } }

/* ============================================
   CERTIFICATIONS & TRUST
   ============================================ */
.ppw-certs { padding: 60px 40px; font-family: var(--ppw-font); }
.ppw-certs__header { text-align: center; margin-bottom: 40px; }
.ppw-certs__label { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 600; color: var(--ppw-orange); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 8px; }
.ppw-certs__label-dot { font-size: 8px; }
.ppw-certs__title { font-size: 32px; font-weight: 700; color: #fff; margin: 0 0 12px; }
.ppw-certs__title span { color: var(--ppw-orange); }
.ppw-certs__desc { font-size: 14px; color: rgba(255,255,255,0.6); max-width: 500px; margin: 0 auto; line-height: 1.6; }
.ppw-certs__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.ppw-certs__card {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 12px;
  padding: 28px 24px; text-align: center; transition: background 0.3s, border-color 0.3s, transform 0.3s;
}
.ppw-certs__card:hover { background: rgba(255,255,255,0.08); border-color: var(--ppw-orange); transform: translateY(-4px); }
.ppw-certs__card-logo { margin-bottom: 16px; }
.ppw-certs__card-logo img { max-height: 48px; width: auto; }
.ppw-certs__card-icon { font-size: 36px; color: var(--ppw-orange); margin-bottom: 16px; display: block; }
.ppw-certs__card-icon svg { width: 1em; height: 1em; fill: currentColor; }
.ppw-certs__card-title { font-size: 16px; font-weight: 700; color: #fff; margin: 0 0 8px; }
.ppw-certs__card-desc { font-size: 13px; color: rgba(255,255,255,0.55); margin: 0; line-height: 1.5; }
@media (max-width: 768px) { .ppw-certs__grid { grid-template-columns: repeat(2, 1fr); } .ppw-certs { padding: 40px 20px; } .ppw-certs__title { font-size: 26px; } }
@media (max-width: 480px) { .ppw-certs__grid { grid-template-columns: 1fr; } }

/* ============================================
   ACCESSIBILITY
   ============================================ */

/* Focus visible indicators — all interactive elements */
.ppw-btn:focus-visible,
.ppw-nav-header__menu a:focus-visible,
.ppw-nav-header__cta-orange:focus-visible,
.ppw-nav-header__cta-dark:focus-visible,
.ppw-nav-header__cta-text:focus-visible,
.ppw-hero-slider__arrow:focus-visible,
.ppw-hero-slider__dot:focus-visible,
.ppw-hero-slide__btn:focus-visible,
.ppw-comparison__tab:focus-visible,
.ppw-why__accordion-item:focus-visible,
.ppw-why__dot:focus-visible,
.ppw-faq__question:focus-visible,
.ppw-testimonials__dot:focus-visible,
.ppw-video-card:focus-visible,
.ppw-video-card__stop:focus-visible,
.ppw-footer__link:focus-visible,
.ppw-footer__col-toggle:focus-visible,
.ppw-footer__social-btn:focus-visible,
.ppw-footer__newsletter-btn:focus-visible,
.ppw-floating-btn:focus-visible,
.ppw-cookie__btn:focus-visible,
.ppw-gallery-grid__zoom:focus-visible,
.ppw-lightbox__close:focus-visible,
.ppw-lightbox__prev:focus-visible,
.ppw-lightbox__next:focus-visible,
.ppw-cta-banner__btn:focus-visible,
.ppw-product-showcase__btn:focus-visible,
.ppw-mh__hamburger:focus-visible,
.ppw-mh__close:focus-visible,
.ppw-mh__links a:focus-visible,
.ppw-mh__cta-btn:focus-visible,
.ppw-top-bar__email:focus-visible,
.ppw-pgallery__thumb:focus-visible,
.ppw-blog-card__title a:focus-visible,
.ppw-blog-card__more:focus-visible,
.ppw-icon-list__link:focus-visible,
.ppw-image-text__btn:focus-visible,
.ppw-apps__card:focus-visible,
.ppw-cases__card:focus-visible,
.ppw-certs__card:focus-visible {
  outline: 2px solid var(--ppw-orange);
  outline-offset: 2px;
}

/* Reduced motion — disable all animations */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  [data-ppw-animate] {
    opacity: 1 !important;
  }
  .ppw-hero-slide {
    transition: none !important;
  }
  .ppw-why__detail-panel {
    transition: none !important;
  }
}

/* ============================================
   FEATURE CAROUSEL
   ============================================ */
.ppw-fcarousel { padding: 60px 40px; font-family: var(--ppw-font); }
.ppw-fcarousel__inner { max-width: 1300px; margin: 0 auto; }
.ppw-fcarousel__header { margin-bottom: 36px; }
.ppw-fcarousel__label { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 600; color: var(--ppw-orange); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 8px; }
.ppw-fcarousel__label-dot { font-size: 8px; }
.ppw-fcarousel__title { font-size: 32px; font-weight: 700; color: #1a1a1a; margin: 0; }
.ppw-fcarousel__title span { color: var(--ppw-orange); }
.ppw-fcarousel__layout { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: start; }
/* Left: Feature List */
.ppw-fcarousel__list { display: flex; flex-direction: column; gap: 0; }
.ppw-fcarousel__feat {
  display: flex; align-items: flex-start; gap: 14px; padding: 16px 18px;
  border-left: 3px solid transparent; border-radius: 0 8px 8px 0;
  cursor: pointer; transition: background 0.25s, border-color 0.25s;
}
.ppw-fcarousel__feat:hover { background: rgba(245,240,235,0.5); }
.ppw-fcarousel__feat.active { background: #f5f0eb; border-left-color: var(--ppw-orange); }
.ppw-fcarousel__feat-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; min-width: 40px; border-radius: 10px;
  background: rgba(232,83,30,0.08); color: var(--ppw-orange); font-size: 18px;
}
.ppw-fcarousel__feat-text { flex: 1; min-width: 0; }
.ppw-fcarousel__feat-title { font-size: 15px; font-weight: 700; color: #1a1a1a; margin: 0 0 4px; }
.ppw-fcarousel__feat-desc { font-size: 13px; color: #666; margin: 0; line-height: 1.5; display: none; }
.ppw-fcarousel__feat.active .ppw-fcarousel__feat-desc { display: block; }
/* Right: Slide Area */
.ppw-fcarousel__slide-area {
  position: relative; height: 420px; background: #f5f0eb; border-radius: 12px;
  overflow: hidden; display: flex; align-items: center; justify-content: center;
}
.ppw-fcarousel__slide {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.5s ease; pointer-events: none;
}
.ppw-fcarousel__slide.active { opacity: 1; pointer-events: auto; }
.ppw-fcarousel__slide img { max-width: 90%; max-height: 90%; object-fit: contain; }
.ppw-fcarousel__slide-placeholder {
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  color: #999; font-size: 14px; text-align: center; padding: 20px;
}
.ppw-fcarousel__slide-icon { font-size: 48px; color: var(--ppw-orange); opacity: 0.4; }
@media (max-width: 900px) {
  .ppw-fcarousel__layout { grid-template-columns: 1fr; }
  .ppw-fcarousel__slide-area { height: 300px; }
}
@media (max-width: 640px) {
  .ppw-fcarousel { padding: 40px 16px; }
  .ppw-fcarousel__title { font-size: 26px; }
  .ppw-fcarousel__slide-area { height: 240px; }
  .ppw-fcarousel__feat { padding: 12px 14px; }
}

/* ============================================
   MISSING TRANSITIONS FIX
   ============================================ */
.ppw-top-bar__email { transition: color 0.2s; }
.ppw-nav-header__cta-text { transition: color 0.2s; }
.ppw-blog-card__more { transition: color 0.2s, opacity 0.2s; }
.ppw-video-card__watch { transition: color 0.2s, opacity 0.2s; }
.ppw-cookie__link { transition: opacity 0.2s; }
.ppw-video-card { transition: transform 0.3s ease, box-shadow 0.3s ease; }
.ppw-apps__card { cursor: default; }
.ppw-cases__card { cursor: default; }

/* ============================================
   TOUCH TARGETS — minimum 44px on mobile
   ============================================ */
@media (max-width: 768px) {
  .ppw-hero-slider__dot { min-width: 32px; min-height: 24px; padding: 10px 0; }
  .ppw-testimonials__dot { min-width: 44px; min-height: 44px; }
  .ppw-why__dot { min-width: 44px; min-height: 44px; display: inline-flex; align-items: center; justify-content: center; }
  .ppw-video-card__stop { width: 44px; height: 44px; }
  .ppw-footer__social-btn { width: 44px; height: 44px; }
  .ppw-why__accordion-btn { width: 44px; height: 44px; min-width: 44px; }
  .ppw-before-after__handle-btn { width: 44px; height: 44px; }
}

/* ============================================
   MISSING MOBILE PADDING / FONT REDUCTIONS
   ============================================ */
@media (max-width: 768px) {
  .ppw-logo-carousel { padding: 40px 20px; }
  .ppw-product-features { padding: 40px 20px; }
  .ppw-gallery-grid { padding: 40px 20px; }
  .ppw-contact-box { padding: 40px 20px; }
}
@media (max-width: 480px) {
  .ppw-faq__title,
  .ppw-stats__title,
  .ppw-gallery-grid__title,
  .ppw-product-features__title,
  .ppw-contact-box__title,
  .ppw-before-after__title,
  .ppw-blog-grid__title,
  .ppw-logo-carousel__title { font-size: 26px; }
  .ppw-logo-carousel { padding: 30px 16px; }
  .ppw-product-features { padding: 30px 16px; }
  .ppw-gallery-grid { padding: 30px 16px; }
  .ppw-contact-box { padding: 30px 16px; }
  .ppw-cta-banner { padding: 30px 16px; }
  .ppw-testimonials { padding: 30px 16px; }
  .ppw-cases__card-img { height: 180px; }
  .ppw-video-card__thumb { height: 180px; }
}

/* ============================================
   SVG ICON COMPATIBILITY — ensures Elementor SVG icons respect font-size
   ============================================ */
.ppw-apps__card-icon svg,
.ppw-specs__icon svg,
.ppw-cases__type svg,
.ppw-fcarousel__feat-icon svg,
.ppw-fcarousel__slide-icon svg,
.ppw-btn__icon svg,
.ppw-pgallery__info svg { width: 1em; height: 1em; fill: currentColor; }

/* Screen reader only helper */
.ppw-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ─────────────────────────────────────────────
   Inline-SVG ölçeklendirme yardımcıları
   Sabit width/height attribute'lı SVG'lerin
   konteyner boyutu kontrollerine tepki vermesi için.
   ───────────────────────────────────────────── */
.ppw-top-bar__icon > svg,
.ppw-footer__logo-icon > svg,
.ppw-footer__contact-icon > svg,
.ppw-tech-details__card-icon > svg {
  width: 55%;
  height: 55%;
}
.ppw-top-bar__icon,
.ppw-footer__logo-icon,
.ppw-footer__contact-icon,
.ppw-tech-details__card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
