/* =====================================================
   Prezentační Web – Landing Page Styles
   Extends styles.css from the main evalue-web project
   ===================================================== */

/* ---------- Container ---------- */
.pw-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Header ---------- */
.pw-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  border-bottom: 1px solid var(--border-color);
  transition: var(--transition-colors);
}

[data-theme="dark"] .pw-header {
  background: rgba(31, 41, 55, 0.95);
}

.pw-header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.pw-nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  opacity: 1;
  transition: opacity 0.2s ease;
  flex-shrink: 0;
}

.pw-nav-logo:hover {
  opacity: 0.75;
}

.pw-nav-logo-img {
  height: 32px;
  width: auto;
}

.pw-nav-logotype-img {
  height: 20px;
  width: auto;
}

.pw-nav-sep {
  color: var(--border-color);
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 1;
  flex-shrink: 0;
  user-select: none;
}

.pw-header-title {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-light);
  flex: 1;
}

.pw-theme-btn {
  margin-left: auto;
}

/* ---------- Hero ---------- */
.pw-hero {
  position: relative;
  padding: 100px 0 80px;
  overflow: hidden;
  isolation: isolate;
}

.pw-hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}

.pw-hero .pw-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.pw-hero-badge {
  display: inline-block;
  background: rgba(12, 103, 239, 0.1);
  color: var(--primary-color);
  border: 1px solid rgba(12, 103, 239, 0.25);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 0.8125rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  letter-spacing: 0.01em;
}

[data-theme="dark"] .pw-hero-badge {
  background: rgba(12, 103, 239, 0.2);
  border-color: rgba(12, 103, 239, 0.4);
}

.pw-hero-title {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.pw-highlight {
  color: var(--primary-color);
}

.pw-hero-subtitle {
  font-size: 1.125rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 480px;
}

.pw-hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ---------- Hero mobile pills (hidden on desktop) ---------- */
.pw-hero-pills {
  display: none;
}

/* ---------- Buttons ---------- */
.pw-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.pw-btn-primary {
  background: var(--primary-color);
  color: #fff;
  box-shadow: 0 1px 3px rgba(12, 103, 239, 0.25), inset 0 1px 0 rgba(255,255,255,0.12);
}

.pw-btn-primary:hover {
  background: #0a55cc;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(12, 103, 239, 0.38), inset 0 1px 0 rgba(255,255,255,0.12);
}

.pw-btn-primary:active {
  transform: scale(0.98);
  box-shadow: 0 1px 3px rgba(12, 103, 239, 0.2);
}

.pw-btn-secondary {
  background: transparent;
  color: var(--text-dark);
  border: 1.5px solid var(--border-color);
}

.pw-btn-secondary:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
  background: rgba(12, 103, 239, 0.04);
}

.pw-btn-secondary:active {
  transform: scale(0.98);
}

/* ---------- Browser Mockup ---------- */
.pw-hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.pw-mockup {
  width: 100%;
  max-width: 460px;
  background: var(--bg-white);
  border: 1.5px solid var(--border-color);
  border-radius: 16px;
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  animation: pw-float 5s ease-in-out infinite;
}

@keyframes pw-float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

.pw-mockup-bar {
  background: var(--bg-light);
  border-bottom: 1px solid var(--border-color);
  padding: 10px 16px;
  display: flex;
  gap: 8px;
  align-items: center;
}

.pw-mockup-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border-color);
}

