/* ==========================================================================
   Praxismanager V2 – Clean, modern product page
   Matches Startseite V2 design language
   ========================================================================== */

/* ==========================================================================
   1. CUSTOM PROPERTIES
   ========================================================================== */
.pmv2 {
  --pmv2-brand: #bea564;
  --pmv2-brand-alt: #a89350;
  --pmv2-brand-dark: #8a7640;
  --pmv2-brand-light: #f7f2e6;
  --pmv2-brand-10: rgba(190,165,100,0.10);
  --pmv2-brand-20: rgba(190,165,100,0.18);

  --pmv2-dark: #2D2D2D;
  --pmv2-heading: #2D2D2D;
  --pmv2-text: #5a5a5a;
  --pmv2-muted: #8a8880;
  --pmv2-bg: #FAFAF8;
  --pmv2-white: #ffffff;
  --pmv2-border: #e9e6e0;
  --pmv2-border-light: #f0ede7;

  --pmv2-shadow-sm: 0 2px 8px rgba(0,0,0,0.05);
  --pmv2-shadow-md: 0 8px 24px rgba(0,0,0,0.07);
  --pmv2-shadow-lg: 0 20px 48px rgba(0,0,0,0.09);

  --pmv2-radius: 12px;
  --pmv2-radius-lg: 20px;
  --pmv2-radius-sm: 8px;
  --pmv2-ease: cubic-bezier(0.4, 0, 0.2, 1);

  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--pmv2-text);
  -webkit-font-smoothing: antialiased;
  background: var(--pmv2-bg);
  overflow-x: hidden;
  letter-spacing: -0.01em;
}

.pmv2 *, .pmv2 *::before, .pmv2 *::after { box-sizing: border-box; }

/* ==========================================================================
   2. BASE / RESET
   ========================================================================== */
#page-container { padding-top: 0 !important; }

#main-header, #top-header {
  position: fixed !important;
  top: 0; left: 0; right: 0;
  z-index: 9999;
  background: rgba(250,250,248,0.85) !important;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--pmv2-border-light) !important;
  box-shadow: none !important;
}

#main-header .logo_container img,
#logo img { filter: none; }
#et-top-navigation .et-menu > li > a,
.mobile_menu_bar:before { color: var(--pmv2-heading) !important; }
#et-top-navigation .et-menu > li > a:hover { color: var(--pmv2-brand) !important; opacity: 1; }

@media (min-width: 981px) {
  #et-top-navigation { padding-top: 13px !important; }
}

/* ==========================================================================
   3. LAYOUT
   ========================================================================== */
.pmv2-container { width: min(90%, 1200px); margin: 0 auto; }
.pmv2-container--narrow { width: min(90%, 800px); }

.pmv2-section { padding: 100px 0; }
.pmv2-section--white { background: var(--pmv2-white); }

.pmv2-section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}

.pmv2-section-sub {
  font-size: 17px;
  line-height: 1.7;
  color: var(--pmv2-muted);
  margin: 0;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

/* ==========================================================================
   4. TYPOGRAPHY
   ========================================================================== */
.pmv2-h2 {
  font-family: "Montserrat", "Inter", sans-serif !important;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--pmv2-heading);
  margin: 0 0 16px;
}

.pmv2-h2 em {
  font-style: normal;
  color: var(--pmv2-brand);
}

.pmv2-h3 {
  font-family: "Montserrat", "Inter", sans-serif !important;
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 600;
  line-height: 1.2;
  color: var(--pmv2-heading);
  margin: 0 0 12px;
}

.pmv2-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--pmv2-brand);
  margin-bottom: 12px;
}

/* ==========================================================================
   5. BUTTONS
   ========================================================================== */
.pmv2-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 100px;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.3s var(--pmv2-ease), box-shadow 0.3s var(--pmv2-ease), background 0.3s ease;
}

.pmv2-btn:hover { transform: translateY(-2px); }
.pmv2-btn:active { transform: translateY(0); }

.pmv2-btn--primary {
  background: var(--pmv2-brand);
  color: #fff;
  box-shadow: 0 4px 20px rgba(190,165,100,0.3);
}
.pmv2-btn--primary:hover {
  background: var(--pmv2-brand-alt);
  box-shadow: 0 8px 32px rgba(190,165,100,0.4);
  color: #fff;
}

.pmv2-btn--secondary {
  background: var(--pmv2-white);
  color: var(--pmv2-heading);
  border: 1.5px solid var(--pmv2-border);
}
.pmv2-btn--secondary:hover {
  border-color: var(--pmv2-brand);
  color: var(--pmv2-heading);
  box-shadow: var(--pmv2-shadow-sm);
}

