/** Shopify CDN: Minification failed

Line 37:0 All "@import" rules must come first

**/
/*
 * The Puppy Method — Custom Landing Page CSS
 * File: assets/puppy-method.css
 *
 * All selectors are prefixed with "pm-" to avoid collisions
 * with the Horizon theme's own styles.
 */

/* ══════════════════════════════════
   CSS VARIABLES
══════════════════════════════════ */
:root {
  --pm-background:     #FBF7F2;
  --pm-surface:        #F4EDE3;
  --pm-primary:        #C97B5C;
  --pm-primary-hover:  #B5684A;
  --pm-secondary:      #6B8E7F;
  --pm-accent:         #E8B14F;
  --pm-text-primary:   #2B2420;
  --pm-text-secondary: #6B5D54;
  --pm-text-muted:     #9C8E84;
  --pm-border:         #E5DDD1;
  --pm-success:        #6B8E7F;
  --pm-dark:           #2B2420;
  --pm-font-heading:   'Fraunces', Georgia, serif;
  --pm-font-body:      'Inter', -apple-system, system-ui, sans-serif;
}

/* ══════════════════════════════════
   GOOGLE FONTS IMPORT
══════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,wght@0,500;0,600;1,500&family=Inter:wght@400;500;600&display=swap');

/* ══════════════════════════════════
   GLOBAL RESETS (scoped to landing)
══════════════════════════════════ */
.pm-hero,
.pm-proof-bar,
.pm-feels-section,
.pm-mid-cta,
.pm-picture-section,
.pm-product-section,
.pm-testimonials-section,
.pm-social-proof,
.pm-how-section,
.pm-compare-section,
.pm-urgency-closing,
.pm-about-section,
.pm-faq-section,
.pm-contact-section,
.pm-final-cta {
  box-sizing: border-box;
}

/* ══════════════════════════════════
   LAYOUT CONTAINERS
══════════════════════════════════ */
.pm-container        { max-width: 1140px; margin: 0 auto; padding: 0 1.5rem; }
.pm-container-narrow { max-width: 720px;  margin: 0 auto; padding: 0 1.5rem; }
.pm-container-mid    { max-width: 900px;  margin: 0 auto; padding: 0 1.5rem; }

/* ══════════════════════════════════
   TYPOGRAPHY UTILITIES
══════════════════════════════════ */
.pm-overline {
  font-family: var(--pm-font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--pm-text-muted);
}
.pm-overline-primary { color: var(--pm-primary); }

/* ══════════════════════════════════
   BUTTONS
══════════════════════════════════ */
.pm-btn {
  display: inline-block;
  background: var(--pm-primary);
  color: #FBF7F2;
  font-family: var(--pm-font-body);
  font-size: 1rem;
  font-weight: 600;
  padding: 1rem 2rem;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(201,123,92,0.28);
  transition: background 200ms ease-out, transform 200ms ease-out, box-shadow 200ms ease-out;
  letter-spacing: -0.01em;
}
.pm-btn:hover {
  background: var(--pm-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,123,92,0.36);
  color: #FBF7F2;
  text-decoration: none;
}
.pm-btn:active { transform: translateY(0); }
.pm-btn-large  { font-size: 1.125rem; padding: 1.1rem 2.5rem; }
.pm-btn-full   { display: block; width: 100%; text-align: center; }

/* ══════════════════════════════════
   HERO
══════════════════════════════════ */
.pm-hero {
  background: var(--pm-background);
  padding: 6rem 0 5rem;
  text-align: center;
}
.pm-hero-intro {
  font-family: var(--pm-font-body);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--pm-text-secondary);
  font-style: italic;
  margin-bottom: 1.5rem;
}
.pm-hero h1 {
  font-family: var(--pm-font-heading);
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--pm-text-primary);
  margin-bottom: 1.5rem;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}
.pm-hero h1 em { font-style: italic; color: var(--pm-primary); }
.pm-hero-sub {
  font-size: 1.125rem;
  color: var(--pm-text-secondary);
  max-width: 560px;
  margin: 0 auto 2.5rem;
  line-height: 1.65;
}
.pm-hero-sub strong { color: var(--pm-text-primary); font-weight: 600; }
.pm-hero-cta-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}
.pm-hero-guarantee {
  font-size: 0.875rem;
  color: var(--pm-text-muted);
  font-style: italic;
}

