/* Premium Landing — Design System */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Sora:wght@600;700;800&display=swap');

:root {
  --pl-accent: #FBCE05;
  --pl-accent-hover: #e8be04;
  --pl-blue: #2563EB;
  --pl-link: #111111;
  --pl-link-hover: #e8be04;
  --pl-link-underline: rgba(17, 17, 17, 0.4);
  --pl-link-underline-hover: rgba(232, 190, 4, 0.85);
  --pl-bg: #FFFFFF;
  --pl-bg-secondary: #F8F9FC;
  --pl-text: #111111;
  --pl-text-secondary: #6B7280;
  --pl-border: #E5E7EB;
  --pl-card: #FFFFFF;
  --pl-radius-card: 18px;
  --pl-radius-btn: 14px;
  --pl-radius-input: 12px;
  --pl-radius-sm: 10px;
  --pl-radius-md: 12px;
  --pl-radius-lg: 14px;
  --pl-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  --pl-shadow-hover: 0 16px 40px rgba(0, 0, 0, 0.09);
  --pl-font-heading: 'Sora', system-ui, sans-serif;
  --pl-font-body: 'Inter', system-ui, sans-serif;
  --pl-section-py: 120px;
  --pl-section-px: 15px;
  --pl-container: 1200px;
  --pl-space-1: 8px;
  --pl-space-2: 16px;
  --pl-space-3: 24px;
  --pl-space-4: 32px;
  --pl-space-5: 48px;
  --pl-gap-grid: 28px;
  --pl-block-gap: 28px;
  --pl-card-padding: 24px;
  --pl-inner-bottom: 64px;
  --pl-transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --pl-btn-glow-primary: none;
  --pl-btn-glow-primary-hover: none;
  --pl-btn-glow-neutral: none;
  --pl-btn-glow-neutral-hover: none;
  --pl-btn-glow-dark-hover: none;
  --pl-btn-shine: linear-gradient(
    115deg,
    transparent 0%,
    transparent 40%,
    rgba(255, 255, 255, 0.55) 50%,
    transparent 60%,
    transparent 100%
  );
  --pl-selection-bg: #FBCE05;
  --pl-selection-color: #111111;
}

::selection {
  background-color: var(--pl-selection-bg, #FBCE05);
  color: var(--pl-selection-color, #111111);
}

::-moz-selection {
  background-color: var(--pl-selection-bg, #FBCE05);
  color: var(--pl-selection-color, #111111);
}

*, *::before, *::after { box-sizing: border-box; }

body.premium-landing-page {
  margin: 0;
  font-family: var(--pl-font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--pl-text);
  background: var(--pl-bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

body.premium-landing-page .pl-main {
  max-width: 100%;
  overflow-x: clip;
}

body.premium-landing-page h1,
body.premium-landing-page h2,
body.premium-landing-page h3,
body.premium-landing-page h4,
body.premium-landing-page h5 {
  font-family: var(--pl-font-heading);
  font-weight: 700;
  line-height: 1.15;
  color: var(--pl-text);
  margin: 0;
}

/* Footer headings must stay light on dark background */
body.premium-landing-page .pl-footer h1,
body.premium-landing-page .pl-footer h2,
body.premium-landing-page .pl-footer h3,
body.premium-landing-page .pl-footer h4,
body.premium-landing-page .pl-footer h5,
body.premium-landing-page .pl-footer .pl-footer__col-title {
  color: #fff;
  margin-bottom: 20px;
}

body.premium-landing-page a {
  color: inherit;
  text-decoration: none;
  transition: color var(--pl-transition);
}

/* Content images: scoped in premium-inner.css (avoids breaking Modesy cart/checkout/payment UI) */

.pl-container {
  width: 100%;
  max-width: var(--pl-container);
  margin: 0 auto;
  padding-left: var(--pl-section-px);
  padding-right: var(--pl-section-px);
}

.pl-section {
  padding: var(--pl-section-py) 0;
}

.pl-section--alt {
  background: var(--pl-bg-secondary);
}

.pl-section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}

.pl-section-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--pl-text-secondary);
  margin-bottom: 16px;
}

.pl-section-label::before {
  content: '';
  width: 20px;
  height: 2px;
  background: var(--pl-accent);
  border-radius: 2px;
}

.pl-section-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.pl-section-desc {
  font-size: 1.0625rem;
  color: var(--pl-text-secondary);
  margin: 14px 0px 0px 0px;
}

/* Buttons */
.pl-btn,
.pl-footer__cta-btn,
.pl-footer__newsletter-submit {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.pl-btn::before,
.pl-footer__cta-btn::before,
.pl-footer__newsletter-submit::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: var(--pl-btn-shine);
  transform: translateX(-130%) skewX(-14deg);
  transition: transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  z-index: 1;
}

.pl-btn:hover::before,
.pl-btn:focus-visible::before,
.pl-footer__cta-btn:hover::before,
.pl-footer__cta-btn:focus-visible::before,
.pl-footer__newsletter-submit:hover::before,
.pl-footer__newsletter-submit:focus-visible::before {
  transform: translateX(130%) skewX(-14deg);
}

.pl-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 28px;
  font-family: var(--pl-font-body);
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--pl-radius-btn);
  border: none;
  cursor: pointer;
  transition:
    background-color var(--pl-transition),
    color var(--pl-transition),
    box-shadow var(--pl-transition),
    border-color var(--pl-transition);
  white-space: nowrap;
}

.pl-btn > *,
.pl-footer__cta-btn > * {
  position: relative;
  z-index: 2;
}

.pl-btn--primary {
  background-color: var(--pl-accent);
  color: var(--pl-text);
  box-shadow: none;
}

.pl-btn--primary:hover,
.pl-btn--primary:focus-visible {
  background-color: var(--pl-accent-hover);
  color: var(--pl-text);
  box-shadow: none;
}

.pl-btn--secondary {
  background-color: var(--pl-bg);
  color: var(--pl-text);
  border: 1px solid var(--pl-border);
  box-shadow: none;
}

.pl-btn--secondary:hover,
.pl-btn--secondary:focus-visible {
  background-color: var(--pl-bg);
  border-color: #d1d5db;
  color: var(--pl-text);
  box-shadow: none;
}

.pl-btn--danger {
  background-color: #fff;
  color: var(--pl-text);
  border: 1px solid var(--pl-border);
  box-shadow: none;
}

.pl-btn--danger:hover,
.pl-btn--danger:focus-visible {
  background-color: #fff;
  border-color: #fca5a5;
  color: var(--pl-text);
  box-shadow: none;
}

.pl-btn--sm {
  padding: 10px 20px;
  font-size: 14px;
}

.pl-btn--ghost {
  background-color: transparent;
  color: var(--pl-text);
  padding: 10px 16px;
  box-shadow: none;
}

.pl-btn--ghost:hover,
.pl-btn--ghost:focus-visible {
  background-color: rgba(248, 249, 252, 0.9);
  color: var(--pl-text);
  box-shadow: none;
}

.pl-btn--dark {
  background-color: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: none;
}

.pl-btn--dark::before {
  background: linear-gradient(
    115deg,
    transparent 0%,
    transparent 40%,
    rgba(255, 255, 255, 0.2) 50%,
    transparent 60%,
    transparent 100%
  );
}

.pl-btn--dark:hover,
.pl-btn--dark:focus-visible {
  background-color: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.42);
  color: #fff;
  box-shadow: none;
}

/* Badge */
.pl-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 999px;
  background: var(--pl-bg-secondary);
  color: var(--pl-text);
  border: 1px solid var(--pl-border);
}