.pmv2-btn--white {
  background: #fff;
  color: var(--pmv2-heading);
  box-shadow: var(--pmv2-shadow-sm);
}
.pmv2-btn--white:hover {
  box-shadow: var(--pmv2-shadow-md);
  color: var(--pmv2-heading);
}

.pmv2-btn-arrow {
  transition: transform 0.3s var(--pmv2-ease);
}
.pmv2-btn:hover .pmv2-btn-arrow { transform: translateX(4px); }

/* ==========================================================================
   6. SCROLL REVEAL
   ========================================================================== */
.pmv2-reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--pmv2-ease), transform 0.7s var(--pmv2-ease);
  transition-delay: calc(var(--delay, 0) * 0.1s);
}
.pmv2-reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ==========================================================================
   7. BADGE
   ========================================================================== */
.pmv2-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  background: var(--pmv2-brand-10);
  border: 1px solid var(--pmv2-brand-20);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: var(--pmv2-brand-dark);
  margin-bottom: 28px;
}

.pmv2-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--pmv2-brand);
  animation: pmv2-pulse 2s ease infinite;
}

@keyframes pmv2-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}

/* ==========================================================================
   8. HERO
   ========================================================================== */
.pmv2-hero {
  position: relative;
  padding: 160px 24px 0;
  text-align: center;
  overflow: hidden;
  background: radial-gradient(circle at 50% 30%, rgba(190,165,100,0.08), var(--pmv2-bg) 60%);
}

.pmv2-hero-inner {
  max-width: 760px;
  margin: 0 auto 56px;
}

.pmv2-hero-title {
  font-family: "Montserrat", "Inter", sans-serif !important;
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--pmv2-heading);
  margin: 0 0 20px;
}

.pmv2-hero-title em {
  font-style: normal;
  color: var(--pmv2-brand);
}

.pmv2-hero-sub {
  font-size: 18px;
  line-height: 1.7;
  color: var(--pmv2-muted);
  max-width: 560px;
  margin: 0 auto 36px;
}

.pmv2-hero-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* Hero Browser Mockup */
.pmv2-hero-mockup {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ==========================================================================
   9. BROWSER MOCKUP
   ========================================================================== */
.pmv2-browser {
  background: var(--pmv2-white);
  border-radius: var(--pmv2-radius-lg);
  overflow: hidden;
  box-shadow:
    0 4px 12px rgba(0,0,0,0.04),
    0 16px 40px rgba(0,0,0,0.06),
    0 40px 80px rgba(0,0,0,0.05);
  border: 1px solid var(--pmv2-border);
}

.pmv2-browser-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  background: #f8f8f7;
  border-bottom: 1px solid var(--pmv2-border-light);
}

.pmv2-browser-dots {
  display: flex;
  gap: 6px;
}

.pmv2-browser-dots i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--pmv2-border);
}

.pmv2-browser-url {
  flex: 1;
  text-align: center;
  font-size: 12px;
  color: var(--pmv2-muted);
  background: var(--pmv2-white);
  padding: 5px 16px;
  border-radius: 6px;
  border: 1px solid var(--pmv2-border-light);
  margin-right: 60px;
}

.pmv2-browser img {
  display: block;
  width: 100%;
  height: auto;
}

.pmv2-browser--sm {
  border-radius: var(--pmv2-radius);
  box-shadow: var(--pmv2-shadow-md);
}

.pmv2-browser--sm .pmv2-browser-bar {
  padding: 10px 16px;
}

.pmv2-browser--sm .pmv2-browser-dots i {
  width: 8px;
  height: 8px;
}

/* ==========================================================================
   10. TRUST STRIP
   ========================================================================== */
.pmv2-trust {
  padding: 56px 0 80px;
  background: transparent;
}

.pmv2-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.pmv2-trust-num {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--pmv2-heading);
  letter-spacing: -0.02em;
}

.pmv2-trust-label {
  display: block;
  font-size: 13px;
  color: var(--pmv2-muted);
  margin-top: 4px;
}

.pmv2-trust + .pmv2-section--white {
  padding-top: 100px;
}

/* ==========================================================================
   11. FEATURE SHOWCASE (Tabs)
   ========================================================================== */
.pmv2-showcase {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  align-items: start;
}

.pmv2-showcase-tabs {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.pmv2-tab {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  border: none;
  border-radius: var(--pmv2-radius);
  background: transparent;
  cursor: pointer;
  text-align: left;
  transition: background 0.3s ease, box-shadow 0.3s ease;
  border: 1.5px solid transparent;
}

.pmv2-tab:hover {
  background: var(--pmv2-bg);
}

.pmv2-tab.is-active {
  background: var(--pmv2-white);
  border-color: var(--pmv2-border);
  box-shadow: var(--pmv2-shadow-sm);
}

.pmv2-tab-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  color: var(--pmv2-muted);
  transition: color 0.3s ease;
}