/* ══════════════════════════════════
   PROOF BAR
══════════════════════════════════ */
.pm-proof-bar {
  background: var(--pm-surface);
  padding: 1.25rem;
  text-align: center;
  border-top: 1px solid var(--pm-border);
  border-bottom: 1px solid var(--pm-border);
}
.pm-proof-bar p {
  font-family: var(--pm-font-heading);
  font-size: 1.0625rem;
  font-weight: 500;
  font-style: italic;
  color: var(--pm-text-primary);
}
.pm-proof-bar span { color: var(--pm-primary); font-weight: 600; font-style: normal; }

/* ══════════════════════════════════
   FEELS SECTION
══════════════════════════════════ */
.pm-feels-section { background: var(--pm-background); padding: 5rem 0; }
.pm-feels-section h2 {
  font-family: var(--pm-font-heading);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 2.5rem;
  color: var(--pm-text-primary);
}
.pm-feels-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.pm-feels-list li {
  font-family: var(--pm-font-heading);
  font-style: italic;
  font-size: 1.125rem;
  color: var(--pm-text-secondary);
  padding-left: 1.25rem;
  border-left: 2px solid var(--pm-border);
  line-height: 1.5;
}
.pm-feels-resolution {
  background: var(--pm-surface);
  border-radius: 16px;
  padding: 2rem;
  border-left: 3px solid var(--pm-primary);
}
.pm-feels-resolution p {
  font-size: 1rem;
  color: var(--pm-text-secondary);
  line-height: 1.75;
}
.pm-feels-resolution p + p { margin-top: 0.75rem; }
.pm-feels-resolution strong { color: var(--pm-text-primary); font-weight: 600; }

/* ══════════════════════════════════
   MID CTA
══════════════════════════════════ */
.pm-mid-cta {
  background: var(--pm-background);
  padding: 4rem 0;
  text-align: center;
  border-top: 1px solid var(--pm-border);
  border-bottom: 1px solid var(--pm-border);
}
.pm-mid-cta p {
  font-size: 0.875rem;
  color: var(--pm-text-muted);
  margin-top: 0.75rem;
}

/* ══════════════════════════════════
   PICTURE THIS
══════════════════════════════════ */
.pm-picture-section { padding: 5rem 0; background: var(--pm-surface); }
.pm-picture-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}
.pm-picture-text h2 {
  font-family: var(--pm-font-heading);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-style: italic;
  color: var(--pm-text-primary);
  line-height: 1.5;
  margin-bottom: 2rem;
}
.pm-picture-text h2 em { font-style: normal; color: var(--pm-primary); }
.pm-picture-text p {
  font-size: 1rem;
  color: var(--pm-text-secondary);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}
.pm-picture-text p strong { color: var(--pm-text-primary); font-weight: 600; }
.pm-tagline {
  font-family: var(--pm-font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--pm-primary);
  margin-top: 0.5rem;
}
.pm-picture-img img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
  aspect-ratio: 4/5;
}

/* ══════════════════════════════════
   PRODUCT SECTION
══════════════════════════════════ */
.pm-product-section { background: var(--pm-background); padding: 5rem 0; }
.pm-product-section-header { text-align: center; margin-bottom: 4rem; }
.pm-product-section-header h2 {
  font-family: var(--pm-font-heading);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-top: 0.5rem;
  color: var(--pm-text-primary);
}
.pm-product-section-header p {
  font-size: 1rem;
  color: var(--pm-text-secondary);
  max-width: 540px;
  margin: 0.75rem auto 0;
}

.pm-component-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  max-width: 1000px;
  margin: 0 auto 5rem;
}
.pm-component-block:last-of-type { margin-bottom: 0; }
.pm-component-block.pm-img-right .pm-component-img { order: 1; }
.pm-component-block.pm-img-right .pm-component-text { order: 0; }

.pm-component-img img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
  display: block;
}
.pm-component-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--pm-primary);
  margin-bottom: 0.75rem;
  display: block;
}
.pm-component-text h3 {
  font-family: var(--pm-font-heading);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.015em;
  margin-bottom: 1.25rem;
  color: var(--pm-text-primary);
}
.pm-component-text p {
  font-size: 1rem;
  color: var(--pm-text-secondary);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}