.pw-mockup-bar span:nth-child(1) { background: #ff5f57; }
.pw-mockup-bar span:nth-child(2) { background: #febc2e; }
.pw-mockup-bar span:nth-child(3) { background: #28c840; }

.pw-mockup-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.pw-mockup-nav {
  height: 10px;
  background: var(--border-color);
  border-radius: 6px;
  width: 70%;
}

.pw-mockup-hero-block {
  background: rgba(12, 103, 239, 0.06);
  border-radius: 8px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pw-mockup-line {
  background: var(--border-color);
  border-radius: 4px;
}

.pw-mockup-line--title {
  height: 16px;
  width: 75%;
  background: rgba(12, 103, 239, 0.3);
}

.pw-mockup-line--subtitle {
  height: 10px;
  width: 90%;
}

.pw-mockup-line--btn {
  height: 28px;
  width: 40%;
  background: var(--primary-color);
  border-radius: 6px;
  margin-top: 8px;
}

.pw-mockup-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.pw-mockup-card {
  height: 60px;
  background: var(--bg-light);
  border: 1px solid var(--border-color);
  border-radius: 8px;
}

/* ---------- Sections ---------- */
.pw-section {
  padding: 80px 0;
}

.pw-section--alt {
  background: rgba(12, 103, 239, 0.03);
}

[data-theme="dark"] .pw-section--alt {
  background: rgba(255, 255, 255, 0.025);
}

.pw-section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.pw-label {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--secondary-color);
  margin-bottom: 0.75rem;
}

.pw-section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.pw-section-desc {
  font-size: 1.0625rem;
  color: var(--text-light);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ---------- Features Grid ---------- */
.pw-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.pw-feature-card {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 28px 24px;
  transition: var(--transition);
  opacity: 0;
  transform: translateY(20px);
}

.pw-feature-card.pw-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s ease, transform 0.5s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.pw-feature-card:hover {
  border-color: var(--primary-color);
  box-shadow: 0 6px 24px rgba(12, 103, 239, 0.1);
  transform: translateY(-3px);
}

.pw-feature-icon {
  width: 48px;
  height: 48px;
  background: rgba(12, 103, 239, 0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.125rem;
  color: var(--primary-color);
  transition: background 0.2s ease;
}

.pw-feature-card:hover .pw-feature-icon {
  background: rgba(12, 103, 239, 0.14);
}

.pw-feature-icon svg {
  width: 22px;
  height: 22px;
}

.pw-feature-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}

.pw-feature-card p {
  font-size: 0.9375rem;
  color: var(--text-light);
  line-height: 1.65;
}

/* ---------- Steps ---------- */
.pw-steps {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  max-width: 860px;
  margin: 0 auto;
}

.pw-step {
  flex: 1;
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
}

.pw-step.pw-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.pw-step-number {
  width: 52px;
  height: 52px;
  background: var(--primary-color);
  color: #fff;
  font-size: 1.25rem;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  box-shadow: 0 0 0 6px rgba(12, 103, 239, 0.1), 0 4px 16px rgba(12, 103, 239, 0.3);
  letter-spacing: -0.02em;
}

.pw-step-content h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.pw-step-content p {
  font-size: 0.9375rem;
  color: var(--text-light);
  line-height: 1.65;
}

.pw-step-arrow {
  color: var(--border-color);
  padding-top: 16px;
  flex-shrink: 0;
}

/* ---------- Pricing ---------- */
.pw-pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
  max-width: 860px;
  margin: 0 auto;
}

.pw-price-card {
  background: var(--bg-white);
  border: 1.5px solid var(--border-color);
  border-radius: 20px;
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px);
}

.pw-price-card.pw-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.pw-price-card--featured {
  border-color: var(--primary-color);
  box-shadow: 0 12px 40px rgba(12, 103, 239, 0.18), 0 2px 8px rgba(12, 103, 239, 0.1);
}

.pw-price-card-header {
  background: var(--primary-color);
  padding: 28px 28px 24px;
  color: #fff;
}

.pw-price-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 100px;
  padding: 3px 12px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.pw-price-card-header h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.pw-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 0.5rem;
}

.pw-price-from {
  font-size: 0.9375rem;
  opacity: 0.85;
}

.pw-price-amount {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
}

.pw-price-currency {
  font-size: 1.25rem;
  font-weight: 600;
  opacity: 0.9;
}

.pw-price-note {
  font-size: 0.8125rem;
  opacity: 0.8;
}

.pw-price-list {
  list-style: none;
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pw-price-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9375rem;
  color: var(--text-dark);
}

.pw-price-list svg {
  width: 18px;
  height: 18px;
  color: var(--primary-color);
  flex-shrink: 0;
}

.pw-price-cta {
  display: flex;
  margin: 0 28px 28px;
  justify-content: center;
}

/* ---------- Extras stack (two cards in right column) ---------- */
.pw-extras-stack {
  display: flex;
  flex-direction: column;
  gap: 24px;
}


.pw-extras {
  background: var(--bg-white);
  border: 1.5px solid var(--border-color);
  border-radius: 20px;
  padding: 28px;
  opacity: 0;
  transform: translateY(20px);
}

.pw-extras.pw-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.pw-extras-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1.25rem;
}

.pw-extra-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-color);
  gap: 16px;
}

.pw-extra-item:last-of-type {
  border-bottom: none;
}

.pw-extra-name {
  font-size: 0.9375rem;
  color: var(--text-dark);
  line-height: 1.4;
}

.pw-extra-price {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--primary-color);
  white-space: nowrap;
}

.pw-extra-sub {
  display: block;
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--text-light);
  margin-top: 2px;
}

.pw-extras-note {
  font-size: 0.875rem;
  color: var(--text-light);
  margin-top: 1.25rem;
  line-height: 1.6;
}

