/* ==========================================================================
   Prime Time TV Mounting — Main Stylesheet
   Design Philosophy: Apple meets Domino's (Minimalist, Visual, High-Conversion)
   ========================================================================== */

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

body {
  font-family: var(--font-body, 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif);
  background-color: var(--color-bg, #faf8f5);
  color: var(--color-text-main, #171513);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

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

button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ==========================================================================
   Typography & Reusable Utilities
   ========================================================================== */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading, 'Outfit', sans-serif);
  font-weight: 700;
  color: var(--color-text-main, #171513);
  line-height: 1.2;
}

.pttm-text-muted {
  color: var(--color-text-muted, #6b665f);
  font-weight: 400;
}

/* Reusable Bronze Pill Button */
.pttm-btn-primary-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: #8c5f34;
  color: #ffffff;
  font-family: var(--font-heading, 'Outfit', sans-serif);
  font-size: 16px;
  font-weight: 600;
  padding: 14px 34px;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(140, 95, 52, 0.25);
  transition: all 0.2s ease;
  user-select: none;
}

.pttm-btn-primary-pill:hover {
  background-color: #784f27;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(140, 95, 52, 0.35);
}

.pttm-btn-primary-pill:active {
  transform: translateY(0);
}

.pttm-btn-back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  font-size: 15px;
  font-weight: 600;
  color: var(--color-text-main, #171513);
  cursor: pointer;
  padding: 8px 12px;
  border-radius: 8px;
  transition: background-color 0.15s ease;
}

.pttm-btn-back-link:hover {
  background-color: rgba(0, 0, 0, 0.05);
}

/* ==========================================================================
   Site Header
   ========================================================================== */

.pttm-site-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background-color: rgba(250, 248, 245, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(235, 230, 223, 0.8);
  padding: 14px 24px;
  transition: all 0.2s ease;
}

.pttm-header-container {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.pttm-brand-logo {
  display: flex;
  align-items: center;
  transition: opacity 0.2s ease;
}

.pttm-brand-logo:hover {
  opacity: 0.85;
}

.pttm-desktop-nav {
  display: flex;
  align-items: center;
}

.pttm-nav-list {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 28px;
}

.pttm-nav-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: none;
  border: none;
  font-size: 14px;
  font-weight: 600;
  color: #383531;
  cursor: pointer;
  padding: 6px 4px;
  transition: color 0.15s ease;
}

.pttm-nav-btn:hover {
  color: #8c5f34;
}

.pttm-nav-icon {
  color: #8c5f34;
  opacity: 0.9;
}

.pttm-header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.pttm-btn-contact-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #8c5f34;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.pttm-btn-contact-pill:hover {
  background-color: #784f27;
  transform: translateY(-1px);
}

.pttm-mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 32px;
  height: 22px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.pttm-mobile-menu-toggle span {
  display: block;
  height: 2.5px;
  width: 100%;
  background-color: #171513;
  border-radius: 2px;
  transition: all 0.2s ease;
}

/* ==========================================================================
   STAGE 1: Quantity Selection Hero (Screen 4)
   ========================================================================== */

.pttm-hero-section {
  position: relative;
  min-height: calc(100vh - 86px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px 60px;
  overflow: hidden;
}

.pttm-hero-bg-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.pttm-hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.pttm-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at center, rgba(250, 248, 245, 0.45) 0%, rgba(250, 248, 245, 0.85) 80%);
}

.pttm-hero-content-container {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

.pttm-hero-title {
  font-size: clamp(34px, 4.5vw, 56px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #11100e;
  margin-bottom: 40px;
  line-height: 1.15;
}

/* TV Quantity Card Selectors */
.pttm-qty-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 44px;
}

.pttm-qty-card {
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 24px;
  padding: 24px 16px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  outline: none;
}

.pttm-qty-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.1);
  border-color: #8c5f34;
}

.pttm-qty-card:active {
  transform: translateY(-2px);
}

.pttm-qty-card-count {
  font-family: var(--font-heading, 'Outfit', sans-serif);
  font-size: 32px;
  font-weight: 800;
  line-height: 1;
  color: #171513;
}

.pttm-qty-card-label {
  font-size: 15px;
  font-weight: 700;
  color: #171513;
  margin-top: 2px;
  margin-bottom: 16px;
}

.pttm-qty-card-visual {
  width: 100%;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pttm-qty-card-visual img {
  max-height: 100%;
  width: auto;
}

/* Trust Proof Badges (Screen 4 Bottom) */
.pttm-hero-trust-bar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(235, 230, 223, 0.9);
  padding: 14px 28px;
  border-radius: 9999px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.pttm-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #2b2824;
  text-transform: uppercase;
}

.pttm-trust-item svg {
  color: #8c5f34;
}

.pttm-trust-divider {
  width: 1px;
  height: 20px;
  background-color: #e5dfd5;
}