.pmv2-tab.is-active .pmv2-tab-icon { color: var(--pmv2-brand); }

.pmv2-tab-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.pmv2-tab-text strong {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--pmv2-heading);
}

.pmv2-tab-text small {
  font-size: 12px;
  color: var(--pmv2-muted);
  line-height: 1.3;
}

/* Panels */
.pmv2-showcase-display {
  position: relative;
  min-height: 420px;
}

.pmv2-showcase-panel {
  display: none;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: center;
  animation: pmv2-fade-in 0.4s var(--pmv2-ease);
}

.pmv2-showcase-panel.is-active {
  display: grid;
}

@keyframes pmv2-fade-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.pmv2-showcase-content h3 {
  font-family: "Montserrat", "Inter", sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--pmv2-heading);
  margin: 0 0 12px;
}

.pmv2-showcase-content p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--pmv2-text);
  margin: 0 0 20px;
}

/* Check list */
.pmv2-check-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pmv2-check-list li {
  position: relative;
  padding-left: 28px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--pmv2-text);
}

.pmv2-check-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--pmv2-brand-10);
  border: 1px solid var(--pmv2-brand-20);
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%23bea564' stroke-width='3' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px;
}

/* ==========================================================================
   12. MODULE GRID
   ========================================================================== */
.pmv2-modules {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.pmv2-mod {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px;
  background: var(--pmv2-white);
  border: 1px solid var(--pmv2-border);
  border-radius: var(--pmv2-radius);
  transition: transform 0.3s var(--pmv2-ease), box-shadow 0.3s var(--pmv2-ease), border-color 0.3s ease;
}

.pmv2-mod:hover {
  transform: translateY(-3px);
  box-shadow: var(--pmv2-shadow-md);
  border-color: var(--pmv2-brand-20);
}

.pmv2-mod-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--pmv2-brand-10);
  border-radius: 10px;
}

.pmv2-mod-icon svg {
  width: 20px;
  height: 20px;
  stroke-linecap: round;
  stroke-linejoin: round;
  color: var(--pmv2-brand);
}

.pmv2-mod span {
  font-size: 14px;
  font-weight: 600;
  color: var(--pmv2-heading);
}

/* ==========================================================================
   13. ECOSYSTEM GRID
   ========================================================================== */
.pmv2-eco-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.pmv2-eco-card {
  padding: 32px;
  background: var(--pmv2-bg);
  border: 1px solid var(--pmv2-border);
  border-radius: var(--pmv2-radius-lg);
  transition: transform 0.3s var(--pmv2-ease), box-shadow 0.3s var(--pmv2-ease);
}

.pmv2-eco-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--pmv2-shadow-md);
}

.pmv2-eco-card-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--pmv2-brand-10);
  border-radius: 12px;
  margin-bottom: 20px;
}

.pmv2-eco-card-icon svg {
  width: 24px;
  height: 24px;
  stroke-linecap: round;
  stroke-linejoin: round;
  color: var(--pmv2-brand);
}

.pmv2-eco-card h3 {
  font-family: "Montserrat", "Inter", sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--pmv2-heading);
  margin: 0 0 8px;
}

.pmv2-eco-card p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--pmv2-muted);
  margin: 0 0 16px;
}

.pmv2-eco-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pmv2-eco-tags span {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 100px;
  background: var(--pmv2-white);
  border: 1px solid var(--pmv2-border);
  font-size: 12px;
  font-weight: 600;
  color: var(--pmv2-text);
}

/* ==========================================================================
   14. SPLIT (Mobile section)
   ========================================================================== */
.pmv2-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.pmv2-split-text .pmv2-h2 { text-align: left; }

.pmv2-split-media {
  display: flex;
  justify-content: center;
}

.pmv2-phone {
  width: 240px;
  padding: 12px;
  background: var(--pmv2-heading);
  border-radius: 32px;
  box-shadow: var(--pmv2-shadow-lg);
}

.pmv2-phone img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 22px;
}

/* ==========================================================================
   15. VIDEO
   ========================================================================== */
.pmv2-video-wrap {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--pmv2-radius-lg);
  overflow: hidden;
  background: var(--pmv2-heading);
  box-shadow: var(--pmv2-shadow-lg);
  cursor: pointer;
}

.pmv2-video-poster {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.4s ease;
}

.pmv2-video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: none;
  background: none;
  cursor: pointer;
  transition: transform 0.3s var(--pmv2-ease);
  z-index: 2;
}