/* ---------- Who it's for ---------- */
.pw-audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 960px;
  margin: 0 auto;
  align-items: stretch;
}

.pw-audience-card {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 32px 28px;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: var(--transition);
  opacity: 0;
  transform: translateY(20px);
}

.pw-audience-card.pw-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s ease, transform 0.5s ease, box-shadow 0.3s ease;
}

.pw-audience-card:hover {
  box-shadow: 0 6px 24px rgba(0,0,0,0.07);
  transform: translateY(-3px);
  border-color: rgba(255, 120, 78, 0.4);
}

.pw-audience-icon {
  width: 52px;
  height: 52px;
  background: rgba(255, 120, 78, 0.08);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 1.25rem;
  color: var(--secondary-color);
  transition: background 0.2s ease;
}

.pw-audience-card:hover .pw-audience-icon {
  background: rgba(255, 120, 78, 0.14);
}

.pw-audience-icon svg {
  width: 26px;
  height: 26px;
}

.pw-audience-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}

.pw-audience-card p {
  font-size: 0.9375rem;
  color: var(--text-light);
  line-height: 1.65;
}

/* ---------- Contact ---------- */
.pw-contact-wrapper {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: start;
  max-width: 900px;
  margin: 0 auto;
}

.pw-contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

.pw-form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.pw-form-group label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-dark);
}

.pw-form-group input,
.pw-form-group textarea {
  padding: 12px 16px;
  background: var(--bg-white);
  border: 1.5px solid var(--border-color);
  border-radius: 8px;
  font-size: 0.9375rem;
  color: var(--text-dark);
  font-family: inherit;
  transition: border-color 0.2s ease;
  resize: vertical;
}

.pw-form-group input::placeholder,
.pw-form-group textarea::placeholder {
  color: var(--text-light);
}

.pw-form-group input:focus,
.pw-form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(12, 103, 239, 0.1);
}

.pw-submit-btn {
  align-self: flex-start;
  font-size: 1rem;
}

.pw-submit-btn:disabled {
  background: #6b7280;
  cursor: default;
  transform: none;
  box-shadow: none;
}

/* =====================================================
   Multi-step Order Wizard (msf-)
   ===================================================== */

.msf-wizard {
  width: 100%;
}

/* Progress bar (now lives in .pw-modal-progress inside the modal header) */

.msf-step-counter {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-light);
  white-space: nowrap;
  flex-shrink: 0;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.msf-progress-track {
  flex: 1;
  height: 3px;
  background: var(--border-color);
  border-radius: 99px;
  overflow: hidden;
}

.msf-progress-fill {
  height: 100%;
  background: var(--primary-color);
  border-radius: 99px;
  width: 20%;
  transition: width 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Steps */
.msf-step {
  display: none;
  padding: 0;
  animation: msf-step-in 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

.msf-step--active {
  display: block;
}

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

.msf-step-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 18px;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.msf-step-hint {
  font-size: 0.8375rem;
  color: var(--text-light);
  margin: -12px 0 18px;
}

/* Textarea – step 1 */
.msf-textarea {
  display: block;
  width: 100%;
  box-sizing: border-box;
  min-height: 130px;
  padding: 13px 16px;
  background: var(--bg-white);
  border: 1.5px solid var(--border-color);
  border-radius: 12px;
  font-size: 0.9375rem;
  font-family: inherit;
  color: var(--text-dark);
  resize: vertical;
  margin-bottom: 18px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.msf-textarea::placeholder {
  color: var(--text-light);
}

.msf-textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(12, 103, 239, 0.12);
}

/* Card grids */
.msf-cards--grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 22px;
}

.msf-cards--stack {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 22px;
}

/* Individual card */
.msf-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 16px 14px 14px;
  background: var(--bg-white);
  border: 1.5px solid var(--border-color);
  border-radius: 14px;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, transform 0.15s cubic-bezier(0.16, 1, 0.3, 1);
  user-select: none;
  -webkit-user-select: none;
  overflow: hidden;
}

.msf-card::after {
  content: '';
  position: absolute;
  top: 10px;
  right: 10px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1.5px solid var(--border-color);
  background: var(--bg-white);
  transition: border-color 0.2s ease, background 0.2s ease;
}

.msf-card:hover {
  border-color: var(--primary-color);
  box-shadow: 0 4px 16px rgba(12, 103, 239, 0.1);
  transform: translateY(-1px);
}

.msf-card:active {
  transform: scale(0.98);
}