/* ==========================================================================
   STAGE 2: TV Configuration Step-by-Step Flow (Screen 1)
   ========================================================================== */

.pttm-wizard-section {
  padding: 36px 20px 60px;
  max-width: 1240px;
  margin: 0 auto;
  width: 100%;
}

.pttm-wizard-container {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.pttm-wizard-layout {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 48px;
  align-items: flex-start;
}

/* Left Column: TV Preview & Helper Callout */
.pttm-wizard-preview-col {
  position: sticky;
  top: 100px;
}

.pttm-preview-header {
  margin-bottom: 18px;
}

.pttm-preview-title {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.pttm-preview-image-card {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  margin-bottom: 22px;
  background-color: #ffffff;
}

.pttm-preview-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.pttm-preview-overlay-tag {
  position: absolute;
  bottom: 14px;
  left: 14px;
  background: rgba(23, 21, 19, 0.82);
  backdrop-filter: blur(8px);
  color: #ffffff;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 9999px;
}

.pttm-tip-callout {
  display: flex;
  gap: 14px;
  background: #ffffff;
  border: 1px solid var(--color-border, #ebe6df);
  border-radius: 16px;
  padding: 16px 18px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.pttm-tip-icon {
  font-size: 20px;
  line-height: 1;
  color: #d97706;
}

.pttm-tip-callout strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #171513;
  margin-bottom: 2px;
}

.pttm-tip-callout p {
  font-size: 13px;
  color: #6b665f;
  line-height: 1.4;
}

/* Right Column: Size Selector & Add-on Cards */
.pttm-wizard-options-col {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.pttm-option-group {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.pttm-group-title {
  font-size: 22px;
  font-weight: 700;
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.pttm-step-num {
  font-weight: 800;
}

.pttm-group-subtitle {
  font-size: 15px;
  font-weight: 400;
  color: #6b665f;
}

/* TV Size Selection Buttons */
.pttm-size-buttons-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.pttm-size-btn {
  background: #ffffff;
  border: 1.5px solid #e0d9cf;
  border-radius: 12px;
  padding: 16px 8px;
  font-size: 15px;
  font-weight: 700;
  color: #2b2824;
  cursor: pointer;
  text-align: center;
  transition: all 0.15s ease;
}

.pttm-size-btn:hover {
  border-color: #8c5f34;
}

.pttm-size-btn.is-selected {
  border-color: #8c5f34;
  background-color: #fdfaf6;
  color: #8c5f34;
  box-shadow: 0 0 0 1px #8c5f34 inset;
}

/* Add-ons Cards Grid (Screen 1) */
.pttm-addons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.pttm-addon-card {
  position: relative;
  background: #ffffff;
  border: 1.5px solid #ebe5dc;
  border-radius: 16px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
  user-select: none;
}

.pttm-addon-card:hover {
  border-color: #bfa182;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
}

.pttm-addon-card.is-selected {
  border-color: #8c5f34;
  background-color: #fefdfb;
  box-shadow: 0 4px 16px rgba(140, 95, 52, 0.12);
}

/* Custom Checkbox Top Right */
.pttm-card-checkbox {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 20px;
  height: 20px;
  border-radius: 6px;
  border: 1.5px solid #d4ccbf;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s ease;
}

.pttm-card-checkbox svg {
  opacity: 0;
  transform: scale(0.6);
  transition: all 0.15s ease;
  color: #ffffff;
}

.pttm-addon-card.is-selected .pttm-card-checkbox,
.pttm-service-card.is-selected .pttm-card-checkbox {
  background-color: #8c5f34;
  border-color: #8c5f34;
}

.pttm-addon-card.is-selected .pttm-card-checkbox svg,
.pttm-service-card.is-selected .pttm-card-checkbox svg {
  opacity: 1;
  transform: scale(1);
}

.pttm-addon-thumb {
  width: 100%;
  height: 75px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 6px;
  margin-bottom: 12px;
}

.pttm-addon-thumb img {
  max-height: 100%;
  max-width: 130px;
}

.pttm-addon-info {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pttm-addon-title {
  font-size: 15px;
  font-weight: 700;
  color: #171513;
  margin-bottom: 2px;
}

.pttm-addon-subtitle {
  font-size: 11.5px;
  color: #78716c;
  margin-bottom: 6px;
  line-height: 1.3;
}

.pttm-addon-price {
  font-family: var(--font-heading, 'Outfit', sans-serif);
  font-size: 16px;
  font-weight: 700;
  color: #171513;
  margin-top: auto;
}

/* Wizard Stepper Footer Bar */
.pttm-wizard-footer-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #ebe5dc;
  padding-top: 24px;
}

.pttm-stepper-dots {
  display: flex;
  align-items: center;
  gap: 16px;
}

.pttm-step-dot-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #a8a29e;
}

.pttm-step-dot-circle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #e7dfd5;
  color: #57534e;
  font-size: 13px;
  font-weight: 700;
  transition: all 0.2s ease;
}

.pttm-step-dot-item.is-active {
  color: #171513;
}

.pttm-step-dot-item.is-active .pttm-step-dot-circle {
  background-color: #8c5f34;
  color: #ffffff;
}

.pttm-step-dot-item.is-completed .pttm-step-dot-circle {
  background-color: #22c55e;
  color: #ffffff;
}

.pttm-step-line {
  width: 32px;
  height: 2px;
  background-color: #e7dfd5;
}

.pttm-footer-actions-group {
  display: flex;
  align-items: center;
  gap: 16px;
}

.pttm-live-price-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #f4ede4;
  border: 1px solid #dfd4c5;
  padding: 8px 16px;
  border-radius: 9999px;
  font-size: 14px;
}

.pttm-live-price-label {
  color: #6b665f;
  font-weight: 500;
}

.pttm-live-price-amount {
  color: #8c5f34;
  font-size: 16px;
  font-weight: 800;
  font-family: var(--font-heading, 'Outfit', sans-serif);
}

/* ==========================================================================
   STAGE 3: Additional Services & Customer Details (Screen 2)
   ========================================================================== */

.pttm-services-section {
  padding: 36px 20px 60px;
  max-width: 1060px;
  margin: 0 auto;
  width: 100%;
}

.pttm-services-container {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.pttm-services-top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.pttm-step-counter-pill {
  font-size: 14px;
  font-weight: 600;
  color: #78716c;
}

.pttm-services-heading {
  text-align: center;
}

.pttm-services-title {
  font-size: clamp(30px, 3.8vw, 44px);
  font-weight: 800;
  margin-bottom: 8px;
}

.pttm-services-subtitle {
  font-size: 16px;
  color: #6b665f;
}

/* Services Grid (Screen 2) */
.pttm-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.pttm-service-card {
  position: relative;
  background: #ffffff;
  border: 1.5px solid #ebe5dc;
  border-radius: 18px;
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
  user-select: none;
}

.pttm-service-card:hover {
  border-color: #bfa182;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.pttm-service-card.is-selected {
  border-color: #8c5f34;
  background-color: #fefdfb;
  box-shadow: 0 4px 16px rgba(140, 95, 52, 0.12);
}

.pttm-service-thumb {
  width: 100%;
  height: 85px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 8px;
  margin-bottom: 12px;
}

.pttm-service-thumb img {
  max-height: 100%;
  max-width: 140px;
}

.pttm-service-info {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pttm-service-title {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
}

.pttm-service-desc {
  font-size: 12px;
  color: #78716c;
  margin-bottom: 10px;
  line-height: 1.35;
}

.pttm-service-rate {
  font-family: var(--font-heading, 'Outfit', sans-serif);
  font-size: 15px;
  font-weight: 700;
  color: #171513;
  margin-top: auto;
}

/* Customer Information Card (Screen 2 Bottom) */
.pttm-customer-form-card {
  background: #ffffff;
  border: 1px solid #ebe5dc;
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.pttm-form-header {
  margin-bottom: 24px;
}

.pttm-form-title {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 4px;
}

.pttm-form-subtitle {
  font-size: 14px;
  color: #6b665f;
}

.pttm-intake-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pttm-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.pttm-input-group {
  position: relative;
  display: flex;
  align-items: center;
}

.pttm-input-icon {
  position: absolute;
  left: 16px;
  color: #78716c;
  pointer-events: none;
  display: flex;
  align-items: center;
}

.pttm-input-field {
  width: 100%;
  background: #fbf9f6;
  border: 1.5px solid #e7dfd5;
  border-radius: 12px;
  padding: 14px 16px 14px 46px;
  font-size: 15px;
  font-weight: 500;
  color: #171513;
  transition: all 0.15s ease;
  outline: none;
}

.pttm-input-field:focus {
  background: #ffffff;
  border-color: #8c5f34;
  box-shadow: 0 0 0 3px rgba(140, 95, 52, 0.12);
}

/* Live Price Ledger Card */
.pttm-live-price-ledger-card {
  background: #faf8f5;
  border: 1.5px solid #ebe4d8;
  border-radius: 14px;
  padding: 16px 20px;
  margin: 6px 0 16px 0;
}

.pttm-ledger-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid #ebe4d8;
}

.pttm-ledger-header h4 {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  color: #171513;
}

.pttm-ledger-badge {
  background: #8c5f34;
  color: #ffffff;
  font-size: 11.5px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 9999px;
}

.pttm-ledger-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  color: #6b665f;
  margin-bottom: 6px;
}

.pttm-ledger-row strong {
  color: #171513;
  font-weight: 600;
}

.pttm-ledger-total {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1.5px dashed #dfd5c7;
  font-size: 15.5px;
  font-weight: 700;
  color: #171513;
}

.pttm-ledger-total strong {
  color: #8c5f34;
  font-size: 18px;
  font-weight: 800;
}

.pttm-form-submit-row {
  margin-top: 10px;
  text-align: center;
}

.pttm-btn-finish {
  width: 100%;
  padding: 16px;
  font-size: 18px;
}

/* Call Guarantee Banner (Screen 2 Bottom) */
.pttm-call-guarantee-banner {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fdfaf6;
  border: 1px solid #ebdccb;
  border-radius: 14px;
  padding: 16px 20px;
  margin-top: 14px;
}

.pttm-call-banner-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #8c5f34;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pttm-call-guarantee-banner strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #171513;
}

.pttm-call-guarantee-banner p {
  font-size: 13px;
  color: #6b665f;
}

/* ==========================================================================
   STAGE 4: Order Confirmation / Receipt (Screen 3)
   ========================================================================== */

.pttm-confirmation-section {
  padding: 40px 20px 80px;
  max-width: 820px;
  margin: 0 auto;
  width: 100%;
}

.pttm-confirmation-container {
  display: flex;
  flex-direction: column;
  gap: 36px;
  text-align: center;
}

.pttm-confirmation-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pttm-checkmark-circle {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  border: 3px solid #8c5f34;
  color: #8c5f34;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  animation: pttmPop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes pttmPop {
  0% { transform: scale(0.4); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

.pttm-confirm-title {
  font-size: clamp(34px, 4.5vw, 48px);
  font-weight: 800;
  margin-bottom: 12px;
}

.pttm-confirm-lead {
  font-size: 20px;
  font-weight: 700;
  color: #171513;
  margin-bottom: 8px;
}

.pttm-confirm-subtext {
  font-size: 15px;
  color: #6b665f;
  max-width: 620px;
  line-height: 1.5;
}

/* "Your Order" Breakdown Card (Screen 3) */
.pttm-order-summary-card {
  background: #ffffff;
  border: 1px solid #ebe5dc;
  border-radius: 24px;
  padding: 28px;
  text-align: left;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.pttm-summary-header {
  border-bottom: 1px solid #f0ebe2;
  padding-bottom: 16px;
  margin-bottom: 20px;
}

.pttm-summary-header h2 {
  font-size: 24px;
  font-weight: 800;
}

.pttm-summary-tally {
  font-size: 14px;
  color: #78716c;
  font-weight: 500;
}

.pttm-summary-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pttm-summary-tv-row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 20px;
  background: #faf8f5;
  border-radius: 14px;
  padding: 16px 20px;
}

.pttm-summary-tv-label h3 {
  font-size: 18px;
  font-weight: 800;
}

.pttm-summary-tv-label span {
  font-size: 13px;
  color: #78716c;
}

.pttm-summary-tv-addons {
  list-style: disc;
  margin-left: 18px;
}

.pttm-summary-tv-addons li {
  font-size: 14px;
  font-weight: 600;
  color: #171513;
  margin-bottom: 4px;
}

.pttm-summary-tv-addons li span {
  font-weight: 400;
  color: #78716c;
}

/* "What happens next?" 4-Step Visual Roadmap (Screen 3) */
.pttm-next-steps-section {
  text-align: center;
}

.pttm-next-steps-title {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 28px;
}

.pttm-next-steps-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.pttm-next-step-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.pttm-step-icon-circle {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #f5ede4;
  color: #8c5f34;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.pttm-next-step-item h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
}

.pttm-next-step-item p {
  font-size: 12.5px;
  color: #6b665f;
  line-height: 1.35;
}

.pttm-step-arrow {
  font-size: 24px;
  color: #d4ccbf;
  font-weight: 300;
}

/* Confirmation Trust Bar (Screen 3 Bottom) */
.pttm-confirm-trust-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 16px 0;
  border-top: 1px solid #ebe5dc;
  border-bottom: 1px solid #ebe5dc;
}

.pttm-confirm-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.pttm-confirm-actions .pttm-btn-primary-pill {
  min-width: 260px;
}

.pttm-confirm-footer-note {
  font-size: 14px;
  color: #78716c;
}

/* ==========================================================================
   Modals & Drawers (Non-Disruptive Popup Navigation)
   ========================================================================== */

.pttm-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  background: rgba(17, 16, 14, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease;
}

.pttm-modal-overlay.is-active {
  opacity: 1;
  visibility: visible;
}

.pttm-modal-wrapper {
  position: relative;
  background: #ffffff;
  border-radius: 28px;
  max-width: 680px;
  width: 100%;
  max-height: 88vh;
  overflow-y: auto;
  padding: 36px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.2);
  transform: scale(0.95) translateY(10px);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.pttm-modal-overlay.is-active .pttm-modal-wrapper {
  transform: scale(1) translateY(0);
}

.pttm-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f5f2eb;
  border: none;
  font-size: 22px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #171513;
  transition: background-color 0.15s ease;
}

.pttm-modal-close:hover {
  background-color: #ebe5dc;
}

.pttm-modal-pane {
  display: none;
}

.pttm-modal-pane.is-active {
  display: block;
}

.pttm-modal-header {
  margin-bottom: 24px;
}

.pttm-modal-header h2 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 4px;
}

.pttm-modal-subtitle {
  font-size: 14px;
  color: #78716c;
}

.pttm-modal-badge-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid #f0ebe2;
}

.pttm-modal-badge {
  background: #faf8f5;
  border-radius: 12px;
  padding: 14px 10px;
  text-align: center;
}

.pttm-modal-badge strong {
  display: block;
  font-size: 20px;
  font-weight: 800;
  color: #8c5f34;
}

.pttm-modal-badge span {
  font-size: 12px;
  color: #6b665f;
}

/* FAQ Accordion */
.pttm-faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pttm-faq-accordion-item {
  border: 1px solid #ebe5dc;
  border-radius: 14px;
  overflow: hidden;
  background: #faf8f5;
}

.pttm-faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 16px 20px;
  text-align: left;
  font-size: 15px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.pttm-faq-chevron {
  transition: transform 0.2s ease;
  font-size: 12px;
  color: #8c5f34;
}

.pttm-faq-answer {
  display: none;
  padding: 0 20px 16px;
  font-size: 14px;
  color: #57534e;
  line-height: 1.5;
}

.pttm-faq-accordion-item.is-open .pttm-faq-answer {
  display: block;
}

.pttm-faq-accordion-item.is-open .pttm-faq-chevron {
  transform: rotate(180deg);
}

/* Reviews Grid */
.pttm-reviews-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pttm-review-card {
  background: #faf8f5;
  border: 1px solid #ebe5dc;
  border-radius: 16px;
  padding: 20px;
}

.pttm-review-stars {
  color: #f59e0b;
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.pttm-review-text {
  font-size: 14.5px;
  line-height: 1.5;
  color: #2b2824;
  margin-bottom: 12px;
}

.pttm-review-meta strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
}

.pttm-review-meta span {
  font-size: 12px;
  color: #78716c;
}

/* Contact Quick Cards */
.pttm-contact-quick-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 20px;
}