.pm-component-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.pm-component-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.9375rem;
  color: var(--pm-text-primary);
}
.pm-component-features li::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 18px;
  min-width: 18px;
  background: var(--pm-success);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: center;
}

/* ══════════════════════════════════
   BONUS BOX
══════════════════════════════════ */
.pm-bonus-component {
  background: var(--pm-surface);
  border: 1px solid var(--pm-border);
  border-radius: 16px;
  padding: 2rem;
  max-width: 1000px;
  margin: 0 auto 3rem;
}
.pm-bonus-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pm-accent);
  margin-bottom: 1.25rem;
}
.pm-bonus-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.pm-bonus-item h4 { font-weight: 600; font-size: 0.9375rem; margin-bottom: 0.25rem; color: var(--pm-text-primary); }
.pm-bonus-item h4 span { font-weight: 400; font-size: 0.875rem; color: var(--pm-text-muted); }
.pm-bonus-item p { font-size: 0.875rem; color: var(--pm-text-secondary); line-height: 1.5; }

/* ══════════════════════════════════
   CTA BLOCK / PRICE
══════════════════════════════════ */
.pm-cta-block {
  text-align: center;
  max-width: 1000px;
  margin: 3rem auto 0;
}
.pm-price-block {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}
.pm-price-main {
  font-family: var(--pm-font-heading);
  font-size: 3.5rem;
  font-weight: 600;
  color: var(--pm-text-primary);
  line-height: 1;
}
.pm-price-old {
  font-size: 1.5rem;
  color: var(--pm-text-muted);
  text-decoration: line-through;
  margin-bottom: 0.25rem;
}
.pm-price-badge {
  background: var(--pm-accent);
  color: var(--pm-text-primary);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 0.85rem;
  border-radius: 100px;
  margin-bottom: 0.25rem;
}
.pm-cta-guarantee {
  font-size: 0.8125rem;
  color: var(--pm-text-muted);
  margin-top: 0.75rem;
  line-height: 1.6;
}
.pm-payment-methods {
  font-size: 0.8125rem;
  color: var(--pm-text-muted);
  margin-top: 0.5rem;
}

/* ══════════════════════════════════
   TESTIMONIALS
══════════════════════════════════ */
.pm-testimonials-section { background: var(--pm-surface); padding: 5rem 0; }
.pm-testimonials-section h2 {
  font-family: var(--pm-font-heading);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 600;
  text-align: center;
  margin-bottom: 3rem;
  letter-spacing: -0.01em;
  color: var(--pm-text-primary);
}
.pm-testimonial-card {
  background: var(--pm-background);
  border: 1px solid var(--pm-border);
  border-radius: 16px;
  padding: 1.75rem;
}
.pm-testimonial-quote {
  font-family: var(--pm-font-heading);
  font-style: italic;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--pm-text-primary);
  margin-bottom: 1rem;
}
.pm-testimonial-quote::before { content: '"'; color: var(--pm-primary); font-size: 1.4rem; line-height: 0; vertical-align: -0.25em; margin-right: 0.1em; }
.pm-testimonial-author { font-size: 0.8125rem; color: var(--pm-text-muted); font-weight: 500; }
.pm-testimonial-verified { font-size: 0.75rem; color: var(--pm-success); margin-top: 0.2rem; }
.pm-testimonial-photo { width: 100%; border-radius: 12px; object-fit: cover; aspect-ratio: 4/3; margin-bottom: 0.75rem; display: block; }

/* Stars */
.pm-stars { display: flex; gap: 3px; margin-bottom: 0.75rem; }
.pm-stars svg { width: 16px; height: 16px; }
.pm-star-full  { fill: var(--pm-accent); color: var(--pm-accent); }
.pm-star-empty { fill: var(--pm-border); color: var(--pm-border); }