.pmv2-video-play:hover { transform: translate(-50%, -50%) scale(1.1); }

.pmv2-video-iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.pmv2-video-wrap.is-playing .pmv2-video-poster,
.pmv2-video-wrap.is-playing .pmv2-video-play { opacity: 0; pointer-events: none; }
.pmv2-video-wrap.is-playing .pmv2-video-iframe { opacity: 1; pointer-events: auto; }

/* ==========================================================================
   16. CTA
   ========================================================================== */
.pmv2-cta {
  padding: 100px 0;
  background: var(--pmv2-heading);
}

.pmv2-cta-inner {
  text-align: center;
}

.pmv2-cta .pmv2-h2 {
  color: #fff;
}

/* ==========================================================================
   17. CONTACT
   ========================================================================== */
.pmv2-contact {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 64px;
  align-items: start;
}

.pmv2-contact-photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 16px;
}

.pmv2-contact-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pmv2-contact-name {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--pmv2-heading);
  margin: 0 0 4px;
}

.pmv2-contact-role {
  font-size: 14px;
  color: var(--pmv2-brand);
  font-weight: 500;
  margin: 0 0 16px;
}

.pmv2-contact-text {
  font-size: 14px;
  line-height: 1.65;
  color: var(--pmv2-muted);
  margin: 0 0 20px;
}

.pmv2-contact-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pmv2-contact-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--pmv2-text);
  text-decoration: none;
  transition: color 0.2s ease;
}

.pmv2-contact-links a:hover { color: var(--pmv2-brand); }

.pmv2-contact-links svg {
  flex-shrink: 0;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* CF7 Form styling */
.pmv2-cf7-wrap .wpcf7-form-control-wrap { display: block; margin-bottom: 16px; }

.pmv2-cf7 p { margin: 0; }
.pmv2-cf7 p br { display: none; }

.pmv2-cf7 input[type="text"],
.pmv2-cf7 input[type="email"],
.pmv2-cf7 input[type="tel"],
.pmv2-cf7 textarea,
.pmv2-cf7 select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--pmv2-border);
  border-radius: var(--pmv2-radius-sm);
  background: var(--pmv2-white);
  font-family: "Inter", sans-serif;
  font-size: 14px;
  color: var(--pmv2-heading);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
}

.pmv2-cf7 input:focus,
.pmv2-cf7 textarea:focus,
.pmv2-cf7 select:focus {
  border-color: var(--pmv2-brand);
  box-shadow: 0 0 0 3px var(--pmv2-brand-10);
}

.pmv2-cf7 textarea { min-height: 120px; resize: vertical; }