.msf-card:focus-visible {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

.msf-card--selected {
  border-color: var(--primary-color);
  background: rgba(12, 103, 239, 0.05);
  box-shadow: 0 0 0 3px rgba(12, 103, 239, 0.12);
  transform: none;
}

.msf-card--selected::after {
  border-color: var(--primary-color);
  background: var(--primary-color);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 10 10'%3E%3Cpath d='M2 5.5l2 2 4-4' stroke='%23fff' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

[data-theme="dark"] .msf-card--selected {
  background: rgba(12, 103, 239, 0.14);
}

.msf-card-icon {
  display: flex;
  align-items: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(12, 103, 239, 0.08);
  color: var(--primary-color);
  justify-content: center;
  flex-shrink: 0;
  margin-bottom: 2px;
  transition: background 0.2s ease;
}

.msf-card--selected .msf-card-icon {
  background: rgba(12, 103, 239, 0.14);
}

.msf-card-name {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.3;
  padding-right: 22px;
}

.msf-card-desc {
  font-size: 0.775rem;
  color: var(--text-light);
  line-height: 1.45;
  margin: 0;
}

/* Wide card variant */
.msf-card--wide {
  flex-direction: row;
  align-items: center;
  gap: 14px;
}

.msf-card--wide .msf-card-icon {
  flex-shrink: 0;
  margin-bottom: 0;
}

/* "Něco jiného" spans both columns */
.msf-card--wide-last {
  grid-column: 1 / -1;
}

/* Fire / hasičský sbor card variant */
.msf-card--fire .msf-card-icon {
  background: rgba(220, 38, 38, 0.08);
  color: #dc2626;
}

.msf-card--fire:hover {
  border-color: #dc2626;
  box-shadow: 0 4px 16px rgba(220, 38, 38, 0.12);
}

.msf-card--fire:focus-visible {
  outline-color: #dc2626;
}

.msf-card--fire.msf-card--selected {
  border-color: #dc2626;
  background: rgba(220, 38, 38, 0.05);
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.14);
}

.msf-card--fire.msf-card--selected .msf-card-icon {
  background: rgba(220, 38, 38, 0.12);
}

.msf-card--fire.msf-card--selected::after {
  border-color: #dc2626;
  background-color: #dc2626;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 10 10'%3E%3Cpath d='M2 5.5l2 2 4-4' stroke='%23fff' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

/* 24h contact notice in step 2 */
.msf-contact-note {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  font-size: 0.8rem;
  color: var(--text-light);
  background: rgba(12, 103, 239, 0.05);
  border: 1px solid rgba(12, 103, 239, 0.12);
  border-radius: 8px;
  padding: 10px 12px;
  margin: 4px 0 6px;
  line-height: 1.5;
}

/* Contact fields */
.msf-fields {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 22px;
}

.msf-fields-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.msf-field-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.msf-label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-dark);
  letter-spacing: 0.01em;
}

.msf-label-hint {
  font-weight: 400;
  color: var(--text-light);
  font-size: 0.8rem;
}

.msf-input {
  width: 100%;
  box-sizing: border-box;
  padding: 12px 14px;
  background: var(--bg-white);
  border: 1.5px solid var(--border-color);
  border-radius: 10px;
  font-size: 0.9375rem;
  font-family: inherit;
  color: var(--text-dark);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.msf-input::placeholder {
  color: var(--text-light);
}

.msf-input:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(12, 103, 239, 0.12);
}

.msf-input--error {
  border-color: #dc2626;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

/* Navigation row */
.msf-nav {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  padding-top: 18px;
}

/* Buttons */
.msf-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 11px 22px;
  font-size: 0.9375rem;
  font-weight: 600;
  font-family: inherit;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease, opacity 0.18s ease, transform 0.15s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.18s ease;
  text-decoration: none;
}

.msf-btn--primary {
  background: var(--primary-color);
  color: #fff;
  box-shadow: 0 1px 3px rgba(12, 103, 239, 0.25), inset 0 1px 0 rgba(255,255,255,0.12);
}

.msf-btn--primary:hover:not(:disabled) {
  background: #0a55c8;
  box-shadow: 0 4px 14px rgba(12, 103, 239, 0.35), inset 0 1px 0 rgba(255,255,255,0.12);
  transform: translateY(-1px);
}

.msf-btn--primary:active:not(:disabled) {
  transform: scale(0.98) translateY(0);
  box-shadow: 0 1px 3px rgba(12, 103, 239, 0.2);
}

