/* =============================================
   PetLover KZ — Elegant Pet Care Theme
   Prefix: pl-
   Palette: Lavender #EDE9FE, White, Deep Purple
   Font: DM Serif Display
   ============================================= */

/* --- Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --pl-lavender: #EDE9FE;
  --pl-lavender-light: #F5F3FF;
  --pl-lavender-mid: #DDD6FE;
  --pl-purple: #7C3AED;
  --pl-purple-dark: #5B21B6;
  --pl-purple-deep: #4C1D95;
  --pl-white: #FFFFFF;
  --pl-text: #1E1B2E;
  --pl-text-light: #6B6580;
  --pl-text-muted: #9890A8;
  --pl-border: #E5E0F0;
  --pl-success: #10B981;
  --pl-warning: #F59E0B;
  --pl-error: #EF4444;
  --pl-shadow-sm: 0 1px 3px rgba(124, 58, 237, 0.08);
  --pl-shadow-md: 0 4px 16px rgba(124, 58, 237, 0.1);
  --pl-shadow-lg: 0 8px 32px rgba(124, 58, 237, 0.12);
  --pl-shadow-xl: 0 16px 48px rgba(124, 58, 237, 0.15);
  --pl-radius-sm: 8px;
  --pl-radius-md: 12px;
  --pl-radius-lg: 20px;
  --pl-radius-xl: 28px;
  --pl-transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --pl-font: 'DM Serif Display', Georgia, serif;
  --pl-font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --pl-container: 1200px;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--pl-font-body);
  color: var(--pl-text);
  background: var(--pl-white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--pl-purple);
  text-decoration: none;
  transition: color var(--pl-transition);
}

a:hover {
  color: var(--pl-purple-dark);
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--pl-font);
  font-weight: 400;
  line-height: 1.25;
  color: var(--pl-text);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
  margin-bottom: 1rem;
  color: var(--pl-text-light);
}

/* --- Container --- */
.pl-container {
  width: 100%;
  max-width: var(--pl-container);
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* --- Header & Navigation --- */
.pl-header {
  background: var(--pl-white);
  border-bottom: 1px solid var(--pl-border);
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.95);
}

.pl-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  gap: 1rem;
}

.pl-logo {
  font-family: var(--pl-font);
  font-size: 1.5rem;
  color: var(--pl-purple);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
}

.pl-logo iconify-icon {
  font-size: 1.75rem;
  color: var(--pl-purple);
}

.pl-nav {
  display: none;
}

.pl-nav.pl-nav--open {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--pl-white);
  border-bottom: 1px solid var(--pl-border);
  padding: 1rem;
  gap: 0;
  box-shadow: var(--pl-shadow-md);
  z-index: 999;
}

.pl-nav-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.pl-nav-link {
  display: block;
  padding: 0.75rem 1rem;
  color: var(--pl-text);
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: var(--pl-radius-sm);
  transition: all var(--pl-transition);
}

.pl-nav-link:hover,
.pl-nav-link--active {
  color: var(--pl-purple);
  background: var(--pl-lavender-light);
}

.pl-burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.pl-burger span {
  width: 24px;
  height: 2px;
  background: var(--pl-text);
  border-radius: 2px;
  transition: all var(--pl-transition);
}

.pl-burger--active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.pl-burger--active span:nth-child(2) {
  opacity: 0;
}

.pl-burger--active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* --- Breadcrumbs --- */
.pl-breadcrumbs {
  padding: 0.75rem 0;
  background: var(--pl-lavender-light);
  border-bottom: 1px solid var(--pl-border);
}

.pl-breadcrumbs-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--pl-text-muted);
}

.pl-breadcrumbs-list a {
  color: var(--pl-text-muted);
}

.pl-breadcrumbs-list a:hover {
  color: var(--pl-purple);
}

.pl-breadcrumbs-sep {
  color: var(--pl-text-muted);
  font-size: 0.7rem;
}

/* --- Showcase (top banner) --- */
.pl-showcase {
  background: linear-gradient(135deg, var(--pl-lavender) 0%, var(--pl-lavender-light) 50%, var(--pl-white) 100%);
  padding: 4rem 0 3rem;
  position: relative;
  overflow: hidden;
}