.pmv2-cf7 input[type="submit"] {
  display: inline-flex;
  align-items: center;
  padding: 14px 36px;
  background: var(--pmv2-brand);
  color: #fff;
  border: none;
  border-radius: 100px;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.pmv2-cf7 input[type="submit"]:hover {
  background: var(--pmv2-brand-alt);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(190,165,100,0.3);
}

.pmv2-cf7 label {
  font-size: 14px;
  font-weight: 500;
  color: var(--pmv2-heading);
  margin-bottom: 6px;
  display: block;
}

/* ==========================================================================
   18. RESPONSIVE
   ========================================================================== */
@media (max-width: 1024px) {
  .pmv2-showcase {
    grid-template-columns: 1fr;
  }

  .pmv2-showcase-tabs {
    flex-direction: row;
    overflow-x: auto;
    gap: 8px;
    padding-bottom: 4px;
    -webkit-overflow-scrolling: touch;
  }

  .pmv2-tab {
    white-space: nowrap;
    min-width: max-content;
    padding: 12px 16px;
  }

  .pmv2-tab-text small { display: none; }

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

@media (max-width: 768px) {
  .pmv2-section { padding: 64px 0; }

  .pmv2-hero {
    padding: 120px 20px 0;
  }

  .pmv2-hero-title {
    font-size: clamp(28px, 7vw, 40px);
  }

  .pmv2-hero-sub {
    font-size: 16px;
  }

  .pmv2-hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .pmv2-trust-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .pmv2-showcase-panel {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .pmv2-showcase-panel.is-active {
    display: flex;
    flex-direction: column-reverse;
  }

  .pmv2-showcase-display {
    min-height: auto;
  }

  .pmv2-modules {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .pmv2-mod {
    padding: 16px;
  }

  .pmv2-eco-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .pmv2-split {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .pmv2-split-text .pmv2-h2 { text-align: center; }
  .pmv2-split-text .pmv2-check-list { align-items: center; }

  .pmv2-contact {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .pmv2-contact-info { text-align: center; }
  .pmv2-contact-photo { margin: 0 auto 16px; }
  .pmv2-contact-links { align-items: center; }

  .pmv2-h2 {
    font-size: clamp(24px, 6vw, 34px);
  }

  .pmv2-section-header {
    margin-bottom: 40px;
  }
}

@media (max-width: 480px) {
  .pmv2-hero { padding: 110px 16px 0; }

  .pmv2-trust-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .pmv2-trust-num { font-size: 22px; }

  .pmv2-modules { grid-template-columns: 1fr 1fr; }

  .pmv2-mod-icon { width: 36px; height: 36px; }
  .pmv2-mod span { font-size: 13px; }

  .pmv2-eco-card { padding: 24px; }

  .pmv2-phone { width: 200px; }

  .pmv2-showcase-tabs { gap: 4px; }
  .pmv2-tab { padding: 10px 12px; gap: 8px; }
  .pmv2-tab-icon { width: 20px; height: 20px; }
  .pmv2-tab-text strong { font-size: 13px; }
}

/* ==========================================================================
   19. REDUCED MOTION
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  .pmv2-reveal { transition: none; opacity: 1; transform: none; }
  .pmv2-badge-dot { animation: none; }
  .pmv2-btn { transition: none; }
  .pmv2-mod { transition: none; }
  .pmv2-eco-card { transition: none; }
}

/* ==========================================================
   Claysen Interactive Dashboard Mockup
   ========================================================== */
.claysen-embed * { box-sizing: border-box; }
.claysen-embed {
  font-family: "Geist", "Inter", ui-sans-serif, system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  color: #1F1F1D;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  max-width: 1180px;
  margin: 0 auto;
  padding: 24px 0;
}
.claysen-embed img { display: block; max-width: 100%; }
.claysen-embed button { font-family: inherit; cursor: pointer; }
.claysen-embed h3, .claysen-embed h6 { margin: 0; }

.claysen-embed .product-mock {
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #E5DFD3;
  box-shadow: 0 1px 0 rgba(31,31,29,.04), 0 8px 24px -12px rgba(31,31,29,.10);
}
.claysen-embed .product-mock__bar {
  display: flex; align-items: center; gap: 6px;
  padding: 10px 14px;
  border-bottom: 1px solid #E5DFD3;
  background: #FAF7F2;
}
.claysen-embed .product-mock__bar i {
  width: 9px; height: 9px; border-radius: 999px; display: inline-block;
}
.claysen-embed .product-mock__bar i:nth-child(1) { background: #EFE6CC; }
.claysen-embed .product-mock__bar i:nth-child(2) { background: #E5DCB8; }
.claysen-embed .product-mock__bar i:nth-child(3) { background: #C8D7BE; }
.claysen-embed .product-mock__bar span {
  margin-left: 10px;
  font-family: "Geist Mono", ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 11px; color: #8A8881; letter-spacing: .06em;
}

.claysen-embed .dashboard-mock {
  display: grid;
  grid-template-columns: 220px 1fr 280px;
  min-height: 460px;
}
@media (max-width: 920px) {
  .claysen-embed .dashboard-mock { grid-template-columns: 1fr; min-height: 0; }
  .claysen-embed .dashboard-mock > .dm-side { display: none; }
}
.claysen-embed .dm-side {
  background: #FAF7F2;
  border-right: 1px solid #E5DFD3;
  padding: 20px 16px;
  display: flex; flex-direction: column; gap: 4px;
}
.claysen-embed .dm-side--right { border-right: 0; border-left: 1px solid #E5DFD3; padding: 22px 18px; }
.claysen-embed .dm-side h6 {
  font-family: "Geist Mono", ui-monospace, monospace;
  font-size: 10px; letter-spacing: .12em; text-transform: uppercase;
  color: #8A8881; margin: 14px 0 8px; font-weight: 400;
}
.claysen-embed .dm-side h6:first-child { margin-top: 0; }
.claysen-embed .dm-item {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 10px; border-radius: 8px;
  font-size: 13px; color: #4A4A47;
}
.claysen-embed .dm-item.is-active { background: #EFE6CC; color: #1F1F1D; }
.claysen-embed .dm-item .ico {
  width: 14px; height: 14px; border-radius: 4px;
  background: #D9D2C2; flex: none;
}
.claysen-embed .dm-item.is-active .ico { background: #BFA667; }

.claysen-embed .dm-side button.dm-item {
  appearance: none; border: 0; background: transparent;
  text-align: left; width: 100%; font: inherit; cursor: pointer;
}
.claysen-embed .dm-side button.dm-item:hover { background: rgba(0,0,0,.025); }
.claysen-embed .dm-side button.dm-item:focus-visible { outline: 2px solid #BFA667; outline-offset: 2px; }
.claysen-embed .dm-side button.dm-item.is-active { background: #EFE6CC; color: #1F1F1D; }
.claysen-embed .dm-side button.dm-item.is-active .ico { background: #BFA667; }

.claysen-embed .dm-main { padding: 24px 28px; display: flex; flex-direction: column; gap: 20px; }
.claysen-embed .dm-main h3 {
  font-family: "Montserrat", sans-serif; font-weight: 600;
  font-size: 20px; letter-spacing: -0.015em;
}
.claysen-embed .dm-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.claysen-embed .dm-stat {
  border: 1px solid #E5DFD3; border-radius: 10px;
  padding: 14px; background: #FAF7F2;
}
.claysen-embed .dm-stat__label { font-family: "Geist Mono", monospace; font-size: 10px; letter-spacing: .1em; text-transform: uppercase; color: #8A8881; }
.claysen-embed .dm-stat__value { font-family: "Montserrat", sans-serif; font-weight: 600; font-size: 26px; line-height: 1.05; margin-top: 6px; letter-spacing: -.02em; }
.claysen-embed .dm-stat__delta { font-family: "Geist Mono", monospace; font-size: 11px; color: #BFA667; margin-top: 2px; }

.claysen-embed .dm-chart {
  height: 140px; border: 1px solid #E5DFD3; border-radius: 10px;
  background: linear-gradient(180deg, rgba(191,166,103,.06), transparent 60%), #FAF7F2;
  position: relative; overflow: hidden;
}
.claysen-embed .dm-chart svg { position: absolute; inset: 0; width: 100%; height: 100%; }

.claysen-embed .dm-list { border: 1px solid #E5DFD3; border-radius: 10px; overflow: hidden; }
.claysen-embed .dm-row {
  display: grid; grid-template-columns: auto 1fr auto; gap: 12px; align-items: center;
  padding: 10px 14px; border-top: 1px solid #E5DFD3; font-size: 13px;
}
.claysen-embed .dm-row:first-child { border-top: 0; background: #FAF7F2; }
.claysen-embed .dm-row .time { font-family: "Geist Mono", monospace; font-size: 11px; color: #8A8881; width: 56px; }

.claysen-embed .pill {
  font-family: "Geist Mono", monospace; font-size: 10px;
  padding: 3px 8px; border-radius: 999px;
  background: #EFE6CC; color: #BFA667;
  letter-spacing: .08em; text-transform: uppercase; white-space: nowrap;
}
.claysen-embed .pill--ink { background: #1F1F1D; color: #F2EDE4; }

.claysen-embed .dm-card {
  border: 1px solid #E5DFD3; border-radius: 10px;
  padding: 14px; background: #FAF7F2;
  display: flex; flex-direction: column; gap: 8px;
}
.claysen-embed .dm-card + .dm-card { margin-top: 10px; }
.claysen-embed .dm-card .lbl { font-family: "Geist Mono", monospace; font-size: 10px; color: #8A8881; letter-spacing: .1em; text-transform: uppercase; }
.claysen-embed .dm-card .val { font-family: "Montserrat", sans-serif; font-weight: 600; font-size: 17px; letter-spacing: -.015em; }
.claysen-embed .dm-card .meta { font-size: 12px; color: #8A8881; }

.claysen-embed .dm-head { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; }
.claysen-embed .dm-head__meta { font-family: "Geist Mono", monospace; font-size: 11px; color: #8A8881; letter-spacing: .08em; }
.claysen-embed .dm-view {
  display: flex; flex-direction: column; gap: 18px;
  opacity: 0; transform: translateY(6px);
  transition: opacity .35s ease, transform .35s ease;
}
.claysen-embed .dm-view.is-in { opacity: 1; transform: none; }

.claysen-embed .dm-row--head {
  font-family: "Geist Mono", monospace; font-size: 10px;
  letter-spacing: .12em; text-transform: uppercase; color: #8A8881; background: #FAF7F2;
}
.claysen-embed .dm-row strong { font-weight: 500; }
.claysen-embed .dm-row em.dim { font-style: normal; color: #8A8881; font-family: "Geist Mono", monospace; font-size: 11px; margin-left: 4px; }

.claysen-embed .dm-toolbar { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.claysen-embed .dm-search {
  display: flex; align-items: center; gap: 8px;
  border: 1px solid #E5DFD3; border-radius: 999px;
  padding: 8px 14px; background: #FAF7F2; flex: 1; min-width: 220px;
}
.claysen-embed .dm-search span { color: #8A8881; font-size: 14px; }
.claysen-embed .dm-search input { border: 0; outline: 0; background: transparent; font: inherit; font-size: 13px; color: #1F1F1D; width: 100%; }
.claysen-embed .dm-chips { display: flex; gap: 6px; flex-wrap: wrap; }
.claysen-embed .dm-chip {
  font-family: "Geist Mono", monospace; font-size: 10px; letter-spacing: .1em; text-transform: uppercase;
  padding: 6px 10px; border-radius: 999px; border: 1px solid #E5DFD3; color: #4A4A47; cursor: default;
}
.claysen-embed .dm-chip.is-on { background: #1F1F1D; color: #fff; border-color: #1F1F1D; }

.claysen-embed .dm-cal { border: 1px solid #E5DFD3; border-radius: 10px; overflow: hidden; background: #FAF7F2; }
.claysen-embed .dm-cal__head { display: grid; grid-template-columns: repeat(5, 1fr); border-bottom: 1px solid #E5DFD3; }
.claysen-embed .dm-cal__head > div {
  padding: 10px 12px; font-family: "Geist Mono", monospace; font-size: 10px;
  letter-spacing: .12em; text-transform: uppercase; color: #8A8881; border-right: 1px solid #E5DFD3;
}
.claysen-embed .dm-cal__head > div:last-child { border-right: 0; }
.claysen-embed .dm-cal__head > div.is-today { color: #BFA667; background: #EFE6CC; }
.claysen-embed .dm-cal__body {
  display: grid; grid-template-columns: repeat(5, 1fr); grid-template-rows: repeat(10, 28px);
  background-image: linear-gradient(to right, #E5DFD3 1px, transparent 1px), linear-gradient(to bottom, #E5DFD3 1px, transparent 1px);
  background-size: 20% 100%, 100% 28px;
}
.claysen-embed .dm-cal__evt {
  margin: 2px; border-radius: 6px; padding: 4px 8px; font-size: 11px;
  display: flex; align-items: center; gap: 6px; overflow: hidden; white-space: nowrap; height: 24px;
}
.claysen-embed .dm-cal__evt .t { font-family: "Geist Mono", monospace; font-size: 10px; color: #8A8881; }
.claysen-embed .dm-cal__evt .l { color: #1F1F1D; font-weight: 500; text-overflow: ellipsis; overflow: hidden; }
.claysen-embed .dm-cal__evt--g { background: #EFE6CC; }
.claysen-embed .dm-cal__evt--i { background: rgba(0,0,0,.04); }

.claysen-embed .dm-saal { display: flex; flex-direction: column; gap: 8px; }
.claysen-embed .dm-saal__row { display: grid; grid-template-columns: 80px 1fr; gap: 12px; align-items: center; }
.claysen-embed .dm-saal__lbl { font-family: "Geist Mono", monospace; font-size: 11px; letter-spacing: .08em; color: #8A8881; }
.claysen-embed .dm-saal__bar {
  position: relative; height: 36px;
  background: repeating-linear-gradient(90deg, transparent 0 calc(100%/10 - 1px), #E5DFD3 calc(100%/10 - 1px) calc(100%/10)), #FAF7F2;
  border: 1px solid #E5DFD3; border-radius: 8px;
}
.claysen-embed .dm-saal__bar > span {
  position: absolute; top: 4px; bottom: 4px; border-radius: 6px;
  padding: 0 10px; display: flex; align-items: center;
  font-size: 11px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.claysen-embed .dm-saal__bar > span.g { background: #EFE6CC; color: #BFA667; }
.claysen-embed .dm-saal__bar > span.i { background: rgba(0,0,0,.05); color: #4A4A47; }
.claysen-embed .dm-saal__axis {
  display: grid; grid-template-columns: 80px repeat(6, 1fr);
  font-family: "Geist Mono", monospace; font-size: 10px; color: #8A8881; letter-spacing: .08em; padding-top: 2px;
}
.claysen-embed .dm-saal__axis > span:first-child { display: none; }

.claysen-embed .dm-note {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 14px; border: 1px dashed #E5DFD3; border-radius: 8px; font-size: 13px; color: #4A4A47;
}

.claysen-embed .dm-rooms { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.claysen-embed .dm-room {
  border: 1px solid #E5DFD3; border-radius: 10px; padding: 12px 14px;
  background: #FAF7F2; display: flex; flex-direction: column; gap: 4px; min-height: 78px;
}
.claysen-embed .dm-room__nr { font-family: "Geist Mono", monospace; font-size: 10px; letter-spacing: .12em; color: #8A8881; text-transform: uppercase; }
.claysen-embed .dm-room__name { font-family: "Montserrat", sans-serif; font-weight: 600; font-size: 16px; letter-spacing: -.01em; }
.claysen-embed .dm-room__sub { font-size: 12px; color: #8A8881; }
.claysen-embed .dm-room--b { background: #EFE6CC; }
.claysen-embed .dm-room--b .dm-room__nr { color: #BFA667; }
.claysen-embed .dm-room--f { background: #FAF7F2; }
.claysen-embed .dm-room--f .dm-room__name { color: #8A8881; font-style: italic; font-weight: 400; }
.claysen-embed .dm-room--c { background: rgba(0,0,0,.04); }

.claysen-embed .dm-recorder {
  display: flex; align-items: center; gap: 16px;
  padding: 16px 18px; border: 1px solid #E5DFD3; border-radius: 10px; background: #FAF7F2;
}
.claysen-embed .dm-recorder__pulse { display: flex; align-items: end; gap: 3px; height: 32px; }
.claysen-embed .dm-recorder__pulse span {
  width: 3px; background: #BFA667; border-radius: 2px;
  animation: dm-pulse 1.1s ease-in-out infinite;
}
.claysen-embed .dm-recorder__pulse span:nth-child(1)  { animation-delay: 0s;    height: 40%; }
.claysen-embed .dm-recorder__pulse span:nth-child(2)  { animation-delay: .08s;  height: 60%; }
.claysen-embed .dm-recorder__pulse span:nth-child(3)  { animation-delay: .16s;  height: 80%; }
.claysen-embed .dm-recorder__pulse span:nth-child(4)  { animation-delay: .24s;  height: 50%; }
.claysen-embed .dm-recorder__pulse span:nth-child(5)  { animation-delay: .32s;  height: 90%; }
.claysen-embed .dm-recorder__pulse span:nth-child(6)  { animation-delay: .40s;  height: 30%; }
.claysen-embed .dm-recorder__pulse span:nth-child(7)  { animation-delay: .48s;  height: 70%; }
.claysen-embed .dm-recorder__pulse span:nth-child(8)  { animation-delay: .56s;  height: 55%; }
.claysen-embed .dm-recorder__pulse span:nth-child(9)  { animation-delay: .64s;  height: 85%; }
.claysen-embed .dm-recorder__pulse span:nth-child(10) { animation-delay: .72s;  height: 45%; }
.claysen-embed .dm-recorder__pulse span:nth-child(11) { animation-delay: .80s;  height: 65%; }
.claysen-embed .dm-recorder__pulse span:nth-child(12) { animation-delay: .88s;  height: 35%; }
.claysen-embed .dm-recorder__pulse span:nth-child(13) { animation-delay: .96s;  height: 75%; }
.claysen-embed .dm-recorder__pulse span:nth-child(14) { animation-delay: 1.04s; height: 50%; }
@keyframes dm-pulse {
  0%, 100% { transform: scaleY(.6); opacity: .55; }
  50%      { transform: scaleY(1);  opacity: 1; }
}
.claysen-embed .dm-recorder__meta { display: flex; flex-direction: column; gap: 2px; flex: 1; }
.claysen-embed .dm-recorder__t { font-family: "Geist Mono", monospace; font-size: 18px; color: #1F1F1D; letter-spacing: .04em; }
.claysen-embed .dm-recorder__lbl { font-size: 12px; color: #8A8881; }
.claysen-embed .dm-btn {
  appearance: none; border: 1px solid #1F1F1D; background: #1F1F1D; color: #fff;
  font: inherit; font-size: 12px; letter-spacing: .06em; text-transform: uppercase;
  padding: 8px 14px; border-radius: 999px; cursor: pointer;
}

.claysen-embed .dm-transcript {
  border: 1px solid #E5DFD3; border-radius: 10px; padding: 12px 14px;
  display: flex; flex-direction: column; gap: 8px; background: #FAF7F2;
  max-height: 180px; overflow: hidden;
}
.claysen-embed .dm-tx { display: grid; grid-template-columns: 90px 1fr; gap: 12px; font-size: 13px; }
.claysen-embed .dm-tx .who { font-family: "Geist Mono", monospace; font-size: 10px; letter-spacing: .1em; text-transform: uppercase; color: #8A8881; padding-top: 2px; }
.claysen-embed .dm-tx .said { color: #4A4A47; }

.claysen-embed .dm-suggest {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 14px; background: #EFE6CC; border-radius: 8px; font-size: 13px; color: #1F1F1D;
}
.claysen-embed .dm-suggest strong { font-weight: 600; }

.claysen-embed .dm-eyebrow {
  font-family: "Geist Mono", monospace; font-size: 10px;
  letter-spacing: .12em; text-transform: uppercase; color: #8A8881;
}

@media (max-width: 920px) {
  .claysen-embed .dm-rooms { grid-template-columns: repeat(2, 1fr); }
}