.msf-btn--primary:disabled {
  opacity: 0.36;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.msf-btn--secondary {
  background: transparent;
  color: var(--text-dark);
  border: 1.5px solid var(--border-color);
}

.msf-btn--secondary:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.msf-btn--secondary:active {
  transform: scale(0.98);
}

/* Success */
.msf-success {
  text-align: center;
  padding: 40px 16px;
  animation: msf-step-in 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.msf-success-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  background: rgba(12, 103, 239, 0.08);
  border-radius: 50%;
  color: var(--primary-color);
  margin-bottom: 20px;
  box-shadow: 0 0 0 8px rgba(12, 103, 239, 0.05);
}

.msf-success-icon .msf-check-circle {
  stroke-dasharray: 65;
  stroke-dashoffset: 65;
  animation: msf-circle-draw 0.4s 0.1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.msf-success-icon .msf-check-path {
  stroke-dasharray: 20;
  stroke-dashoffset: 20;
  animation: msf-check-draw 0.3s 0.45s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes msf-circle-draw {
  to { stroke-dashoffset: 0; }
}

@keyframes msf-check-draw {
  to { stroke-dashoffset: 0; }
}

.msf-success-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 10px;
  letter-spacing: -0.02em;
}

.msf-success-text {
  font-size: 0.9375rem;
  color: var(--text-light);
  margin: 0 auto 10px;
  max-width: 360px;
  line-height: 1.65;
}

.msf-success-link {
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: none;
}

.msf-success-link:hover {
  text-decoration: underline;
}

/* Test-mode badge on GoPay button */
.msf-test-badge {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  background: #f59e0b;
  color: #78350f;
  border-radius: 4px;
  padding: 2px 5px;
  margin-left: 2px;
  vertical-align: middle;
  line-height: 1;
}

/* Custom input (Něco jiného) */
.msf-custom-input {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.msf-custom-input[hidden] {
  display: none;
}

.msf-textarea--sm {
  min-height: 80px;
}

/* Summary box */
.msf-summary {
  background: var(--bg-light);
  border: 1.5px solid var(--border-color);
  border-radius: 12px;
  padding: 0 20px;
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
}

.msf-summary-row {
  display: flex;
  gap: 16px;
  align-items: baseline;
  font-size: 0.9rem;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-color);
}

.msf-summary-row:last-child {
  border-bottom: none;
}

.msf-summary-label {
  font-weight: 600;
  color: var(--text-light);
  min-width: 68px;
  flex-shrink: 0;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.msf-summary-value {
  color: var(--text-dark);
  line-height: 1.5;
  font-weight: 500;
}

/* Deposit info */
.msf-deposit-info {
  background: var(--bg-light);
  border: 1.5px solid var(--border-color);
  border-radius: 12px;
  padding: 18px 20px;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
}

.msf-deposit-info::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--primary-color);
  border-radius: 0;
}

.msf-deposit-price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 10px;
}

.msf-deposit-amount {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1;
  letter-spacing: -0.03em;
}

.msf-deposit-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.msf-deposit-text {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.65;
  margin: 0;
}

/* Payment buttons */
.msf-payment-btns {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 12px;
}

.msf-btn--pay {
  width: 100%;
  justify-content: center;
  padding: 13px 22px;
}

.msf-payment-note {
  font-size: 0.8rem;
  color: var(--text-light);
  text-align: center;
  margin: 0 0 4px;
  line-height: 1.55;
}

/* Responsive */
@media (max-width: 600px) {
  .msf-cards--grid {
    grid-template-columns: 1fr;
  }

  .msf-fields-row {
    grid-template-columns: 1fr;
  }

  .msf-step-title {
    font-size: 1.125rem;
  }
}

/* ---------- Contact Info Sidebar ---------- */
.pw-contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 8px;
  min-width: 220px;
}

.pw-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-dark);
}

.pw-contact-item svg {
  width: 20px;
  height: 20px;
  color: var(--primary-color);
  flex-shrink: 0;
}

.pw-contact-trust {
  padding: 16px;
  background: rgba(12, 103, 239, 0.06);
  border-left: 3px solid var(--primary-color);
  border-radius: 0 8px 8px 0;
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.6;
}

.pw-contact-trust p {
  margin-bottom: 0.5rem;
}

.pw-inline-link {
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}

.pw-inline-link:hover {
  border-bottom-color: var(--primary-color);
}

/* =====================================================
   Contact Section – CTA + Channels
   ===================================================== */

.pw-contact-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-bottom: 48px;
}

.pw-contact-main-btn {
  font-size: 1.125rem;
  padding: 18px 44px;
  border-radius: 12px;
  letter-spacing: -0.01em;
}

.pw-contact-cta-hint {
  font-size: 0.875rem;
  color: var(--text-light);
}

.pw-contact-channels {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  max-width: 680px;
  margin: 0 auto;
}