.pl-badge--accent {
  background: rgba(251, 206, 5, 0.15);
  border-color: rgba(251, 206, 5, 0.4);
  color: var(--pl-text);
}

.pl-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--pl-accent);
}

/* Header */
.pl-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--pl-border);
  transition: border-color var(--pl-transition), box-shadow var(--pl-transition);
  display: flex;
  flex-direction: column;
}

/* Top bar (utility row) */
.pl-header__top {
  width: 100%;
  border-bottom: 1px solid var(--pl-border);
  background: var(--pl-bg-secondary);
}

body.premium-landing-page .pl-header .top-bar {
  display: block;
  width: 100%;
  border-bottom: none;
  background: transparent;
  position: relative;
}

body.premium-landing-page .pl-header .top-bar > .container {
  max-width: var(--pl-container);
  margin: 0 auto;
  padding-left: var(--pl-section-px);
  padding-right: var(--pl-section-px);
}

body.premium-landing-page .pl-header .top-bar .navbar-nav {
  padding: 10px 0;
}

body.premium-landing-page .pl-header .top-bar .nav-link,
body.premium-landing-page .pl-header .top-bar .button-link {
  font-family: var(--pl-font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--pl-text-secondary);
  background: none;
  border: none;
  cursor: pointer;
}

body.premium-landing-page .pl-header .top-bar .nav-link:hover,
body.premium-landing-page .pl-header .top-bar .button-link:hover {
  color: var(--pl-text);
}

body.premium-landing-page .pl-header .top-bar .col-left .nav-link {
  color: var(--pl-text-secondary);
}

body.premium-landing-page .pl-header .top-bar .col-right .nav-item {
  border-right: 1px solid var(--pl-border);
}

body.premium-landing-page .pl-header .top-bar .col-right .nav-item:last-child {
  border-right: none;
}

body.premium-landing-page .pl-header .top-bar .btn-reset-location {
  border-radius: 8px;
  background: var(--pl-border);
  font-size: 12px;
}

body.premium-landing-page .pl-header .top-bar .dropdown-menu {
  border: 1px solid var(--pl-border);
  border-radius: 12px;
  box-shadow: var(--pl-shadow);
  padding: 6px;
  margin-top: 8px;
}

body.premium-landing-page .pl-header .top-bar .dropdown-menu button,
body.premium-landing-page .pl-header .top-bar .dropdown-menu .dropdown-item {
  border-radius: 8px;
  font-size: 13px;
  padding: 8px 12px;
}

body.premium-landing-page .pl-header .top-bar .dropdown-menu .dropdown-item:hover,
body.premium-landing-page .pl-header .top-bar .dropdown-menu button:hover {
  background: var(--pl-bg-secondary);
}

body.premium-landing-page .pl-header .top-bar .profile-dropdown .dropdown-menu {
  min-width: 200px;
}

body.premium-landing-page .pl-header .top-bar .a-profile img {
  border: 2px solid var(--pl-border);
}

body.premium-landing-page .pl-header .top-bar .message-notification {
  background: var(--pl-accent);
  color: var(--pl-text);
}

.pl-header.is-scrolled {
  border-color: var(--pl-border);
  box-shadow: none;
}

.pl-header__inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  min-height: 72px;
  height: auto;
  padding: 12px 15px;
  gap: 12px 16px;
}

.pl-header__logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  max-width: 160px;
}

.pl-header__logo img {
  display: block;
  height: 36px;
  max-height: 36px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
}

.pl-header__nav {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1 1 auto;
  min-width: 0;
}

.pl-header__nav a {
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--pl-text-secondary);
  border-radius: 10px;
}

.pl-header__nav a:hover,
.pl-header__nav a.is-active {
  color: var(--pl-text);
  background: var(--pl-bg-secondary);
}

.pl-header__nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.pl-header__nav-dropdown-toggle {
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--pl-text-secondary);
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: none;
  background: transparent;
  cursor: pointer;
  font-family: inherit;
  line-height: 1.2;
}

.pl-header__nav-dropdown-toggle:hover,
.pl-header__nav-dropdown-toggle.is-active,
.pl-header__nav-dropdown.is-open .pl-header__nav-dropdown-toggle {
  color: var(--pl-text);
  background: var(--pl-bg-secondary);
}

.pl-nav-dropdown-chevron {
  flex-shrink: 0;
  transition: transform var(--pl-transition);
}

.pl-header__nav-dropdown.is-open .pl-nav-dropdown-chevron,
.pl-mobile-nav__dropdown.is-open .pl-nav-dropdown-chevron {
  transform: rotate(180deg);
}

.pl-header__nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  min-width: 200px;
  padding: 6px;
  background: var(--pl-bg);
  border: 1px solid var(--pl-border);
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
  z-index: 200;
  flex-direction: column;
}

.pl-header__nav-dropdown.is-open .pl-header__nav-dropdown-menu {
  display: flex;
}

.pl-header__nav-dropdown-item {
  display: block;
  padding: 10px 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--pl-text-secondary);
  white-space: nowrap;
  border-radius: 8px;
}

.pl-header__nav-dropdown-item:hover,
.pl-header__nav-dropdown-item.is-active {
  color: var(--pl-text);
  background: var(--pl-bg-secondary);
}

/* Preserve admin menu label casing (WordPress, WooCommerce, etc.) */
.pl-header__nav a,
.pl-header__nav-dropdown-toggle,
.pl-header__nav-dropdown-toggle span,
.pl-header__nav-dropdown-item,
.pl-mobile-nav__dropdown-toggle,
.pl-mobile-nav__dropdown-toggle span,
.pl-mobile-nav__dropdown-item,
.pl-mobile-nav__links > a,
body.premium-landing-page .nav-item-custom-menu .nav-link,
body.premium-landing-page .nav-item-custom-menu .dropdown-item,
body.premium-landing-page .menu-sub-item a {
  text-transform: none !important;
}

.pl-mobile-nav__dropdown {
  display: flex;
  flex-direction: column;
}

.pl-mobile-nav__dropdown-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  font-size: 15px;
  font-weight: 600;
  color: var(--pl-text);
  border: none;
  border-radius: var(--pl-radius-btn, 14px);
  background: transparent;
  cursor: pointer;
  font-family: inherit;
  text-align: left;
  transition: background var(--pl-transition), color var(--pl-transition);
}

.pl-mobile-nav__dropdown-toggle:hover,
.pl-mobile-nav__dropdown-toggle.is-active,
.pl-mobile-nav__dropdown.is-open .pl-mobile-nav__dropdown-toggle {
  color: var(--pl-text);
  background: var(--pl-bg-secondary);
}

.pl-mobile-nav__dropdown-menu {
  display: none;
  flex-direction: column;
  gap: 2px;
  margin: 2px 0 6px;
  padding: 4px 0 4px 12px;
  border-left: 2px solid rgba(251, 206, 5, 0.45);
}

.pl-mobile-nav__dropdown.is-open .pl-mobile-nav__dropdown-menu {
  display: flex;
}

.pl-mobile-nav__dropdown-item {
  display: block;
  min-height: 44px;
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.35;
  color: var(--pl-text-secondary);
  border-radius: var(--pl-radius-btn, 14px);
  transition: background var(--pl-transition), color var(--pl-transition);
}

.pl-mobile-nav__dropdown-item:hover,
.pl-mobile-nav__dropdown-item.is-active {
  color: var(--pl-text);
  background: var(--pl-bg-secondary);
}

.pl-header__actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.pl-header__cart {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  color: var(--pl-text);
  border: 1px solid var(--pl-border);
  transition: border-color var(--pl-transition), background var(--pl-transition);
}