.pl-showcase::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.06) 0%, transparent 70%);
  border-radius: 50%;
}

.pl-showcase-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.pl-showcase-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--pl-white);
  color: var(--pl-purple);
  padding: 0.5rem 1rem;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  box-shadow: var(--pl-shadow-sm);
}

.pl-showcase-title {
  font-size: 2.25rem;
  margin-bottom: 1rem;
  color: var(--pl-text);
  line-height: 1.2;
}

.pl-showcase-text {
  font-size: 1.1rem;
  color: var(--pl-text-light);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.pl-showcase-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* --- Buttons --- */
.pl-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-family: var(--pl-font-body);
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  border-radius: var(--pl-radius-md);
  cursor: pointer;
  transition: all var(--pl-transition);
  text-align: center;
  justify-content: center;
  line-height: 1.4;
}

.pl-btn--primary {
  background: var(--pl-purple);
  color: var(--pl-white);
  box-shadow: 0 4px 14px rgba(124, 58, 237, 0.3);
}

.pl-btn--primary:hover {
  background: var(--pl-purple-dark);
  color: var(--pl-white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(124, 58, 237, 0.4);
}

.pl-btn--outline {
  background: transparent;
  color: var(--pl-purple);
  border: 2px solid var(--pl-purple);
}

.pl-btn--outline:hover {
  background: var(--pl-purple);
  color: var(--pl-white);
  transform: translateY(-2px);
}

.pl-btn--white {
  background: var(--pl-white);
  color: var(--pl-purple);
  box-shadow: var(--pl-shadow-sm);
}

.pl-btn--white:hover {
  transform: translateY(-2px);
  box-shadow: var(--pl-shadow-md);
}

.pl-btn--lg {
  padding: 1rem 2.25rem;
  font-size: 1.05rem;
}

.pl-btn--sm {
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
}

.pl-btn--block {
  width: 100%;
}

/* --- Sections --- */
.pl-section {
  padding: 4rem 0;
}

.pl-section--lavender {
  background: var(--pl-lavender-light);
}

.pl-section--gradient {
  background: linear-gradient(180deg, var(--pl-white) 0%, var(--pl-lavender-light) 100%);
}

.pl-section--purple {
  background: linear-gradient(135deg, var(--pl-purple-deep) 0%, var(--pl-purple) 100%);
  color: var(--pl-white);
}

.pl-section--purple h2,
.pl-section--purple h3,
.pl-section--purple h4 {
  color: var(--pl-white);
}

.pl-section--purple p {
  color: rgba(255, 255, 255, 0.85);
}

.pl-section-header {
  text-align: center;
  margin-bottom: 3rem;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

.pl-section-header h2 {
  margin-bottom: 0.75rem;
}

.pl-section-header p {
  font-size: 1.05rem;
}

.pl-section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--pl-purple);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

/* --- Feature Panels --- */
.pl-panels {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.pl-panel {
  background: var(--pl-white);
  border: 1px solid var(--pl-border);
  border-radius: var(--pl-radius-lg);
  padding: 2rem;
  transition: all var(--pl-transition);
}

.pl-panel:hover {
  box-shadow: var(--pl-shadow-lg);
  transform: translateY(-4px);
  border-color: var(--pl-lavender-mid);
}

.pl-panel-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--pl-lavender);
  border-radius: var(--pl-radius-md);
  margin-bottom: 1.25rem;
  font-size: 1.5rem;
  color: var(--pl-purple);
}

.pl-panel h3 {
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
}

.pl-panel p {
  font-size: 0.95rem;
  line-height: 1.7;
}