.pttm-contact-card {
  background: #faf8f5;
  border: 1.5px solid #ebe5dc;
  border-radius: 16px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: all 0.2s ease;
}

.pttm-contact-card:hover {
  border-color: #8c5f34;
  transform: translateY(-2px);
}

.pttm-contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #8c5f34;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.pttm-contact-card strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
}

.pttm-contact-card p {
  font-size: 14px;
  color: #8c5f34;
  font-weight: 600;
}

.pttm-contact-card small {
  font-size: 11px;
  color: #78716c;
}

.pttm-contact-note {
  background: #fdfaf6;
  border-left: 4px solid #8c5f34;
  padding: 14px 18px;
  border-radius: 6px;
  font-size: 13.5px;
  color: #57534e;
}

/* Mobile Nav Modal Stack */
.pttm-mobile-nav-stack {
  display: flex !important;
  flex-direction: column !important;
  gap: 12px !important;
}

.pttm-mobile-nav-btn {
  display: block !important;
  width: 100% !important;
  background: #faf8f5 !important;
  border: 1px solid #ebe5dc !important;
  border-radius: 12px !important;
  padding: 16px 20px !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  text-align: left !important;
  color: #171513 !important;
  cursor: pointer !important;
  box-sizing: border-box !important;
  text-decoration: none !important;
  line-height: 1.2 !important;
}