.pl-header__cart:hover {
  background: var(--pl-bg-secondary);
  color: var(--pl-text);
}

.pl-header__cart-count {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  font-size: 11px;
  font-weight: 700;
  line-height: 18px;
  text-align: center;
  background: var(--pl-accent);
  color: var(--pl-text);
  border-radius: 999px;
}

.pl-header__menu-btn {
  display: none;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--pl-border);
  border-radius: 12px;
  background: var(--pl-bg);
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}

.pl-header__auth-icon {
  display: none;
  flex-shrink: 0;
}

.pl-header__auth-icon--avatar {
  overflow: hidden;
  padding: 0;
}

.pl-header__auth-icon--avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pl-mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1001;
  pointer-events: none;
}

.pl-mobile-nav.is-open {
  pointer-events: auto;
}

.pl-mobile-nav__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17, 17, 17, 0.45);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.28s ease;
}

.pl-mobile-nav.is-open .pl-mobile-nav__backdrop {
  opacity: 1;
}

.pl-mobile-nav__panel {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  width: min(360px, 92vw);
  max-width: 100%;
  height: 100%;
  height: 100dvh;
  background: var(--pl-bg);
  border-left: 1px solid var(--pl-border);
  box-shadow: -12px 0 40px rgba(0, 0, 0, 0.12);
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
  overflow: hidden;
}

.pl-mobile-nav.is-open .pl-mobile-nav__panel {
  transform: translateX(0);
}

.pl-mobile-nav__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-shrink: 0;
  padding:
    max(16px, env(safe-area-inset-top))
    max(16px, env(safe-area-inset-right))
    16px
    max(20px, env(safe-area-inset-left));
  border-bottom: 1px solid var(--pl-border);
}

.pl-mobile-nav__logo-link {
  display: inline-flex;
  line-height: 0;
  text-decoration: none;
}

.pl-mobile-nav__logo {
  display: block;
  width: auto;
  max-width: min(150px, 52vw);
  height: auto;
  max-height: 32px;
  object-fit: contain;
}

.pl-mobile-nav__close {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  margin: 0;
  padding: 0;
  border: 1px solid var(--pl-border);
  border-radius: 12px;
  background: var(--pl-bg);
  color: var(--pl-text);
  cursor: pointer;
  transition: background var(--pl-transition), border-color var(--pl-transition);
}

.pl-mobile-nav__close:hover {
  background: var(--pl-bg-secondary);
  border-color: rgba(17, 17, 17, 0.12);
}

.pl-mobile-nav__body {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  padding: 16px max(16px, env(safe-area-inset-right)) 12px max(20px, env(safe-area-inset-left));
}

.pl-mobile-nav__label {
  margin: 0 0 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pl-text-secondary);
}

.pl-mobile-nav__search {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}

.pl-mobile-nav__search-input {
  width: 100%;
  height: 46px;
  padding: 0 48px 0 14px;
  font-family: var(--pl-font-body);
  font-size: 15px;
  border: 1px solid var(--pl-border);
  border-radius: var(--pl-radius-input, 12px);
  background: var(--pl-bg-secondary);
  color: var(--pl-text);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.pl-mobile-nav__search-input:focus {
  outline: none;
  border-color: rgba(251, 206, 5, 0.65);
  box-shadow: 0 0 0 3px rgba(251, 206, 5, 0.18);
  background: var(--pl-bg);
}

.pl-mobile-nav__search-btn {
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: none;
  border-radius: 10px;
  background: var(--pl-accent);
  color: var(--pl-text);
  cursor: pointer;
}

.pl-mobile-nav__links {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin: 0;
}

.pl-mobile-nav__links > a {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 12px 14px;
  font-size: 15px;
  font-weight: 600;
  color: var(--pl-text);
  text-decoration: none;
  border-radius: var(--pl-radius-btn, 14px);
  transition: background var(--pl-transition), color var(--pl-transition);
}

.pl-mobile-nav__links > a:hover,
.pl-mobile-nav__links > a.is-active {
  color: var(--pl-text);
  background: var(--pl-bg-secondary);
}

.pl-mobile-nav__links > a.is-active {
  box-shadow: inset 3px 0 0 var(--pl-accent);
  padding-left: 11px;
}

.pl-mobile-nav__footer {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding:
    14px
    max(16px, env(safe-area-inset-right))
    max(16px, env(safe-area-inset-bottom))
    max(20px, env(safe-area-inset-left));
  border-top: 1px solid var(--pl-border);
  background: linear-gradient(180deg, var(--pl-bg) 0%, var(--pl-bg-secondary, #f4f4f5) 100%);
}

.pl-mobile-nav__quick {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(128px, 1fr));
  gap: 8px;
}

.pl-mobile-nav__quick-link {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 72px;
  padding: 10px 8px;
  text-decoration: none;
  color: var(--pl-text);
  background: var(--pl-bg);
  border: 1px solid var(--pl-border);
  border-radius: var(--pl-radius-btn, 14px);
  transition: border-color var(--pl-transition), background var(--pl-transition);
}

.pl-mobile-nav__quick-link:hover {
  background: var(--pl-bg-secondary);
  color: var(--pl-text);
}

.pl-mobile-nav__quick-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pl-text-secondary);
}

.pl-mobile-nav__quick-text {
  font-size: 12px;
  font-weight: 600;
}

.pl-mobile-nav__quick-badge {
  position: absolute;
  top: 8px;
  right: 10px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  font-size: 10px;
  font-weight: 700;
  line-height: 18px;
  text-align: center;
  background: var(--pl-accent);
  color: var(--pl-text);
  border-radius: 999px;
}

.pl-mobile-nav__account--guest {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.pl-mobile-nav__account-btn {
  width: 100%;
  justify-content: center;
  min-height: 44px;
}

.pl-mobile-nav__account--guest-single {
  grid-template-columns: 1fr;
}

.pl-mobile-nav__account--signed-in {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pl-mobile-nav__user {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  text-decoration: none;
  color: inherit;
  background: var(--pl-bg);
  border: 1px solid var(--pl-border);
  border-radius: var(--pl-radius-btn, 14px);
  transition: background var(--pl-transition), border-color var(--pl-transition);
}

.pl-mobile-nav__user:hover {
  background: var(--pl-bg-secondary);
  color: inherit;
}

.pl-mobile-nav__user-avatar {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  object-fit: cover;
}

.pl-mobile-nav__user-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
  flex: 1;
}

.pl-mobile-nav__user-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--pl-text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pl-mobile-nav__user-action {
  font-size: 12px;
  font-weight: 500;
  color: var(--pl-text-secondary);
}

.pl-mobile-nav__user-chevron {
  flex-shrink: 0;
  color: var(--pl-text-secondary);
}

.pl-mobile-nav__logout {
  margin: 0;
  width: 100%;
}

.pl-mobile-nav__logout-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  min-height: 44px;
  padding: 10px 14px;
  font-family: var(--pl-font-body);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--pl-text-secondary);
  background: var(--pl-bg);
  border: 1px solid var(--pl-border);
  border-radius: var(--pl-radius-btn, 14px);
  cursor: pointer;
  transition: background var(--pl-transition), border-color var(--pl-transition), color var(--pl-transition);
}

.pl-mobile-nav__logout-btn:hover {
  color: #b91c1c;
  background: rgba(220, 38, 38, 0.06);
  border-color: rgba(220, 38, 38, 0.22);
}

.pl-mobile-nav__logout-icon {
  flex-shrink: 0;
}

.pl-mobile-nav__cta {
  width: 100%;
  justify-content: center;
  min-height: 48px;
}

.pl-mobile-nav .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;
}