.pw-contact-channel {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 24px 28px;
  background: var(--bg-white);
  border: 1.5px solid var(--border-color);
  border-radius: 16px;
  text-decoration: none;
  color: var(--text-dark);
  transition: border-color 0.2s ease, box-shadow 0.25s ease, transform 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  flex: 1;
  min-width: 160px;
  max-width: 210px;
  text-align: center;
}

.pw-contact-channel:hover {
  border-color: var(--primary-color);
  box-shadow: 0 6px 20px rgba(12, 103, 239, 0.12);
  transform: translateY(-3px);
}

.pw-contact-channel:active {
  transform: scale(0.98);
}

.pw-contact-channel-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(12, 103, 239, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  flex-shrink: 0;
  transition: background 0.2s ease;
}

.pw-contact-channel:hover .pw-contact-channel-icon {
  background: rgba(12, 103, 239, 0.14);
}

.pw-contact-channel-icon svg {
  width: 22px;
  height: 22px;
}

.pw-contact-channel-label {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-dark);
}

.pw-contact-channel-value {
  font-size: 0.8125rem;
  color: var(--text-light);
}

/* =====================================================
   Order Modal
   ===================================================== */

.pw-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(10, 15, 30, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  animation: pw-overlay-in 0.22s ease-out;
}

.pw-modal-overlay[hidden] {
  display: none;
}