.pttm-mobile-btn-highlight {
  background-color: #8c5f34 !important;
  color: #ffffff !important;
  border-color: #8c5f34 !important;
  text-align: center !important;
}

/* ==========================================================================
   Tips & Tricks Video Hub & Article Pages
   ========================================================================== */

.pttm-tips-hero {
  background: linear-gradient(180deg, #faf8f5 0%, #f3ede2 100%);
  padding: 60px 20px;
  text-align: center;
  border-bottom: 1px solid #ebe5dc;
}

.pttm-tips-hero-container {
  max-width: 800px;
  margin: 0 auto;
}

.pttm-tag-pill {
  display: inline-block;
  background: #8c5f34;
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 9999px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 14px;
}

.pttm-tips-hero-title {
  font-size: clamp(32px, 4vw, 46px);
  font-weight: 800;
  margin-bottom: 12px;
}

.pttm-tips-hero-sub {
  font-size: 16px;
  color: #6b665f;
}

.pttm-tips-grid-section {
  padding: 60px 20px;
  max-width: 1240px;
  margin: 0 auto;
  width: 100%;
}

.pttm-video-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.pttm-video-card {
  background: #ffffff;
  border: 1px solid #ebe5dc;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
}

.pttm-video-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.pttm-video-thumbnail {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #171513;
  overflow: hidden;
}

.pttm-video-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.pttm-video-card:hover .pttm-video-thumbnail img {
  transform: scale(1.04);
}

.pttm-video-play-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(140, 95, 52, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.pttm-video-duration {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.75);
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 6px;
}

.pttm-video-card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.pttm-video-meta-tags {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.pttm-tag-cat {
  font-size: 11.5px;
  font-weight: 700;
  color: #8c5f34;
  text-transform: uppercase;
}

.pttm-tag-diff {
  background: #f5ede4;
  color: #784f27;
  font-size: 11px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 4px;
}

.pttm-video-card-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 8px;
}

.pttm-video-card-excerpt {
  font-size: 13.5px;
  color: #6b665f;
  margin-bottom: 16px;
  line-height: 1.45;
}

.pttm-video-watch-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  color: #8c5f34;
  margin-top: auto;
}