/* Hero */
.pl-hero {
  padding: 160px 0 100px;
  overflow: hidden;
  background: linear-gradient(180deg, var(--pl-bg-secondary) 0%, var(--pl-bg) 60%);
}

.pl-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.pl-hero__content {
  max-width: 560px;
}

.pl-hero__title {
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin-bottom: 24px;
}

.pl-hero__title span {
  position: relative;
  display: inline;
}

.pl-hero__title span::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 100%;
  height: 12px;
  background: rgba(251, 206, 5, 0.35);
  z-index: -1;
  border-radius: 2px;
}

.pl-hero__subtitle {
  font-size: 1.125rem;
  color: var(--pl-text-secondary);
  margin-bottom: 36px;
  margin-top: 14px;
  line-height: 1.7;
}

.pl-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 48px;
}

.pl-hero__stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.pl-hero__stat strong {
  display: block;
  font-family: var(--pl-font-heading);
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.pl-hero__stat span {
  font-size: 14px;
  color: var(--pl-text-secondary);
}

.pl-hero__visual {
  position: relative;
}

.pl-hero__image-wrap {
  border-radius: var(--pl-radius-card);
  overflow: hidden;
  border: 1px solid var(--pl-border);
  /* box-shadow: var(--pl-shadow);
  background: var(--pl-card); */
}

.pl-hero__image {
  display: block;
  width: 100%;
  height: auto;
  max-height: 420px;
  object-fit: cover;
}

.pl-hero__mockup {
  position: relative;
  border-radius: var(--pl-radius-card);
  background: var(--pl-card);
  border: 1px solid var(--pl-border);
  box-shadow: var(--pl-shadow);
  overflow: hidden;
}

.pl-hero__mockup-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 14px 18px;
  background: var(--pl-bg-secondary);
  border-bottom: 1px solid var(--pl-border);
}

.pl-hero__mockup-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--pl-border);
}

.pl-hero__mockup-dot:nth-child(1) { background: #ff5f57; }
.pl-hero__mockup-dot:nth-child(2) { background: #febc2e; }
.pl-hero__mockup-dot:nth-child(3) { background: #28c840; }

.pl-hero__mockup-body {
  padding: 24px;
  min-height: 320px;
  background: linear-gradient(135deg, #fafbfc 0%, #fff 100%);
}

.pl-hero__float {
  position: absolute;
  background: var(--pl-card);
  border: 1px solid var(--pl-border);
  border-radius: var(--pl-radius-lg);
  padding: 14px 18px;
  box-shadow: var(--pl-shadow);
  animation: pl-float 6s ease-in-out infinite;
}

.pl-hero__float--1 {
  top: -16px;
  right: -20px;
  animation-delay: 0s;
}

.pl-hero__float--2 {
  bottom: 40px;
  left: -28px;
  animation-delay: -2s;
}

.pl-hero__float--3 {
  bottom: -12px;
  right: 40px;
  animation-delay: -4s;
}

@keyframes pl-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* Trusted */
.pl-trusted {
  padding: 48px 0;
  border-bottom: 1px solid var(--pl-border);
}

.pl-trusted__label {
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--pl-text-secondary);
  margin-bottom: 32px;
}

.pl-trusted__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 48px 64px;
}

.pl-trusted__item {
  font-family: var(--pl-font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  color: #c4c9d4;
  letter-spacing: -0.01em;
}

.pl-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.pl-stat-card {
  text-align: center;
  padding: 32px 24px;
  background: var(--pl-card);
  border: 1px solid var(--pl-border);
  border-radius: var(--pl-radius-card);
}

.pl-stat-card__value {
  font-family: var(--pl-font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}

.pl-stat-card__value em {
  font-style: normal;
  color: var(--pl-accent);
}

.pl-stat-card__label {
  font-size: 14px;
  color: var(--pl-text-secondary);
}

/* Product grid */
.pl-products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.pl-product-card {
  background: var(--pl-card);
  border: 1px solid var(--pl-border);
  border-radius: var(--pl-radius-card);
  overflow: hidden;
}

.pl-product-card:hover {
  transform: none;
  box-shadow: none;
}

.pl-product-card__thumb {
  position: relative;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: var(--pl-bg-secondary);
}

.pl-product-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: opacity 0.35s ease;
}

.pl-product-card:hover .pl-product-card__thumb img {
  opacity: 0.92;
}

.pl-product-card__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: rgba(17, 17, 17, 0.45);
  opacity: 0;
  transition: opacity var(--pl-transition);
}

.pl-product-card:hover .pl-product-card__overlay {
  opacity: 1;
}

.pl-product-card__tag {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 5px 12px;
  font-size: 12px;
  font-weight: 600;
  background: var(--pl-accent);
  color: var(--pl-text);
  border-radius: 999px;
}

.pl-product-card__body {
  padding: 22px 24px 26px;
}

.pl-product-card__category {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--pl-text-secondary);
  margin-bottom: 8px;
}

.pl-product-card__title {
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.35;
}

.pl-product-card__title a:hover {
  color: var(--pl-text);
}

.pl-product-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.pl-product-card__price {
  font-family: var(--pl-font-heading);
  font-size: 1.125rem;
  font-weight: 700;
}

.pl-product-card__price .price {
  font-family: var(--pl-font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--pl-text);
}

.pl-product-card__price .discount-original-price {
  font-size: 14px;
  font-weight: 500;
  color: var(--pl-text-secondary);
  margin-left: 6px;
}

.pl-product-card__price .price-free {
  font-weight: 700;
  color: var(--pl-text);
}

/* Demo showcase */
.pl-demo {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
}

.pl-demo__device {
  position: relative;
  padding: 24px;
  background: var(--pl-bg-secondary);
  border-radius: var(--pl-radius-card);
  border: 1px solid var(--pl-border);
}

.pl-demo__screen {
  border-radius: var(--pl-radius-md);
  overflow: hidden;
  border: 1px solid var(--pl-border);
  box-shadow: var(--pl-shadow);
  background: var(--pl-card);
}

.pl-demo__tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.pl-demo__tab {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 999px;
  border: 1px solid var(--pl-border);
  background: var(--pl-bg);
  cursor: pointer;
  transition: all var(--pl-transition);
  color: var(--pl-text-secondary);
}

.pl-demo__tab.is-active,
.pl-demo__tab:hover {
  background: var(--pl-accent);
  border-color: var(--pl-accent);
  color: var(--pl-text);
}

.pl-demo__features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.pl-demo__feature {
  display: flex;
  gap: 16px;
  padding: 20px;
  background: var(--pl-card);
  border: 1px solid var(--pl-border);
  border-radius: var(--pl-radius-lg);
  transition: border-color var(--pl-transition);
}

.pl-demo__feature:hover {
  border-color: rgba(251, 206, 5, 0.5);
}

.pl-demo__feature-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(251, 206, 5, 0.15);
  border-radius: var(--pl-radius-md);
  color: var(--pl-text);
}

/* Why choose */
.pl-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.pl-feature-card {
  padding: 36px 28px;
  background: var(--pl-card);
  border: 1px solid var(--pl-border);
  border-radius: var(--pl-radius-card);
}

.pl-feature-card__icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(251, 206, 5, 0.12);
  border-radius: var(--pl-radius-lg);
  margin-bottom: 20px;
  font-size: 24px;
}

.pl-feature-card h3 {
  font-size: 1.125rem;
  margin-bottom: 10px;
}

.pl-feature-card p {
  font-size: 15px;
  color: var(--pl-text-secondary);
  margin: 0;
  line-height: 1.65;
}