@keyframes pw-overlay-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.pw-modal {
  background: var(--bg-white);
  border-radius: 24px;
  box-shadow:
    0 32px 80px rgba(10, 15, 30, 0.2),
    0 8px 24px rgba(10, 15, 30, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
  width: 100%;
  max-width: 560px;
  height: min(600px, 90vh);
  display: flex;
  flex-direction: column;
  animation: pw-modal-in 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

[data-theme="dark"] .pw-modal {
  box-shadow:
    0 32px 80px rgba(0, 0, 0, 0.45),
    0 8px 24px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

@keyframes pw-modal-in {
  from { opacity: 0; transform: translateY(24px) scale(0.96); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* Header bar: back | progress | close */
.pw-modal-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px 16px 14px;
  border-bottom: 1px solid var(--border-color);
  flex-shrink: 0;
}

.pw-modal-back {
  width: 34px;
  height: 34px;
  border: none;
  background: transparent;
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  transition: background 0.15s ease, color 0.15s ease, transform 0.15s ease;
  flex-shrink: 0;
}

.pw-modal-back:hover {
  background: var(--bg-light);
  color: var(--text-dark);
}

.pw-modal-back:active {
  transform: scale(0.94);
}

/* Reserve space even when hidden so layout doesn't shift */
.pw-modal-back[hidden] {
  display: flex;
  visibility: hidden;
  pointer-events: none;
}

.pw-modal-progress {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.pw-modal-close {
  width: 34px;
  height: 34px;
  border: none;
  background: transparent;
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  transition: background 0.15s ease, color 0.15s ease, transform 0.15s ease;
  flex-shrink: 0;
}

.pw-modal-close:hover {
  background: var(--bg-light);
  color: var(--text-dark);
}

.pw-modal-close:active {
  transform: scale(0.94);
}

/* Scrollable content */
.pw-modal-body {
  flex: 1;
  overflow-y: auto;
  padding: 24px 32px 28px;
  min-height: 0;
}

@media (max-width: 520px) {
  .pw-modal-body {
    padding: 20px 20px 24px;
  }

  .pw-modal {
    height: min(640px, 94dvh);
    border-radius: 20px;
  }
}



/* ---------- Footer ---------- */
.pw-footer {
  background: var(--footer-bg);
  color: var(--footer-text);
  padding: 20px 0;
}

.pw-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.pw-footer-copy {
  font-size: 0.875rem;
  color: var(--footer-text-muted);
}

.pw-footer-link {
  font-size: 0.875rem;
  color: var(--footer-text-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.pw-footer-link:hover {
  color: var(--footer-text);
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .pw-hero .pw-container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: left;
  }

  .pw-hero-subtitle {
    max-width: 100%;
  }

  .pw-hero-actions {
    justify-content: flex-start;
  }

  .pw-hero-visual {
    order: -1;
  }

  .pw-mockup {
    max-width: 360px;
  }

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

  .pw-pricing-grid {
    grid-template-columns: 1fr;
    max-width: 460px;
  }

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

  .pw-hosting-hd {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .pw-hero {
    padding: 64px 0 56px;
  }

  .pw-hero .pw-container {
    gap: 0;
  }

  /* Hide mockup, show pills instead */
  .pw-hero-visual {
    display: none;
  }

  .pw-hero-pills {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 2rem;
    width: 100%;
    text-align: left;
  }

  .pw-hero-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(12, 103, 239, 0.07);
    border: 1px solid rgba(12, 103, 239, 0.18);
    border-radius: 10px;
    padding: 10px 14px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--primary-color);
    line-height: 1.3;
  }

  [data-theme="dark"] .pw-hero-pill {
    background: rgba(12, 103, 239, 0.15);
    border-color: rgba(12, 103, 239, 0.3);
  }

  .pw-hero-pill svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
  }

  /* Full-width primary CTA */
  .pw-hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .pw-hero-actions .pw-btn {
    justify-content: center;
    width: 100%;
  }

  .pw-section {
    padding: 60px 0;
  }

  .pw-features-grid,
  .pw-audience-grid {
    grid-template-columns: 1fr;
  }

@media (max-width: 640px) {
  .pw-tiers-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 12px;
    margin: 0 -24px;
    padding: 0 0 16px 20px;
    scroll-padding-left: 20px;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .pw-tiers-grid::-webkit-scrollbar {
    display: none;
  }

  .pw-tier-card {
    flex-shrink: 0;
    width: 82vw;
    max-width: 320px;
    scroll-snap-align: start;
  }

  .pw-tier-card--featured {
    scroll-snap-align: start;
  }

  .pw-tier-card:last-child {
    margin-right: 20px;
  }
}

  .pw-steps {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .pw-step-arrow {
    transform: rotate(90deg);
    padding-top: 0;
  }

  .pw-form-row {
    grid-template-columns: 1fr;
  }

  .pw-header-title {
    display: none;
  }
}

/* ---------- Hosting Plans Pricing ---------- */
.pw-hosting-pricing {
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid var(--border-color);
}

.pw-hosting-hd {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.pw-hosting-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
  letter-spacing: -0.01em;
}

.pw-hosting-desc {
  font-size: 0.9375rem;
  color: var(--text-light);
}

/* Billing toggle */
.pw-billing-toggle {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.pw-billing-label {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-light);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s ease;
  user-select: none;
}

.pw-billing-label--active {
  color: var(--text-dark);
  font-weight: 600;
}

.pw-save-badge {
  display: inline-block;
  background: rgba(34, 197, 94, 0.12);
  color: #16a34a;
  border: 1px solid rgba(34, 197, 94, 0.25);
  border-radius: 100px;
  padding: 2px 8px;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

[data-theme="dark"] .pw-save-badge {
  background: rgba(34, 197, 94, 0.15);
  color: #4ade80;
  border-color: rgba(34, 197, 94, 0.3);
}

.pw-toggle-switch {
  position: relative;
  width: 44px;
  height: 24px;
  background: var(--border-color);
  border: none;
  border-radius: 100px;
  cursor: pointer;
  transition: background 0.25s ease;
  flex-shrink: 0;
  padding: 0;
  outline-offset: 3px;
}

.pw-toggle-switch:focus-visible {
  outline: 2px solid var(--primary-color);
}

.pw-toggle-switch[aria-pressed="true"] {
  background: var(--primary-color);
}

.pw-toggle-thumb {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  pointer-events: none;
}

.pw-toggle-switch[aria-pressed="true"] .pw-toggle-thumb {
  transform: translateX(20px);
}

/* Tiers grid */
.pw-tiers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding-top: 16px; /* room for featured badge overflow */
}

.pw-tier-card {
  background: var(--bg-white);
  border: 1.5px solid var(--border-color);
  border-radius: 14px;
  padding: 22px 20px 20px;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(20px);
}

.pw-tier-card.pw-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.pw-tier-card--featured {
  border-color: var(--primary-color);
  box-shadow: 0 6px 24px rgba(12, 103, 239, 0.14);
}

.pw-tier-badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--primary-color);
  color: #fff;
  border-radius: 100px;
  padding: 3px 10px;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.pw-tier-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.pw-tier-price-wrap {
  display: flex;
  align-items: baseline;
  gap: 3px;
  margin-bottom: 5px;
}

.pw-tier-amount {
  font-size: 1.875rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1;
  letter-spacing: -0.03em;
}

.pw-tier-currency {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-dark);
  opacity: 0.65;
}

.pw-tier-period {
  font-size: 0.8125rem;
  color: var(--text-light);
  margin-left: 1px;
}

.pw-tier-billing-note {
  font-size: 0.75rem;
  color: var(--text-light);
  margin-bottom: 16px;
  min-height: 1em;
  display: block;
}

.pw-tier-features {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.pw-tier-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  color: var(--text-dark);
  line-height: 1.35;
}

.pw-tier-feature::before {
  content: "";
  width: 16px;
  height: 16px;
  border-radius: 50%;
  flex-shrink: 0;
  background-size: 10px 10px;
  background-repeat: no-repeat;
  background-position: center;
}

.pw-tier-feature--yes::before {
  background-color: rgba(34, 197, 94, 0.14);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 10 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.5 5L4 7.5L8.5 2.5' stroke='%2316a34a' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.pw-tier-feature--no {
  color: var(--text-light);
  opacity: 0.45;
}

.pw-tier-feature--no::before {
  background-color: rgba(107, 114, 128, 0.1);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 10 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2.5 2.5L7.5 7.5M7.5 2.5L2.5 7.5' stroke='%236b7280' stroke-width='1.4' stroke-linecap='round'/%3E%3C/svg%3E");
}

.pw-tier-cta {
  width: 100%;
  justify-content: center;
  padding: 11px 16px;
  font-size: 0.9375rem;
}

/* Scroll hint – visible only on mobile */
.pw-tiers-scroll-hint {
  display: none;
}

@media (max-width: 640px) {
  .pw-tiers-scroll-hint {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 10px;
    font-size: 0.75rem;
    color: var(--text-light);
  }

  .pw-tiers-scroll-hint svg {
    width: 14px;
    height: 14px;
    opacity: 0.6;
  }
}

/* ---------- Dark Theme Overrides ---------- */
.pw-tier-discount-badge {
  display: none;
  background: rgba(34, 197, 94, 0.12);
  color: #16a34a;
  border: 1px solid rgba(34, 197, 94, 0.25);
  border-radius: 100px;
  padding: 2px 7px;
  font-size: 0.6875rem;
  font-weight: 700;
  margin-left: 4px;
  align-self: center;
  white-space: nowrap;
}

[data-theme="dark"] .pw-tier-discount-badge {
  background: rgba(34, 197, 94, 0.15);
  color: #4ade80;
  border-color: rgba(34, 197, 94, 0.3);
}

.pw-tiers-grid.pw-billing--yearly .pw-tier-discount-badge {
  display: inline-block;
}


  background: var(--bg-white);
}


  background: var(--bg-white);
}

[data-theme="dark"] .pw-feature-card,
[data-theme="dark"] .pw-audience-card,
[data-theme="dark"] .pw-price-card,
[data-theme="dark"] .pw-extras {
  background: var(--bg-white);
}

[data-theme="dark"] .pw-form-group input,
[data-theme="dark"] .pw-form-group textarea {
  background: var(--bg-white);
}

[data-theme="dark"] .pw-contact-trust {
  background: rgba(255, 255, 255, 0.04);
}

/* ---------- Showcase ---------- */
.pw-showcase-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 800px;
  margin: 0 auto;
}