/* ══════════════════════════════════
   CAROUSEL
══════════════════════════════════ */
.pm-carousel-outer { position: relative; }
.pm-carousel-viewport { overflow: hidden; }
.pm-carousel-track {
  display: flex;
  gap: 1.25rem;
  transition: transform 380ms ease-out;
  will-change: transform;
}
.pm-carousel-track .pm-testimonial-card {
  flex: 0 0 calc((100% - 2.5rem) / 3);
  min-width: 0;
}
.pm-carousel-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
}
.pm-carousel-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--pm-border);
  background: var(--pm-background);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 200ms ease-out;
  flex-shrink: 0;
}
.pm-carousel-btn:hover { background: var(--pm-surface); border-color: var(--pm-primary); }
.pm-carousel-btn svg { width: 18px; height: 18px; color: var(--pm-text-primary); }
.pm-carousel-dots { display: flex; gap: 7px; align-items: center; }
.pm-carousel-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--pm-border);
  cursor: pointer;
  transition: background 200ms, transform 200ms;
  border: none;
  padding: 0;
}
.pm-carousel-dot.active { background: var(--pm-primary); transform: scale(1.35); }

/* ══════════════════════════════════
   SOCIAL PROOF
══════════════════════════════════ */
.pm-social-proof { padding: 5rem 0; background: var(--pm-background); }
.pm-social-proof-h2 {
  font-family: var(--pm-font-heading);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 600;
  text-align: center;
  letter-spacing: -0.01em;
  margin-bottom: 0.5rem;
  color: var(--pm-text-primary);
}
.pm-social-proof-sub { text-align: center; color: var(--pm-text-secondary); font-size: 0.9375rem; margin-bottom: 3rem; }
.pm-fb-wrap { max-width: 1100px; margin: 0 auto; border-radius: 16px; overflow: hidden; }
.pm-fb-wrap img { width: 100%; display: block; }
.pm-fb-mobile { display: none; }

/* ══════════════════════════════════
   HOW IT WORKS
══════════════════════════════════ */
.pm-how-section { padding: 5rem 0; background: var(--pm-surface); }
.pm-how-section h2 {
  font-family: var(--pm-font-heading);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 600;
  text-align: center;
  letter-spacing: -0.01em;
  margin-top: 0.5rem;
  margin-bottom: 3.5rem;
  color: var(--pm-text-primary);
}
.pm-steps-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  max-width: 900px;
  margin: 0 auto;
}
.pm-step-num {
  font-family: var(--pm-font-heading);
  font-size: 3rem;
  font-weight: 600;
  color: var(--pm-border);
  line-height: 1;
  margin-bottom: 0.75rem;
}
.pm-step h3 {
  font-family: var(--pm-font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--pm-text-primary);
}
.pm-step p { font-size: 0.9375rem; color: var(--pm-text-secondary); line-height: 1.65; }