/* --- Pricing Tiers --- */
.pl-tiers {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.pl-tier {
  background: var(--pl-white);
  border: 1px solid var(--pl-border);
  border-radius: var(--pl-radius-xl);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all var(--pl-transition);
  position: relative;
  overflow: hidden;
}

.pl-tier:hover {
  box-shadow: var(--pl-shadow-xl);
  transform: translateY(-4px);
}

.pl-tier--featured {
  border-color: var(--pl-purple);
  box-shadow: var(--pl-shadow-lg);
}

.pl-tier--featured::before {
  content: 'Популярный';
  position: absolute;
  top: 1rem;
  right: -2rem;
  background: var(--pl-purple);
  color: var(--pl-white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 2.5rem;
  transform: rotate(45deg);
  letter-spacing: 0.05em;
}

.pl-tier-name {
  font-family: var(--pl-font);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.pl-tier-price {
  font-family: var(--pl-font);
  font-size: 2.75rem;
  color: var(--pl-purple);
  margin-bottom: 0.25rem;
  line-height: 1.2;
}

.pl-tier-period {
  font-size: 0.85rem;
  color: var(--pl-text-muted);
  margin-bottom: 1.5rem;
}

.pl-tier-features {
  text-align: left;
  margin-bottom: 2rem;
}

.pl-tier-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.625rem 0;
  font-size: 0.95rem;
  color: var(--pl-text-light);
  border-bottom: 1px solid var(--pl-border);
}

.pl-tier-features li:last-child {
  border-bottom: none;
}

.pl-tier-features iconify-icon {
  color: var(--pl-success);
  font-size: 1.15rem;
  flex-shrink: 0;
}

/* --- Team Members --- */
.pl-team {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.pl-member {
  background: var(--pl-white);
  border: 1px solid var(--pl-border);
  border-radius: var(--pl-radius-lg);
  padding: 2rem;
  text-align: center;
  transition: all var(--pl-transition);
}

.pl-member:hover {
  box-shadow: var(--pl-shadow-md);
  transform: translateY(-3px);
}

.pl-member-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--pl-lavender);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 2rem;
  color: var(--pl-purple);
}

.pl-member h3 {
  font-size: 1.15rem;
  margin-bottom: 0.25rem;
}

.pl-member-role {
  font-size: 0.85rem;
  color: var(--pl-purple);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.pl-member p {
  font-size: 0.9rem;
}

/* --- Reviews / Testimonials --- */
.pl-reviews {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.pl-review {
  background: var(--pl-white);
  border: 1px solid var(--pl-border);
  border-radius: var(--pl-radius-lg);
  padding: 2rem;
  position: relative;
}

.pl-review::before {
  content: '\201C';
  font-family: var(--pl-font);
  font-size: 4rem;
  color: var(--pl-lavender-mid);
  position: absolute;
  top: 0.5rem;
  left: 1.5rem;
  line-height: 1;
}

.pl-review-text {
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 1.25rem;
  padding-top: 1rem;
  font-style: italic;
}

.pl-review-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.pl-review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--pl-lavender);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--pl-purple);
}

.pl-review-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--pl-text);
}

.pl-review-location {
  font-size: 0.8rem;
  color: var(--pl-text-muted);
}

.pl-review-stars {
  display: flex;
  gap: 0.15rem;
  color: var(--pl-warning);
  margin-bottom: 0.75rem;
  font-size: 1rem;
}

/* --- FAQ Accordion --- */
.pl-faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.pl-faq-item {
  border: 1px solid var(--pl-border);
  border-radius: var(--pl-radius-md);
  margin-bottom: 0.75rem;
  overflow: hidden;
  background: var(--pl-white);
  transition: all var(--pl-transition);
}

.pl-faq-item:hover {
  border-color: var(--pl-lavender-mid);
}

.pl-faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--pl-font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--pl-text);
  text-align: left;
  gap: 1rem;
  transition: all var(--pl-transition);
}

.pl-faq-question:hover {
  color: var(--pl-purple);
}

.pl-faq-question iconify-icon {
  font-size: 1.25rem;
  color: var(--pl-purple);
  transition: transform var(--pl-transition);
  flex-shrink: 0;
}

.pl-faq-item--open .pl-faq-question iconify-icon {
  transform: rotate(180deg);
}

.pl-faq-answer {
  display: none;
  padding: 0 1.5rem 1.25rem;
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--pl-text-light);
}

.pl-faq-item--open .pl-faq-answer {
  display: block;
}

/* --- Contact Form --- */
.pl-form-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.pl-form {
  background: var(--pl-white);
  border: 1px solid var(--pl-border);
  border-radius: var(--pl-radius-lg);
  padding: 2rem;
}

.pl-form-group {
  margin-bottom: 1.25rem;
}