/* Single Post Page */
.pttm-single-tips-page {
  padding: 40px 20px 80px;
  max-width: 860px;
  margin: 0 auto;
  width: 100%;
}

.pttm-breadcrumbs {
  margin-bottom: 20px;
  font-size: 14px;
  font-weight: 600;
  color: #8c5f34;
}

.pttm-article-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  margin-bottom: 12px;
}

.pttm-article-date {
  font-size: 14px;
  color: #78716c;
  margin-bottom: 28px;
}

.pttm-video-player-wrapper {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
  margin-bottom: 36px;
  background: #000;
}

.pttm-video-player-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.pttm-prose {
  font-size: 16px;
  line-height: 1.7;
  color: #2b2824;
}

.pttm-prose p {
  margin-bottom: 18px;
}

.pttm-prose h2, .pttm-prose h3 {
  margin: 28px 0 12px;
}

.pttm-prose ul {
  margin: 12px 0 18px 24px;
}

.pttm-article-book-banner {
  background: #fdfaf6;
  border: 1.5px solid #d8c4b0;
  border-radius: 20px;
  padding: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 48px;
}

.pttm-article-book-banner h3 {
  font-size: 20px;
  margin-bottom: 4px;
}

.pttm-article-book-banner p {
  font-size: 14px;
  color: #6b665f;
}