/* Services */
.pl-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.pl-service-card {
  padding: 32px 28px;
  background: var(--pl-card);
  border: 1px solid var(--pl-border);
  border-radius: var(--pl-radius-card);
}

.pl-service-card__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  margin-bottom: 20px;
  font-family: var(--pl-font-heading);
  font-size: 1.125rem;
  font-weight: 800;
  line-height: 1;
  color: var(--pl-text);
  background: rgba(251, 206, 5, 0.22);
  border-radius: var(--pl-radius-lg, 14px);
}

.pl-service-card h3 {
  font-size: 1.125rem;
  margin-bottom: 10px;
}

.pl-service-card p {
  font-size: 14px;
  color: var(--pl-text-secondary);
  margin: 0 0 20px;
  line-height: 1.65;
}

.pl-service-card__link {
  font-size: 14px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.pl-service-card__link:hover {
  gap: 10px;
}

/* Portfolio */
.pl-portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.pl-portfolio-item {
  position: relative;
  border-radius: var(--pl-radius-card);
  overflow: hidden;
  aspect-ratio: 16/10;
  background: var(--pl-bg-secondary);
  border: 1px solid var(--pl-border);
}

.pl-portfolio-item__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.pl-portfolio-item:hover .pl-portfolio-item__img {
  transform: scale(1.05);
}

.pl-portfolio-item__content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  background: linear-gradient(0deg, rgba(17,17,17,0.75) 0%, transparent 60%);
  color: #fff;
}

.pl-portfolio-item__content h3 {
  color: #fff;
  font-size: 1.25rem;
  margin-bottom: 4px;
}

.pl-portfolio-item__content p {
  font-size: 14px;
  opacity: 0.85;
  margin: 0;
}

/* Testimonials */
.pl-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.pl-testimonial {
  padding: 32px 28px;
  background: var(--pl-card);
  border: 1px solid var(--pl-border);
  border-radius: var(--pl-radius-card);
}

.pl-testimonial__stars {
  color: var(--pl-accent);
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.pl-testimonial__text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--pl-text);
  margin: 0 0 24px;
}

.pl-testimonial__author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.pl-testimonial__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--pl-bg-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--pl-font-heading);
  font-weight: 700;
  font-size: 14px;
  color: var(--pl-text-secondary);
}

.pl-testimonial__name {
  font-weight: 600;
  font-size: 14px;
}

.pl-testimonial__role {
  font-size: 13px;
  color: var(--pl-text-secondary);
}

/* Pricing */
.pl-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.pl-pricing-card {
  padding: 40px 32px;
  background: var(--pl-card);
  border: 1px solid var(--pl-border);
  border-radius: var(--pl-radius-card);
}

.pl-pricing-card--featured {
  border-color: var(--pl-accent);
  box-shadow: var(--pl-shadow);
  position: relative;
}

.pl-pricing-card--featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 5px 16px;
  font-size: 12px;
  font-weight: 700;
  background: var(--pl-accent);
  color: var(--pl-text);
  border-radius: 999px;
}

.pl-pricing-card__name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--pl-text-secondary);
  margin-bottom: 8px;
}

.pl-pricing-card__price {
  font-family: var(--pl-font-heading);
  font-size: 2.75rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}

.pl-pricing-card__price span {
  font-size: 1rem;
  font-weight: 500;
  color: var(--pl-text-secondary);
}

.pl-pricing-card__desc {
  font-size: 14px;
  color: var(--pl-text-secondary);
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--pl-border);
}

.pl-pricing-card__list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
}

.pl-pricing-card__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  padding: 8px 0;
  color: var(--pl-text);
}

.pl-pricing-card__list li::before {
  content: '✓';
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(251, 206, 5, 0.2);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 700;
}

.pl-pricing-card .pl-btn {
  width: 100%;
}

/* FAQ */
.pl-faq {
  max-width: 720px;
  margin: 0 auto;
}

.pl-faq__item {
  border-bottom: 1px solid var(--pl-border);
}

.pl-faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0;
  font-family: var(--pl-font-heading);
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--pl-text);
}

.pl-faq__question svg {
  flex-shrink: 0;
  transition: transform var(--pl-transition);
}

.pl-faq__item.is-open .pl-faq__question svg {
  transform: rotate(180deg);
}

.pl-faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.pl-faq__item.is-open .pl-faq__answer {
  max-height: 300px;
}

.pl-faq__answer-inner {
  padding: 0 0 22px;
  font-size: 15px;
  color: var(--pl-text-secondary);
  line-height: 1.7;
}

/* CTA */
.pl-cta {
  text-align: center;
  padding: 80px 48px;
  background: var(--pl-bg-secondary);
  border: 1px solid var(--pl-border);
  border-radius: var(--pl-radius-card);
}

.pl-cta__title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  margin-bottom: 16px;
}

.pl-cta__desc {
  font-size: 1.0625rem;
  color: var(--pl-text-secondary);
  max-width: 520px;
  margin: 0 auto 32px;
  margin-top: 14px;
}

.pl-cta__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

/* Footer trust bar */
.pl-footer-trust {
  background: var(--pl-bg-secondary);
  border-top: 1px solid var(--pl-border);
  padding: 0 0 0;
  margin-top: 0;
}

.pl-footer-trust__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--pl-border);
  border-radius: var(--pl-radius-card, 18px);
  overflow: hidden;
  background: var(--pl-card);
  box-shadow: var(--pl-shadow, 0 10px 30px rgba(0, 0, 0, 0.06));
  transform: translateY(-48px);
  margin-bottom: -24px;
}

.pl-footer-trust__item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 24px 22px;
  border-right: 1px solid var(--pl-border);
}

.pl-footer-trust__text {
  min-width: 0;
}

.pl-footer-trust__item:last-child {
  border-right: none;
}

.pl-footer-trust__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(251, 206, 5, 0.15);
  color: #9a7b00;
}

.pl-footer-trust__icon svg {
  width: 22px;
  height: 22px;
}

.pl-footer-trust__item strong {
  display: block;
  font-family: var(--pl-font-heading);
  font-size: 14px;
  font-weight: 700;
  color: var(--pl-text);
  margin-bottom: 4px;
}

.pl-footer-trust__item span {
  font-size: 13px;
  line-height: 1.45;
  color: var(--pl-text-secondary);
}

/* Footer */
.pl-footer {
  background: var(--pl-text);
  color: rgba(255, 255, 255, 0.78);
  padding: 88px 0 28px;
}

.pl-footer a {
  color: rgba(255, 255, 255, 0.78);
}

.pl-footer a:hover {
  color: #fff;
}

.pl-footer__cta {
  position: relative;
  display: flex;
  align-items: stretch;
  gap: 0;
  padding: 48px 52px;
  margin-bottom: 56px;
  border-radius: var(--pl-radius-card);
  overflow: hidden;
  background: #121212;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.35);
}

.pl-footer__cta::before {
  content: '';
  position: absolute;
  z-index: 0;
  top: -45%;
  left: -8%;
  width: 55%;
  height: 120%;
  background: radial-gradient(circle at center, rgba(251, 206, 5, 0.2) 0%, transparent 68%);
  pointer-events: none;
}

.pl-footer__cta--solo .pl-footer__cta-copy {
  padding-right: 0;
}

.pl-footer__cta-copy {
  position: relative;
  z-index: 1;
  flex: 1.15;
  min-width: 0;
  padding-right: 48px;
}

.pl-footer__cta-divider {
  position: relative;
  z-index: 1;
  flex: 0 0 1px;
  align-self: center;
  width: 1px;
  height: 68%;
  min-height: 150px;
  margin: 0 4px;
  background: rgba(255, 255, 255, 0.12);
}