.pl-form-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--pl-text);
  margin-bottom: 0.5rem;
}

.pl-form-input,
.pl-form-textarea,
.pl-form-select {
  width: 100%;
  padding: 0.875rem 1rem;
  font-family: var(--pl-font-body);
  font-size: 0.95rem;
  border: 1px solid var(--pl-border);
  border-radius: var(--pl-radius-sm);
  background: var(--pl-white);
  color: var(--pl-text);
  transition: all var(--pl-transition);
  outline: none;
}

.pl-form-input:focus,
.pl-form-textarea:focus,
.pl-form-select:focus {
  border-color: var(--pl-purple);
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
}

.pl-form-textarea {
  resize: vertical;
  min-height: 120px;
}

.pl-form-consent {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  font-size: 0.85rem;
  color: var(--pl-text-light);
}

.pl-form-consent input[type="checkbox"] {
  margin-top: 0.25rem;
  width: 18px;
  height: 18px;
  accent-color: var(--pl-purple);
  flex-shrink: 0;
}

.pl-form-secure {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.8rem;
  color: var(--pl-success);
  font-weight: 600;
}

.pl-contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.pl-contact-card {
  background: var(--pl-lavender-light);
  border-radius: var(--pl-radius-md);
  padding: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.pl-contact-card iconify-icon {
  font-size: 1.5rem;
  color: var(--pl-purple);
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.pl-contact-card h4 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.pl-contact-card p {
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* --- Stats / Counters --- */
.pl-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.pl-stat {
  text-align: center;
  padding: 1.5rem 1rem;
}

.pl-stat-number {
  font-family: var(--pl-font);
  font-size: 2.25rem;
  color: var(--pl-purple);
  line-height: 1.2;
  margin-bottom: 0.25rem;
}

.pl-stat-label {
  font-size: 0.85rem;
  color: var(--pl-text-muted);
}

/* --- Process Steps --- */
.pl-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  counter-reset: step;
}

.pl-step {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  counter-increment: step;
}

.pl-step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--pl-lavender);
  color: var(--pl-purple);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--pl-font);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.pl-step-content h3 {
  font-size: 1.15rem;
  margin-bottom: 0.375rem;
}

.pl-step-content p {
  font-size: 0.9rem;
}

/* --- Info List / Checklist --- */
.pl-checklist {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

.pl-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: var(--pl-lavender-light);
  border-radius: var(--pl-radius-sm);
  font-size: 0.95rem;
  color: var(--pl-text);
}

.pl-checklist iconify-icon {
  color: var(--pl-purple);
  font-size: 1.15rem;
  flex-shrink: 0;
  margin-top: 0.15rem;
}

/* --- CTA Band --- */
.pl-band {
  padding: 3rem 0;
  text-align: center;
}

.pl-band h2 {
  margin-bottom: 0.75rem;
}

.pl-band p {
  margin-bottom: 1.5rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* --- Legal Pages --- */
.pl-legal {
  padding: 3rem 0;
}

.pl-legal h1 {
  margin-bottom: 0.5rem;
}

.pl-legal-date {
  font-size: 0.85rem;
  color: var(--pl-text-muted);
  margin-bottom: 2rem;
}

.pl-legal h2 {
  font-size: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.pl-legal h3 {
  font-size: 1.2rem;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.pl-legal p,
.pl-legal li {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--pl-text-light);
}

.pl-legal ul {
  padding-left: 1.25rem;
  margin-bottom: 1rem;
}

.pl-legal ul li {
  position: relative;
  padding-left: 1rem;
  margin-bottom: 0.5rem;
}

.pl-legal ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--pl-purple);
}

/* --- Thank You --- */
.pl-thankyou {
  text-align: center;
  padding: 5rem 0;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pl-thankyou-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--pl-lavender);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2.5rem;
  color: var(--pl-success);
}

.pl-thankyou h1 {
  margin-bottom: 0.75rem;
}

.pl-thankyou p {
  font-size: 1.1rem;
  max-width: 500px;
  margin: 0 auto 2rem;
}