/* ==========================================================================
   Site Footer
   ========================================================================== */

.pttm-site-footer {
  margin-top: auto;
  background-color: #171513;
  color: #d6d3d1;
  padding: 60px 24px 30px;
  border-top: 1px solid #292524;
}

.pttm-footer-container {
  max-width: 1320px;
  margin: 0 auto;
}

.pttm-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 48px;
}

.pttm-footer-logo {
  filter: invert(1) brightness(1.8);
  margin-bottom: 16px;
}

.pttm-footer-tagline {
  font-size: 14px;
  color: #a8a29e;
  max-width: 380px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.pttm-footer-trust-pills {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.pttm-footer-trust-pills span {
  background: #292524;
  border: 1px solid #44403c;
  color: #e7dfd5;
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 9999px;
}

.pttm-footer-col h4 {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 18px;
}

.pttm-footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pttm-footer-links a,
.pttm-footer-btn-link {
  color: #a8a29e;
  font-size: 14px;
  background: none;
  border: none;
  padding: 0;
  text-align: left;
  cursor: pointer;
  transition: color 0.15s ease;
}

.pttm-footer-links a:hover,
.pttm-footer-btn-link:hover {
  color: #ffffff;
}

.pttm-footer-col p {
  font-size: 14px;
  color: #a8a29e;
  margin-bottom: 8px;
}

.pttm-footer-col strong {
  color: #ffffff;
}

.pttm-footer-subnote {
  font-size: 12.5px;
  color: #78716c;
  margin-top: 12px;
  font-style: italic;
}

.pttm-footer-bottom {
  border-top: 1px solid #292524;
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: #78716c;
}

/* ==========================================================================
   Responsive Breakpoints & Proportional Mobile/Tablet Scaling
   ========================================================================== */

/* --- TABLET VIEW (max-width: 1024px) --- */
@media (max-width: 1024px) {
  /* Hero typography & silhouettes */
  .pttm-hero-title {
    font-size: 34px !important;
    line-height: 1.25 !important;
  }
  .pttm-qty-cards-grid {
    gap: 14px;
    max-width: 680px;
  }
  .pttm-qty-card {
    padding: 16px 12px;
    border-radius: 16px;
  }
  .pttm-qty-card-count {
    font-size: 30px;
  }
  .pttm-qty-card-label {
    font-size: 13px;
  }
  .pttm-qty-card-visual {
    height: 52px;
  }
  .pttm-qty-card-visual img {
    max-height: 48px;
  }
  .pttm-hero-trust-bar {
    padding: 10px 20px;
    gap: 18px;
    font-size: 12.5px;
  }
  .pttm-trust-item svg {
    width: 18px;
    height: 18px;
  }

  /* TV Configurator Step 1 */
  .pttm-wizard-layout {
    grid-template-columns: 290px 1fr;
    gap: 24px;
  }
  .pttm-preview-title {
    font-size: 20px;
  }
  .pttm-preview-image-card {
    border-radius: 16px;
    padding: 10px;
  }
  .pttm-preview-img {
    height: 190px;
  }
  .pttm-preview-overlay-tag {
    font-size: 11.5px;
    padding: 4px 10px;
  }
  .pttm-tip-callout {
    padding: 12px;
    font-size: 12.5px;
  }
  .pttm-group-title {
    font-size: 16px;
  }
  .pttm-size-btn {
    font-size: 13.5px;
    padding: 10px 16px;
  }
  .pttm-addons-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .pttm-addon-card {
    padding: 12px;
    border-radius: 14px;
  }
  .pttm-addon-thumb {
    width: 48px;
    height: 48px;
  }
  .pttm-addon-title {
    font-size: 13.5px;
  }
  .pttm-addon-subtitle {
    font-size: 11.5px;
  }
  .pttm-addon-price {
    font-size: 14px;
  }

  /* Step 4 Services */
  .pttm-services-title {
    font-size: 26px;
  }
  .pttm-services-subtitle {
    font-size: 14px;
  }
  .pttm-services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .pttm-service-card {
    padding: 12px;
    border-radius: 14px;
  }
  .pttm-service-thumb {
    width: 48px;
    height: 48px;
  }
  .pttm-service-title {
    font-size: 13.5px;
  }
  .pttm-service-desc {
    font-size: 12px;
  }
  .pttm-service-rate {
    font-size: 13px;
  }

  /* Confirmation screen */
  .pttm-confirm-title {
    font-size: 28px;
  }
  .pttm-confirm-lead {
    font-size: 16px;
  }
  .pttm-confirm-subtext {
    font-size: 13.5px;
  }
  .pttm-next-step-item h4 {
    font-size: 13.5px;
  }
  .pttm-next-step-item p {
    font-size: 12px;
  }
  .pttm-step-icon-circle {
    width: 38px;
    height: 38px;
  }
  .pttm-step-icon-circle svg {
    width: 18px;
    height: 18px;
  }

  /* Video & Footer Grids */
  .pttm-video-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
  .pttm-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
}

/* --- MOBILE LANDSCAPE & SMALL TABLET (max-width: 820px) --- */
@media (max-width: 820px) {
  .pttm-desktop-nav {
    display: none;
  }
  .pttm-mobile-menu-toggle {
    display: flex;
  }
  .pttm-site-header {
    padding: 10px 16px;
  }
  .pttm-brand-logo svg, .pttm-brand-logo img {
    height: 28px;
    width: auto;
  }
  .pttm-wizard-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .pttm-wizard-preview-col {
    position: static;
  }
  .pttm-hero-trust-bar {
    flex-direction: column;
    gap: 10px;
    border-radius: 16px;
    padding: 14px 18px;
    width: 100%;
    max-width: 380px;
  }
  .pttm-trust-divider {
    display: none;
  }
  .pttm-next-steps-grid {
    flex-direction: column;
    gap: 14px;
  }
  .pttm-step-arrow {
    transform: rotate(90deg);
    font-size: 18px;
  }
  .pttm-form-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .pttm-size-buttons-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  .pttm-contact-quick-cards {
    grid-template-columns: 1fr;
  }
}

/* --- MOBILE PHONES (max-width: 580px) --- */
@media (max-width: 580px) {
  /* Hero title & quantity cards scaled down */
  .pttm-hero-section {
    padding: 24px 14px 40px 14px;
    min-height: calc(100vh - 60px);
  }
  .pttm-hero-title {
    font-size: clamp(21px, 6vw, 26px) !important;
    margin-bottom: 20px;
  }
  .pttm-qty-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    max-width: 340px;
  }
  .pttm-qty-card {
    padding: 12px 8px;
    border-radius: 14px;
    min-height: 110px;
  }
  .pttm-qty-card-count {
    font-size: 24px;
  }
  .pttm-qty-card-label {
    font-size: 12px;
  }
  .pttm-qty-card-visual {
    height: 40px;
    margin-top: 4px;
  }
  .pttm-qty-card-visual img {
    max-height: 38px;
    width: auto;
  }
  .pttm-hero-trust-bar {
    font-size: 11.5px;
    padding: 12px 14px;
    gap: 8px;
  }

  /* TV Configurator on Mobile */
  .pttm-wizard-section {
    padding: 16px 12px 100px 12px;
  }
  .pttm-preview-title {
    font-size: 17px;
    margin-bottom: 8px;
  }
  .pttm-preview-image-card {
    padding: 6px;
    border-radius: 12px;
  }
  .pttm-preview-img {
    height: 140px;
    border-radius: 8px;
  }
  .pttm-preview-overlay-tag {
    font-size: 10px;
    bottom: 12px;
    left: 12px;
    padding: 3px 8px;
  }
  .pttm-tip-callout {
    padding: 10px;
    font-size: 11.5px;
    border-radius: 10px;
    gap: 8px;
  }
  .pttm-tip-icon {
    font-size: 16px;
  }
  .pttm-group-title {
    font-size: 14.5px;
    margin-bottom: 10px;
  }
  .pttm-size-btn {
    font-size: 12px;
    padding: 8px 10px;
    border-radius: 8px;
  }

  /* Add-ons 2-col compact grid on mobile */
  .pttm-addons-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  .pttm-addon-card {
    padding: 8px 6px;
    border-radius: 10px;
    gap: 6px;
  }
  .pttm-card-checkbox {
    top: 6px;
    right: 6px;
    width: 16px;
    height: 16px;
  }
  .pttm-card-checkbox svg {
    width: 10px;
    height: 10px;
  }
  .pttm-addon-thumb {
    width: 36px;
    height: 36px;
    margin: 4px auto;
  }
  .pttm-addon-thumb img {
    max-height: 32px;
  }
  .pttm-addon-title {
    font-size: 11.5px;
    line-height: 1.2;
  }
  .pttm-addon-subtitle {
    font-size: 10px;
    line-height: 1.2;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .pttm-addon-price {
    font-size: 12.5px;
    margin-top: 3px;
  }

  /* Step 4 Services on mobile */
  .pttm-services-section {
    padding: 16px 12px 100px 12px;
  }
  .pttm-services-title {
    font-size: 21px;
  }
  .pttm-services-subtitle {
    font-size: 12.5px;
    margin-bottom: 16px;
  }
  .pttm-services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin-bottom: 24px;
  }
  .pttm-service-card {
    padding: 8px 6px;
    border-radius: 10px;
    gap: 6px;
  }
  .pttm-service-thumb {
    width: 36px;
    height: 36px;
    margin: 4px auto;
  }
  .pttm-service-thumb img {
    max-height: 32px;
  }
  .pttm-service-title {
    font-size: 11.5px;
  }
  .pttm-service-desc {
    font-size: 10.5px;
  }
  .pttm-service-rate {
    font-size: 11.5px;
  }

  /* Customer info form */
  .pttm-customer-form-card {
    padding: 16px 12px;
    border-radius: 14px;
  }
  .pttm-form-title {
    font-size: 17px;
  }
  .pttm-form-subtitle {
    font-size: 12px;
  }
  .pttm-input-field {
    padding: 11px 12px 11px 36px;
    font-size: 13.5px;
  }
  .pttm-input-icon {
    left: 10px;
  }
  .pttm-btn-primary-pill {
    font-size: 14.5px;
    padding: 12px 24px;
    width: 100%;
  }
  .pttm-wizard-footer-bar {
    padding: 12px 16px;
    gap: 12px;
  }
  .pttm-btn-back-link {
    font-size: 13.5px;
    padding: 6px 8px;
  }

  /* Confirmation */
  .pttm-confirmation-section {
    padding: 24px 12px 60px 12px;
  }
  .pttm-checkmark-circle {
    width: 44px;
    height: 44px;
    margin-bottom: 12px;
  }
  .pttm-checkmark-circle svg {
    width: 22px;
    height: 22px;
  }
  .pttm-confirm-title {
    font-size: 22px;
  }
  .pttm-confirm-lead {
    font-size: 14.5px;
  }
  .pttm-confirm-subtext {
    font-size: 12.5px;
  }
  .pttm-order-summary-card {
    padding: 16px 12px;
    border-radius: 14px;
  }
  .pttm-summary-header h2 {
    font-size: 16px;
  }
  .pttm-summary-tally {
    font-size: 12px;
  }
  .pttm-summary-tv-row {
    grid-template-columns: 1fr;
    padding: 12px 0;
    gap: 8px;
  }
  .pttm-next-steps-title {
    font-size: 16px;
  }
  .pttm-next-step-item h4 {
    font-size: 13px;
  }
  .pttm-next-step-item p {
    font-size: 11.5px;
  }
  .pttm-confirm-trust-bar {
    flex-direction: column;
    gap: 10px;
    font-size: 12px;
    padding: 12px;
  }

  /* Tips & Tricks video cards & footer */
  .pttm-video-cards-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .pttm-video-card-title {
    font-size: 15px;
  }
  .pttm-video-card-excerpt {
    font-size: 12.5px;
  }
  .pttm-footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