/* ══════════════════════════════════
   COMPARISON TABLE
══════════════════════════════════ */
.pm-compare-section { padding: 5rem 0; background: var(--pm-background); }
.pm-compare-section h2 {
  font-family: var(--pm-font-heading);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 600;
  text-align: center;
  letter-spacing: -0.01em;
  line-height: 1.25;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
  color: var(--pm-text-primary);
}
.pm-compare-section h2 em { font-style: italic; color: var(--pm-primary); }
.pm-compare-sub { text-align: center; color: var(--pm-text-secondary); font-size: 0.9375rem; margin-bottom: 3rem; }
.pm-compare-wrap { overflow-x: auto; max-width: 900px; margin: 0 auto; }
.pm-compare-table { width: 100%; border-collapse: collapse; font-size: 0.875rem; table-layout: fixed; }
.pm-compare-table colgroup col:first-child { width: 36%; }
.pm-compare-table colgroup col { width: 21.3%; }
.pm-compare-table thead tr th { padding: 10px 10px 12px; font-weight: 600; font-size: 0.875rem; border-bottom: 1px solid var(--pm-border); }
.pm-compare-table thead th:first-child { text-align: left; color: var(--pm-text-muted); }
.pm-compare-table thead th:not(:first-child) { text-align: center; color: var(--pm-text-secondary); }
.pm-th-us {
  background: #EAF6EE;
  color: #1E6B3A;
  border-bottom: 2px solid #4CAF72;
  border-radius: 8px 8px 0 0;
}
.pm-th-badge {
  display: block;
  font-size: 0.7rem;
  font-weight: 400;
  color: #2E8B50;
  margin-top: 3px;
}
.pm-compare-table tbody tr td {
  padding: 13px 10px;
  border-bottom: 1px solid var(--pm-border);
  vertical-align: middle;
  line-height: 1.4;
  color: var(--pm-text-primary);
}
.pm-compare-table tbody tr td:first-child { color: var(--pm-text-primary); font-size: 0.875rem; }
.pm-compare-table tbody tr td:not(:first-child) { text-align: center; }
.pm-td-us { background: #F5FBF7; }
.pm-compare-table tbody tr:last-child td { border-bottom: none; }
.pm-compare-table tbody tr:last-child td.pm-td-us { border-radius: 0 0 8px 8px; }
.pm-val-yes     { color: #1E6B3A; font-weight: 600; font-size: 0.875rem; }
.pm-val-no      { color: #B03A2E; font-weight: 600; font-size: 0.875rem; }
.pm-val-partial { color: #8B6914; font-weight: 600; font-size: 0.875rem; }
.pm-val-sub     { display: block; font-size: 0.75rem; font-weight: 400; color: var(--pm-text-muted); margin-top: 2px; }

/* ══════════════════════════════════
   URGENCY CLOSING
══════════════════════════════════ */
.pm-urgency-closing {
  padding: 5rem 0;
  background: var(--pm-dark);
  color: #FBF7F2;
  text-align: center;
}
.pm-urgency-closing h2 {
  font-family: var(--pm-font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}
.pm-urgency-closing h2 em { font-style: italic; color: var(--pm-accent); }
.pm-urgency-closing p {
  font-size: 1rem;
  color: rgba(251,247,242,0.7);
  max-width: 540px;
  margin: 0 auto 1.5rem;
  line-height: 1.65;
}
.pm-urgency-closing p strong { color: #FBF7F2; font-weight: 600; }
.pm-urgency-closing .pm-cta-guarantee { color: rgba(251,247,242,0.5); }

/* ══════════════════════════════════
   ABOUT BRENDA
══════════════════════════════════ */
.pm-about-section { padding: 5rem 0; background: var(--pm-background); }
.pm-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}
.pm-about-img img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
  aspect-ratio: 4/5;
}
.pm-about-intro {
  font-family: var(--pm-font-heading);
  font-size: 1.125rem;
  font-weight: 500;
  font-style: italic;
  color: var(--pm-text-secondary);
  margin-bottom: 0.5rem;
}
.pm-about-text h2 {
  font-family: var(--pm-font-heading);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
  color: var(--pm-text-primary);
}
.pm-about-text p {
  color: var(--pm-text-secondary);
  line-height: 1.75;
  margin-bottom: 1rem;
  font-size: 1rem;
}

/* ══════════════════════════════════
   FAQ
══════════════════════════════════ */
.pm-faq-section { padding: 5rem 0; background: var(--pm-surface); }
.pm-faq-section h2 {
  font-family: var(--pm-font-heading);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 600;
  text-align: center;
  margin-bottom: 3rem;
  letter-spacing: -0.01em;
  color: var(--pm-text-primary);
}
.pm-faq-list { display: flex; flex-direction: column; gap: 1rem; max-width: 720px; margin: 0 auto; }
.pm-faq-item {
  background: var(--pm-background);
  border: 1px solid var(--pm-border);
  border-radius: 14px;
  overflow: hidden;
}
.pm-faq-q {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding: 1.25rem 1.5rem;
  font-family: var(--pm-font-body); font-size: 1rem; font-weight: 600;
  color: var(--pm-text-primary); text-align: left; line-height: 1.4;
}
.pm-faq-icon { width: 20px; height: 20px; flex-shrink: 0; transition: transform 200ms ease-out; color: var(--pm-primary); }
.pm-faq-item.open .pm-faq-icon { transform: rotate(45deg); }
.pm-faq-a { display: none; padding: 0 1.5rem 1.25rem; }
.pm-faq-item.open .pm-faq-a { display: block; }
.pm-faq-a p { font-size: 0.9375rem; color: var(--pm-text-secondary); line-height: 1.65; }

/* ══════════════════════════════════
   CONTACT
══════════════════════════════════ */
.pm-contact-section { padding: 5rem 0; background: var(--pm-background); }
.pm-contact-section h2 {
  font-family: var(--pm-font-heading);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 600;
  text-align: center;
  letter-spacing: -0.01em;
  margin-bottom: 0.75rem;
  color: var(--pm-text-primary);
}
.pm-contact-section > .pm-container-narrow > p {
  text-align: center;
  color: var(--pm-text-secondary);
  margin-bottom: 3rem;
}
.pm-contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.pm-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.pm-form-field label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--pm-text-secondary);
  display: block;
  margin-bottom: 0.4rem;
}
.pm-form-field input,
.pm-form-field textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1px solid var(--pm-border);
  border-radius: 12px;
  background: var(--pm-background);
  font-family: var(--pm-font-body);
  font-size: 1rem;
  color: var(--pm-text-primary);
  outline: none;
  transition: border 200ms ease-out;
  box-sizing: border-box;
}
.pm-form-field input:focus,
.pm-form-field textarea:focus { border-color: var(--pm-primary); }

/* ══════════════════════════════════
   FINAL CTA
══════════════════════════════════ */
.pm-final-cta {
  padding: 6rem 0;
  text-align: center;
  background: var(--pm-background);
}
.pm-final-cta h2 {
  font-family: var(--pm-font-heading);
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 1rem;
  color: var(--pm-text-primary);
}
.pm-final-cta h2 em { font-style: italic; color: var(--pm-primary); }
.pm-final-cta > .pm-container-narrow > p {
  font-size: 1rem;
  color: var(--pm-text-secondary);
  margin-bottom: 2.5rem;
}

/* ══════════════════════════════════
   IMAGE PLACEHOLDER (editor empty state)
══════════════════════════════════ */
.pm-img-placeholder {
  background: var(--pm-surface);
  border: 2px dashed var(--pm-border);
  border-radius: 20px;
  aspect-ratio: 4/5;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pm-text-muted);
  font-size: 0.875rem;
  text-align: center;
  padding: 1rem;
}