/* --- 404 --- */
.pl-error-page {
  text-align: center;
  padding: 5rem 0;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pl-error-code {
  font-family: var(--pl-font);
  font-size: 6rem;
  color: var(--pl-lavender-mid);
  line-height: 1;
  margin-bottom: 1rem;
}

.pl-error-page h1 {
  margin-bottom: 0.75rem;
}

.pl-error-page p {
  font-size: 1.05rem;
  max-width: 400px;
  margin: 0 auto 2rem;
}

/* --- Footer --- */
.pl-footer {
  background: var(--pl-text);
  color: rgba(255, 255, 255, 0.75);
  padding: 3rem 0 0;
}

.pl-footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.pl-footer h4 {
  color: var(--pl-white);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.pl-footer-about {
  font-size: 0.9rem;
  line-height: 1.7;
}

.pl-footer-about p {
  color: rgba(255, 255, 255, 0.65);
}

.pl-footer-links li {
  margin-bottom: 0.5rem;
}

.pl-footer-links a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
  transition: color var(--pl-transition);
}

.pl-footer-links a:hover {
  color: var(--pl-white);
}

.pl-footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
}

.pl-footer-contact-item iconify-icon {
  color: var(--pl-purple);
  font-size: 1.15rem;
  flex-shrink: 0;
}

.pl-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.25rem 0;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
}

.pl-footer-bottom a {
  color: rgba(255, 255, 255, 0.55);
}

.pl-footer-bottom a:hover {
  color: var(--pl-white);
}

/* --- Cookie Banner --- */
.pl-cookie {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--pl-text);
  color: var(--pl-white);
  padding: 1.25rem;
  z-index: 9999;
  transform: translateY(100%);
  transition: transform var(--pl-transition);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
}

.pl-cookie--visible {
  transform: translateY(0);
}

.pl-cookie-inner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: var(--pl-container);
  margin: 0 auto;
  align-items: flex-start;
}

.pl-cookie-text {
  font-size: 0.85rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
}

.pl-cookie-text a {
  color: var(--pl-lavender-mid);
  text-decoration: underline;
}

.pl-cookie-actions {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}

.pl-cookie-btn {
  padding: 0.5rem 1.25rem;
  border-radius: var(--pl-radius-sm);
  font-size: 0.85rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all var(--pl-transition);
}

.pl-cookie-btn--accept {
  background: var(--pl-purple);
  color: var(--pl-white);
}

.pl-cookie-btn--accept:hover {
  background: var(--pl-purple-dark);
}

.pl-cookie-btn--decline {
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.pl-cookie-btn--decline:hover {
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--pl-white);
}

/* --- Utility --- */
.pl-text-center { text-align: center; }
.pl-text-left { text-align: left; }
.pl-text-right { text-align: right; }
.pl-mt-1 { margin-top: 0.5rem; }
.pl-mt-2 { margin-top: 1rem; }
.pl-mt-3 { margin-top: 1.5rem; }
.pl-mt-4 { margin-top: 2rem; }
.pl-mb-1 { margin-bottom: 0.5rem; }
.pl-mb-2 { margin-bottom: 1rem; }
.pl-mb-3 { margin-bottom: 1.5rem; }
.pl-mb-4 { margin-bottom: 2rem; }
.pl-hidden { display: none !important; }

.hp-field { display: none !important; }

/* --- Divider --- */
.pl-divider {
  width: 60px;
  height: 3px;
  background: var(--pl-purple);
  border-radius: 2px;
  margin: 0 auto 1.5rem;
}

/* --- Two Column Layout --- */
.pl-two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

/* --- Info Box --- */
.pl-infobox {
  background: var(--pl-lavender-light);
  border-left: 4px solid var(--pl-purple);
  border-radius: 0 var(--pl-radius-sm) var(--pl-radius-sm) 0;
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.5rem;
}

.pl-infobox p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

/* --- Table --- */
.pl-table-wrap {
  overflow-x: auto;
  margin-bottom: 1.5rem;
}

.pl-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.pl-table th,
.pl-table td {
  padding: 0.875rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--pl-border);
}