.pl-footer__cta-eyebrow {
  margin: 0 0 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pl-accent);
}

.pl-footer__cta-title {
  margin: 0 0 14px;
  font-family: var(--pl-font-heading);
  font-size: clamp(1.625rem, 2.8vw, 2.125rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: #fff !important;
}

.pl-footer__cta-desc {
  margin: 0 0 28px;
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.62);
  max-width: 48ch;
}

.pl-footer__cta-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.pl-footer__cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  font-family: var(--pl-font-body);
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  border-radius: var(--pl-radius-btn, 14px);
  border: none;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}

.pl-footer a.pl-footer__cta-btn--primary,
.pl-footer__cta-btn--primary {
  background: var(--pl-accent);
  color: var(--pl-text);
  box-shadow: none;
}

.pl-footer a.pl-footer__cta-btn--primary:hover,
.pl-footer a.pl-footer__cta-btn--primary:focus-visible,
.pl-footer__cta-btn--primary:hover,
.pl-footer__cta-btn--primary:focus-visible {
  background-color: var(--pl-accent-hover);
  color: var(--pl-text);
  box-shadow: none;
}

.pl-footer__cta-btn--primary span,
.pl-footer__cta-btn--primary i {
  color: var(--pl-text);
}

.pl-footer__cta-btn--primary i {
  font-size: 14px;
}

.pl-footer__cta-btn--ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.pl-footer__cta-btn--ghost::before {
  background: linear-gradient(
    115deg,
    transparent 0%,
    transparent 40%,
    rgba(255, 255, 255, 0.2) 50%,
    transparent 60%,
    transparent 100%
  );
}

.pl-footer__cta-btn--ghost:hover,
.pl-footer__cta-btn--ghost:focus-visible {
  background-color: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.42);
  color: #fff;
  box-shadow: none;
}

.pl-footer__newsletter {
  position: relative;
  z-index: 1;
  flex: 1;
  min-width: 0;
  padding-left: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.pl-footer__newsletter-title {
  margin: 0 0 10px;
  font-family: var(--pl-font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff !important;
}

.pl-footer__newsletter-desc {
  margin: 0 0 20px;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.62);
}

.pl-footer__newsletter-form {
  margin: 0;
}

.pl-footer__newsletter-field {
  display: flex;
  align-items: stretch;
  gap: 0;
  padding: 5px;
  border-radius: var(--pl-radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.35);
}

.pl-footer__newsletter-icon {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  padding-left: 14px;
  color: rgba(255, 255, 255, 0.38);
  font-size: 16px;
}

.pl-footer__newsletter-input {
  flex: 1;
  min-width: 0;
  height: 44px;
  padding: 0 12px;
  font-family: var(--pl-font-body);
  font-size: 14px;
  border: none;
  border-radius: 0;
  background: transparent;
  color: #fff;
}

.pl-footer__newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.pl-footer__newsletter-input:focus {
  outline: none;
}

.pl-footer__newsletter-field:focus-within {
  border-color: rgba(251, 206, 5, 0.45);
  box-shadow: 0 0 0 3px rgba(251, 206, 5, 0.12);
}

.pl-footer__newsletter-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-shrink: 0;
  height: 44px;
  padding: 0 18px;
  font-family: var(--pl-font-body);
  font-size: 14px;
  font-weight: 600;
  border: none;
  border-radius: 10px;
  background: var(--pl-accent);
  color: var(--pl-text);
  cursor: pointer;
  box-shadow: none;
  transition:
    background-color var(--pl-transition),
    box-shadow var(--pl-transition);
}

.pl-footer__newsletter-submit:hover,
.pl-footer__newsletter-submit:focus-visible {
  background-color: var(--pl-accent-hover);
  color: var(--pl-text);
  box-shadow: none;
}

.pl-footer__newsletter-submit i {
  font-size: 14px;
}

.pl-footer__newsletter-note {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 12px 0 0;
  font-size: 12px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.42);
}

.pl-footer__newsletter-note-icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.38);
}

.pl-footer__honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.pl-footer__grid {
  display: grid;
  grid-template-columns: minmax(220px, 1.35fr) repeat(3, minmax(0, 1fr));
  gap: 28px 32px;
  margin-bottom: 48px;
  align-items: start;
}

/* Four nav columns when Categories menu is enabled */
.pl-footer__grid:has(.pl-footer__col:nth-child(5)) {
  grid-template-columns: minmax(200px, 1.15fr) repeat(4, minmax(0, 1fr));
}

.pl-footer__brand {
  grid-column: 1;
  grid-row: 1;
}

.pl-footer__col {
  grid-column: auto;
  min-width: 0;
}

.pl-footer__logo-link {
  display: inline-flex;
  align-items: center;
  margin-bottom: 18px;
  max-width: 100%;
}

.pl-footer__logo {
  display: block;
  width: auto;
  height: auto;
  max-width: min(180px, 100%);
  max-height: 52px;
  object-fit: contain;
}

.pl-footer__logo--light {
  filter: brightness(0) invert(1);
}

.pl-footer__about {
  font-size: 14px;
  line-height: 1.7;
  margin: 0 0 22px;
  max-width: 320px;
  color: rgba(255, 255, 255, 0.65);
}

.pl-footer__about p {
  margin: 0 0 0.75em;
  color: inherit;
}

.pl-footer__about p:last-child {
  margin-bottom: 0;
}

.pl-footer__social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pl-footer__social a {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 11px;
  color: rgba(255, 255, 255, 0.9);
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
}

.pl-footer__social a i {
  display: block;
  font-size: 17px;
  line-height: 1;
}

.pl-footer__social a:hover {
  border-color: var(--pl-accent);
  background: rgba(251, 206, 5, 0.12);
  color: #fff;
  transform: translateY(-2px);
}

.pl-footer__col-title {
  font-family: var(--pl-font-heading);
  font-size: 13px;
  font-weight: 700;
  margin: 0 0 18px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff !important;
}

.pl-footer__col ul {
  box-sizing: content-box;
  list-style: none;
  padding: 0;
  margin: 0;
}

.pl-footer__col li {
  margin-bottom: 11px;
}

.pl-footer__col a {
  font-size: 14px;
  transition: color 0.2s;
}

.pl-footer__col a:hover {
  color: var(--pl-accent);
}

.pl-footer__payments {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 18px;
  padding: 22px 0;
  margin-bottom: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pl-footer__payments-label {
  flex: 0 0 auto;
  align-self: center;
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  line-height: 34px;
}

.pl-footer__payments-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.pl-footer__payments-list li {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 52px;
  height: 34px;
  padding: 4px 10px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.pl-footer__payments-list img {
  display: block;
  height: 22px;
  width: auto;
  max-width: 44px;
  object-fit: contain;
}

.pl-footer__locale {
  display: none;
  padding: 20px 0 4px;
  /*border-top: 1px solid rgba(255, 255, 255, 0.1); */
  margin-top: 8px;
}

.pl-footer__locale-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: start;
  gap: 10px;
}

.pl-footer__locale-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}

.pl-footer__locale-item:only-child {
  grid-column: 1 / -1;
  max-width: 100%;
}

.pl-footer__locale-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

.pl-footer__locale-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.92);
  font-size: 14px;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  transition: background var(--pl-transition), border-color var(--pl-transition);
}

.pl-footer__locale-btn:hover,
.pl-footer__locale-btn:focus-visible {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.28);
  color: #fff;
}

.pl-footer__locale-btn svg {
  flex-shrink: 0;
  opacity: 0.85;
}