.pw-showcase-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  border-radius: 16px;
  border: 1.5px solid var(--border-color);
  background: var(--bg-white);
  overflow: hidden;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s ease, border-color 0.2s ease;
  opacity: 0;
  transform: translateY(20px);
}

.pw-showcase-card.pw-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s ease, transform 0.5s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.pw-showcase-card:hover {
  border-color: var(--primary-color);
  box-shadow: 0 12px 40px rgba(12, 103, 239, 0.14);
  transform: translateY(-4px);
}

.pw-showcase-card:hover .pw-showcase-visit {
  color: var(--primary-color);
}

.pw-showcase-browser {
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid var(--border-color);
}

.pw-showcase-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: var(--bg-light);
  border-bottom: 1px solid var(--border-color);
}

.pw-showcase-dots {
  display: flex;
  gap: 5px;
  flex-shrink: 0;
}

.pw-showcase-dots i {
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border-color);
  font-style: normal;
}

.pw-showcase-dots i:nth-child(1) { background: #fc5f57; }
.pw-showcase-dots i:nth-child(2) { background: #fdbc2c; }
.pw-showcase-dots i:nth-child(3) { background: #27ca3f; }

.pw-showcase-url {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-light);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 1;
  text-align: center;
}

.pw-showcase-img-wrap {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--border-color);
}

.pw-showcase-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.pw-showcase-card:hover .pw-showcase-img-wrap img {
  transform: scale(1.04);
}

.pw-showcase-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  gap: 8px;
}

.pw-showcase-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: -0.01em;
}

.pw-showcase-visit {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-light);
  transition: color 0.2s ease;
  white-space: nowrap;
  flex-shrink: 0;
}

[data-theme="dark"] .pw-showcase-card {
  background: var(--bg-white);
}

[data-theme="dark"] .pw-showcase-bar {
  background: rgba(255, 255, 255, 0.04);
}

@media (max-width: 580px) {
  .pw-showcase-grid {
    grid-template-columns: 1fr;
  }
}