/* ══════════════════════════════════
   FOOTER (inside section)
══════════════════════════════════ */
.pm-footer {
  background: var(--pm-dark);
  color: rgba(251,247,242,0.6);
  padding: 3rem 0;
  text-align: center;
}
.pm-footer-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.pm-footer-logo { margin-bottom: 1.5rem; }
.pm-footer-links {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.pm-footer-links a {
  color: rgba(251,247,242,0.55);
  font-size: 0.875rem;
  text-decoration: none;
  transition: color 200ms;
}
.pm-footer-links a:hover { color: rgba(251,247,242,0.9); }
.pm-footer-bottom {
  font-size: 0.8125rem;
  line-height: 1.6;
  max-width: 640px;
  margin: 0 auto;
}

/* ══════════════════════════════════
   SCROLL ANIMATIONS
══════════════════════════════════ */
.pm-fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 500ms ease-out, transform 500ms ease-out;
}
.pm-fade-up.pm-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════════════════════
   RESPONSIVE
══════════════════════════════════ */
@media (max-width: 900px) {
  .pm-component-block { grid-template-columns: 1fr; gap: 2rem; }
  .pm-component-block.pm-img-right .pm-component-img,
  .pm-component-block.pm-img-right .pm-component-text { order: unset; }
  .pm-component-block .pm-component-img { order: -1; }
  .pm-picture-grid { grid-template-columns: 1fr; gap: 2rem; }
  .pm-picture-grid .pm-picture-img { order: -1; }
  .pm-about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .pm-about-grid .pm-about-img { order: -1; }
  .pm-bonus-grid { grid-template-columns: 1fr; }
  .pm-form-row { grid-template-columns: 1fr; }
  .pm-carousel-track .pm-testimonial-card { flex: 0 0 calc((100% - 1.25rem) / 2); }
}

@media (max-width: 640px) {
  .pm-steps-row { grid-template-columns: 1fr; gap: 2rem; }
  .pm-hero { padding: 4rem 0 3.5rem; }
  .pm-carousel-track .pm-testimonial-card { flex: 0 0 100%; }
  .pm-compare-table { font-size: 0.8rem; }
  .pm-compare-table tbody tr td { padding: 10px 7px; }
  .pm-fb-desktop { display: none; }
  .pm-fb-mobile  { display: block; }
}