.pl-footer__locale-value {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.pl-footer__locale-reset {
  margin: 0;
}

.pl-footer__locale-reset-btn {
  padding: 0;
  border: 0;
  background: none;
  color: var(--pl-accent);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
}

.pl-footer__locale-reset-btn:hover,
.pl-footer__locale-reset-btn:focus-visible {
  text-decoration: underline;
}

.pl-footer__locale-dropdown {
  width: 100%;
}

.pl-footer__locale-dropdown .dropdown-toggle::after {
  margin-left: auto;
}

.pl-footer__locale-menu {
  width: 100%;
  min-width: 100%;
  max-height: 240px;
  overflow-y: auto;
  border-radius: 12px;
  border: 1px solid var(--pl-border);
  box-shadow: var(--pl-shadow);
  padding: 6px;
}

.pl-footer__locale-menu .dropdown-item {
  width: 100%;
  border: 0;
  background: transparent;
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 14px;
  text-align: left;
  cursor: pointer;
}

.pl-footer__locale-menu .dropdown-item:hover,
.pl-footer__locale-menu .dropdown-item:focus,
.pl-footer__locale-menu .dropdown-item.active {
  background: var(--pl-bg-secondary);
  color: var(--pl-text);
}

.pl-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding-top: 20px;
  font-size: 13px;
}

.pl-footer__copyright {
  margin: 0;
  color: rgba(255, 255, 255, 0.55);
}

.pl-footer__legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.pl-footer__legal li {
  margin: 0;
}

.pl-footer__legal a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}

.pl-footer__legal a:hover {
  color: var(--pl-accent);
}

/* Mockup UI blocks (hero / demo) */
.pl-ui-block {
  height: 12px;
  border-radius: 6px;
  background: var(--pl-border);
  margin-bottom: 10px;
}

.pl-ui-block--accent { width: 60%; background: rgba(251, 206, 5, 0.5); }
.pl-ui-block--md { width: 80%; }
.pl-ui-block--sm { width: 45%; }
.pl-ui-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 20px;
}

.pl-ui-card-mini {
  aspect-ratio: 1;
  border-radius: var(--pl-radius-sm);
  background: var(--pl-bg-secondary);
  border: 1px solid var(--pl-border);
}

/* Animations — always visible (scroll fade optional via .is-visible) */
.pl-reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.pl-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.pl-reveal-delay-1 { transition-delay: 0.1s; }
.pl-reveal-delay-2 { transition-delay: 0.2s; }
.pl-reveal-delay-3 { transition-delay: 0.3s; }

/* Section footer link */
.pl-section-footer {
  text-align: center;
  margin-top: 48px;
}