.pl-table th {
  background: var(--pl-lavender-light);
  font-weight: 600;
  color: var(--pl-text);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.pl-table td {
  color: var(--pl-text-light);
}

.pl-table tr:hover td {
  background: var(--pl-lavender-light);
}

/* --- Responsive: Tablet --- */
@media (min-width: 640px) {
  .pl-container {
    padding: 0 2rem;
  }

  h1 { font-size: 2.75rem; }
  h2 { font-size: 2.25rem; }

  .pl-showcase {
    padding: 5rem 0 4rem;
  }

  .pl-showcase-title {
    font-size: 2.75rem;
  }

  .pl-panels {
    grid-template-columns: repeat(2, 1fr);
  }

  .pl-tiers {
    grid-template-columns: repeat(2, 1fr);
  }

  .pl-team {
    grid-template-columns: repeat(2, 1fr);
  }

  .pl-reviews {
    grid-template-columns: repeat(2, 1fr);
  }

  .pl-stats {
    grid-template-columns: repeat(4, 1fr);
  }

  .pl-two-col {
    grid-template-columns: 1fr 1fr;
  }

  .pl-form-wrapper {
    grid-template-columns: 1fr 1fr;
  }

  .pl-cookie-inner {
    flex-direction: row;
    align-items: center;
  }

  .pl-footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* --- Responsive: Desktop --- */
@media (min-width: 1024px) {
  .pl-container {
    padding: 0 2.5rem;
  }

  h1 { font-size: 3.25rem; }
  h2 { font-size: 2.5rem; }

  .pl-section {
    padding: 5rem 0;
  }

  .pl-nav {
    display: flex;
  }

  .pl-nav-list {
    flex-direction: row;
    gap: 0.25rem;
  }

  .pl-nav-link {
    padding: 0.5rem 0.875rem;
  }

  .pl-burger {
    display: none;
  }

  .pl-showcase {
    padding: 6rem 0 5rem;
  }

  .pl-showcase-title {
    font-size: 3.25rem;
  }

  .pl-panels {
    grid-template-columns: repeat(3, 1fr);
  }

  .pl-tiers {
    grid-template-columns: repeat(3, 1fr);
  }

  .pl-team {
    grid-template-columns: repeat(3, 1fr);
  }

  .pl-reviews {
    grid-template-columns: repeat(3, 1fr);
  }

  .pl-footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1.25fr;
  }

  .pl-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .pl-checklist {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* --- Responsive: Large --- */
@media (min-width: 1280px) {
  h1 { font-size: 3.5rem; }

  .pl-showcase-title {
    font-size: 3.5rem;
  }
}

/* --- Animations --- */
@keyframes pl-fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pl-fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.pl-animate {
  opacity: 0;
  animation: pl-fadeUp 0.6s ease forwards;
}

.pl-animate--delay-1 { animation-delay: 0.1s; }
.pl-animate--delay-2 { animation-delay: 0.2s; }
.pl-animate--delay-3 { animation-delay: 0.3s; }
.pl-animate--delay-4 { animation-delay: 0.4s; }

/* --- Scroll to Top --- */
.pl-scroll-top {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--pl-purple);
  color: var(--pl-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  border: none;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all var(--pl-transition);
  z-index: 999;
  box-shadow: var(--pl-shadow-md);
}

.pl-scroll-top--visible {
  opacity: 1;
  visibility: visible;
}

.pl-scroll-top:hover {
  background: var(--pl-purple-dark);
  transform: translateY(-3px);
}

/* --- Page specific: training lists --- */
.pl-training-block {
  background: var(--pl-white);
  border: 1px solid var(--pl-border);
  border-radius: var(--pl-radius-lg);
  padding: 2rem;
  margin-bottom: 1.5rem;
}

.pl-training-block h3 {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.pl-training-block h3 iconify-icon {
  color: var(--pl-purple);
}

.pl-training-list li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--pl-border);
  font-size: 0.95rem;
  color: var(--pl-text-light);
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.pl-training-list li:last-child {
  border-bottom: none;
}

.pl-training-list iconify-icon {
  color: var(--pl-purple);
  flex-shrink: 0;
  margin-top: 0.2rem;
}

[class*="photo"] img,[class*="avatar"] img{width:100%;height:100%;object-fit:cover;border-radius:50%}
[class*="visual"] img{width:100%;height:100%;object-fit:cover;border-radius:12px}