/* Responsive */
@media (max-width: 1024px) {
  :root { --pl-section-py: 80px; }

  .pl-section-header {
    margin-bottom: 40px;
  }

  .pl-hero__grid,
  .pl-demo { grid-template-columns: 1fr; gap: 48px; }
  .pl-hero__grid > * {
    min-width: 0;
    width: 100%;
  }
  .pl-hero__content {
    max-width: none;
  }
  .pl-hero__visual { order: -1; max-width: 520px; margin: 0 auto; width: 100%; }
  .pl-hero__ctas {
    gap: 10px;
  }
  .pl-hero__stats {
    gap: 24px 32px;
  }
  .pl-demo__tabs {
    gap: 6px;
  }
  .pl-pricing-card--featured {
    transform: none;
  }
  .pl-cta {
    padding: 56px 32px;
  }
  .pl-trusted__grid {
    gap: 32px 40px;
  }
  .pl-products-grid,
  .pl-features-grid,
  .pl-services-grid,
  .pl-testimonials-grid,
  .pl-pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .pl-stats { grid-template-columns: repeat(2, 1fr); }
  .pl-footer-trust__grid {
    grid-template-columns: repeat(2, 1fr);
    transform: translateY(-36px);
    margin-bottom: -18px;
    border-radius: 16px;
  }

  .pl-footer-trust__item {
    padding: 20px 18px;
    gap: 12px;
  }

  .pl-footer-trust__item:nth-child(2) { border-right: none; }

  .pl-footer-trust__item:nth-child(1),
  .pl-footer-trust__item:nth-child(2) { border-bottom: 1px solid var(--pl-border); }

  .pl-footer {
    padding: 76px 0 24px;
  }

  .pl-footer__cta {
    flex-direction: column;
    align-items: stretch;
    padding: 32px 28px;
    margin-bottom: 44px;
    border-radius: 20px;
  }

  .pl-footer__cta::before {
    top: -28%;
    left: 50%;
    width: 92%;
    height: 72%;
    transform: translateX(-50%);
    background: radial-gradient(
      ellipse 100% 85% at 50% 0%,
      rgba(251, 206, 5, 0.18) 0%,
      rgba(251, 206, 5, 0.06) 42%,
      transparent 72%
    );
  }

  .pl-footer__cta-copy {
    padding-right: 0;
  }

  .pl-footer__cta-title {
    font-size: clamp(1.375rem, 3.5vw, 1.875rem);
  }

  .pl-footer__cta-desc {
    margin-bottom: 22px;
    font-size: 14px;
    max-width: none;
  }

  .pl-footer__cta-actions {
    gap: 10px;
  }

  .pl-footer__cta-divider {
    width: 100%;
    height: 1px;
    min-height: 0;
    margin: 4px 0 22px;
    align-self: stretch;
  }

  .pl-footer__newsletter {
    padding-left: 0;
  }

  .pl-footer__newsletter-field {
    flex-wrap: wrap;
  }

  .pl-footer__newsletter-input {
    min-width: 160px;
  }

  .pl-footer__grid,
  .pl-footer__grid:has(.pl-footer__col:nth-child(5)) {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 24px;
    margin-bottom: 36px;
  }

  .pl-footer__brand {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .pl-footer__col {
    grid-column: auto;
  }

  .pl-footer__about {
    max-width: 42ch;
  }

  .pl-footer__payments {
    padding: 20px 0;
    gap: 12px 16px;
  }

  .pl-footer__bottom {
    gap: 14px;
  }
}

@media (max-width: 1100px) {
  .pl-header__inner {
    flex-wrap: nowrap;
    width: 100%;
  }

  .pl-header__nav {
    flex: 1 1 auto;
    min-width: 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .pl-header__nav::-webkit-scrollbar {
    display: none;
  }

  .pl-header__actions {
    margin-left: auto;
  }
}

@media (max-width: 991px) {
  .pl-header__top {
    display: none;
  }

  .pl-header__search {
    display: none !important;
  }

  .pl-header__nav,
  .pl-header__actions .pl-btn:not(.pl-header__cart):not(.pl-header__auth-mobile) {
    display: none !important;
  }

  .pl-header__menu-btn {
    display: flex !important;
  }

  .pl-mobile-nav {
    display: block;
  }

  .pl-footer__locale {
    display: block;
  }

  body.premium-landing-page .pl-hero {
    padding: 128px 0 72px;
  }

  .pl-header__inner {
    min-height: 64px;
    padding: 10px 15px;
    gap: 10px;
  }

  .pl-header__logo {
    max-width: 130px;
  }

  .pl-header__logo img {
    height: 32px;
    max-height: 32px;
  }
}

@media (min-width: 992px) {
  .pl-header__auth-mobile {
    display: none !important;
  }
}

@media (max-width: 768px) {
  :root { --pl-section-py: 60px; }

  .pl-section-header {
    margin-bottom: 32px;
  }

  .pl-section-title {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }

  .pl-section-desc {
    font-size: 0.9375rem;
  }

  .pl-header__inner {
    gap: 8px;
    min-height: 56px;
    padding: 8px 15px;
  }

  .pl-header__logo {
    max-width: 110px;
  }

  .pl-header__logo img {
    height: 28px;
    max-height: 28px;
  }

  .pl-header__cart {
    width: 38px;
    height: 38px;
    border-radius: 10px;
  }

  .pl-header__actions {
    gap: 6px;
  }

  .pl-header__menu-btn {
    display: flex !important;
  }

  .pl-mobile-nav { pointer-events: none; }
  .pl-mobile-nav.is-open { pointer-events: auto; }
  body.premium-landing-page .pl-hero { padding: 104px 0 48px; }
  .pl-hero__title {
    font-size: clamp(1.75rem, 7vw, 2.5rem);
    margin-bottom: 16px;
  }
  .pl-hero__subtitle {
    font-size: 1rem;
    margin-bottom: 24px;
    margin-top: 14px;
  }
  .pl-hero__ctas {
    flex-direction: column;
    align-items: stretch;
    margin-bottom: 32px;
  }
  .pl-hero__ctas .pl-btn {
    width: 100%;
    justify-content: center;
    white-space: normal;
    text-align: center;
  }
  .pl-hero__stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px 8px;
  }
  .pl-hero__stat {
    text-align: center;
    min-width: 0;
  }
  .pl-hero__stat strong {
    font-size: 1.35rem;
  }
  .pl-hero__stat span {
    font-size: 12px;
    line-height: 1.35;
  }
  .pl-demo__tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 4px;
    margin-left: -4px;
    margin-right: -4px;
  }
  .pl-demo__tabs::-webkit-scrollbar {
    display: none;
  }
  .pl-demo__tab {
    flex-shrink: 0;
  }
  .pl-demo__feature {
    padding: 16px;
  }
  .pl-feature-card,
  .pl-service-card,
  .pl-testimonial {
    padding: 24px 20px;
  }
  .pl-faq__question {
    font-size: 0.9375rem;
    padding: 18px 0;
  }
  .pl-cta {
    padding: 40px 20px;
    border-radius: 18px;
  }
  .pl-cta__buttons {
    flex-direction: column;
    align-items: stretch;
  }
  .pl-cta__buttons .pl-btn {
    width: 100%;
  }
  .pl-stat-card {
    padding: 24px 18px;
  }
  .pl-stat-card__value {
    font-size: 2rem;
  }
  .pl-product-card__body {
    padding: 18px 16px 20px;
  }
  .pl-btn {
    padding: 12px 22px;
    font-size: 14px;
  }
  .pl-products-grid,
  .pl-features-grid,
  .pl-services-grid,
  .pl-testimonials-grid,
  .pl-pricing-grid,
  .pl-portfolio-grid { grid-template-columns: 1fr; }
  .pl-stats { grid-template-columns: 1fr; }
  .pl-footer-trust__grid {
    grid-template-columns: 1fr;
    transform: translateY(-24px);
    margin-bottom: -8px;
    border-radius: 14px;
  }

  .pl-footer-trust__item {
    padding: 16px 18px;
    gap: 12px;
    border-right: none;
    border-bottom: 1px solid var(--pl-border);
  }

  .pl-footer-trust__item:last-child { border-bottom: none; }

  .pl-footer-trust__icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
  }

  .pl-footer-trust__icon svg {
    width: 20px;
    height: 20px;
  }

  .pl-footer-trust__item strong {
    font-size: 13px;
    margin-bottom: 2px;
  }

  .pl-footer-trust__item span {
    font-size: 12px;
  }

  .pl-footer {
    padding: 52px 0 20px;
  }

  .pl-footer__cta {
    padding: 24px 18px;
    margin-bottom: 32px;
    border-radius: 16px;
  }

  .pl-footer__cta::before {
    top: -18%;
    left: 50%;
    width: 110%;
    height: 58%;
    transform: translateX(-50%);
    background: radial-gradient(
      ellipse 90% 80% at 50% 0%,
      rgba(251, 206, 5, 0.15) 0%,
      rgba(251, 206, 5, 0.05) 38%,
      transparent 68%
    );
  }

  .pl-footer__cta-eyebrow {
    margin-bottom: 8px;
    font-size: 10px;
  }

  .pl-footer__cta-title {
    font-size: 1.375rem;
    margin-bottom: 10px;
  }

  .pl-footer__cta-desc {
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.55;
  }

  .pl-footer__cta-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .pl-footer__cta-btn {
    width: 100%;
    justify-content: center;
    padding: 13px 20px;
    font-size: 14px;
    white-space: normal;
    text-align: center;
  }

  .pl-footer__cta-divider {
    margin: 0 0 20px;
  }

  .pl-footer__newsletter-title {
    font-size: 1.125rem;
    margin-bottom: 8px;
  }

  .pl-footer__newsletter-desc {
    font-size: 13px;
    margin-bottom: 14px;
  }

  .pl-footer__newsletter-field {
    flex-direction: column;
    padding: 8px;
    gap: 8px;
  }

  .pl-footer__newsletter-icon {
    display: none;
  }

  .pl-footer__newsletter-input {
    width: 100%;
    min-width: 0;
    height: 46px;
    padding: 14px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.06);
  }

  .pl-footer__newsletter-submit {
    width: 100%;
    height: 46px;
    border-radius: 10px;
  }

  .pl-footer__newsletter-note {
    margin-top: 10px;
    font-size: 11px;
  }

  .pl-footer__grid,
  .pl-footer__grid:has(.pl-footer__col:nth-child(5)) {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 24px 20px;
    margin-bottom: 28px;
  }

  .pl-footer__brand {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .pl-footer__logo {
    max-height: 44px;
  }

  .pl-footer__about {
    max-width: none;
    font-size: 13px;
    margin-bottom: 18px;
  }

  .pl-footer__col-title {
    font-size: 12px;
    margin-bottom: 14px;
  }

  .pl-footer__col li {
    margin-bottom: 9px;
  }

  .pl-footer__col a {
    font-size: 13px;
  }

  .pl-footer__payments {
    align-items: flex-start;
    padding: 16px 0;
    gap: 10px;
  }

  .pl-footer__payments-label {
    line-height: 1.3;
  }

  .pl-footer__payments-list {
    width: 100%;
    gap: 8px;
  }

  .pl-footer__payments-list li {
    min-width: 48px;
    height: 32px;
    padding: 3px 8px;
  }

  .pl-footer__payments-list img {
    height: 18px;
    max-width: 40px;
  }

  .pl-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding-top: 16px;
    font-size: 12px;
  }

  .pl-footer__copyright {
    line-height: 1.5;
  }

  .pl-footer__legal {
    gap: 6px 14px;
  }

  .pl-footer__legal a {
    font-size: 12px;
  }

  .pl-hero__float { display: none; }
  .pl-cta { padding: 48px 24px; }
}

@media (max-width: 480px) {
  .pl-footer-trust__grid {
    transform: translateY(-20px);
    margin-bottom: -4px;
  }

  .pl-footer-trust__item {
    padding: 14px 16px;
  }

  .pl-footer__grid,
  .pl-footer__grid:has(.pl-footer__col:nth-child(5)) {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 22px 16px;
  }

  .pl-footer__brand {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .pl-footer__cta {
    padding: 20px 16px;
  }

  .pl-footer__cta::before {
    top: -12%;
    width: 120%;
    height: 50%;
    background: radial-gradient(
      ellipse 85% 75% at 50% 0%,
      rgba(251, 206, 5, 0.12) 0%,
      transparent 65%
    );
  }

  .pl-footer__cta-title {
    font-size: 1.25rem;
  }

  .pl-footer__social a {
    width: 38px;
    height: 38px;
  }
}
