/* ========== PRICING LEAD MAGNET — Brand-Aligned CSS ========== */
/* Matches The Health Store Turkey main site: #00437A blue, #56B84F green */

/* ========== RESET & VARIABLES ========== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #00437A;
  --primary-light: #0a5a9e;
  --primary-dark: #002d54;
  --accent: #56B84F;
  --accent-light: #6ec965;
  --accent-dark: #3d9636;
  --dark: #0a1f33;
  --light: #f0f7ed;
  --text: #1e293b;
  --text-light: #4A4E51;
  --text-muted: #94a3b8;
  --white: #ffffff;
  --border: #e2e8f0;
  --error: #e53e3e;
  --error-bg: #fff5f5;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.12);
  --shadow-card: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-card-hover: 0 8px 24px rgba(0, 0, 0, 0.1);
  --radius: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  line-height: 1.2;
}

/* ========== HEADER ========== */
.app-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 12px 24px;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}

.header-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.logo img {
  height: 40px;
  width: auto;
}

.header-trust {
  display: flex;
  gap: 16px;
}

.trust-badge {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 4px;
}

.trust-badge i {
  color: var(--accent);
  font-size: 0.8rem;
}

@media (max-width: 600px) {
  .app-header { padding: 10px 16px; }
  .logo img { height: 32px; }
  .header-trust { display: none; }
}

/* ========== PROGRESS BAR ========== */
.progress-wrapper {
  max-width: 900px;
  margin: 0 auto;
  padding: 24px 24px 0;
}

.progress-bar {
  height: 6px;
  background: var(--border);
  border-radius: 3px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  width: 12.5%; /* 1/8 */
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 3px;
  transition: width var(--transition-slow);
}

.progress-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: right;
  margin-top: 6px;
  font-weight: 500;
}

@media (max-width: 600px) {
  .progress-wrapper { padding: 16px 16px 0; }
}

/* ========== STEPS CONTAINER ========== */
.app-container {
  flex: 1;
  width: 100%;
  overflow: hidden;
}

.steps-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px 120px;
  position: relative;
  min-height: 500px;
}

.step {
  display: none;
  opacity: 0;
  transform: translateX(60px);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
  pointer-events: none;
}

.step.active {
  display: block;
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.step.exit-left {
  opacity: 0;
  transform: translateX(-60px);
}

.step-content {
  padding: 40px 0;
}

.step-centered {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 400px;
  text-align: center;
}

@media (max-width: 600px) {
  .steps-container { padding: 0 16px 100px; }
  .step-content { padding: 24px 0; }
}

/* ========== STEP TYPOGRAPHY ========== */
.step-title {
  font-size: 1.75rem;
  color: var(--dark);
  margin-bottom: 8px;
}

.step-subtitle {
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 32px;
  max-width: 560px;
}

.step-trust {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.step-trust::before {
  content: '\f3ed';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: var(--accent);
}

@media (max-width: 600px) {
  .step-title { font-size: 1.4rem; }
  .step-subtitle { font-size: 0.9rem; margin-bottom: 24px; }
}

/* ========== BACK BUTTON ========== */
.back-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  color: var(--text-light);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  padding: 8px 0;
  margin-bottom: 16px;
  transition: color var(--transition);
  font-family: inherit;
}

.back-btn:hover {
  color: var(--primary);
}

/* ========== CURRENCY CARDS (Step 1) ========== */
.currency-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 480px;
}

.currency-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 28px 16px;
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all var(--transition);
  font-family: inherit;
  box-shadow: var(--shadow-card);
}

.currency-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-2px);
}

.currency-card.selected {
  border-color: var(--primary);
  background: rgba(0, 67, 122, 0.04);
  box-shadow: 0 0 0 3px rgba(0, 67, 122, 0.12), var(--shadow-card);
}

.currency-flag {
  font-size: 2rem;
  line-height: 1;
}

.currency-symbol {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}

.currency-name {
  font-size: 0.85rem;
  color: var(--text-light);
  font-weight: 500;
}

@media (max-width: 400px) {
  .currency-card { padding: 20px 12px; }
  .currency-symbol { font-size: 1.3rem; }
}

/* ========== PACKAGE CARDS (Step 2) ========== */
.package-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 600px;
}

.package-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all var(--transition);
  font-family: inherit;
  text-align: left;
  width: 100%;
  position: relative;
  box-shadow: var(--shadow-card);
}

.package-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-card-hover);
}

.package-card.selected {
  border-color: var(--primary);
  background: rgba(0, 67, 122, 0.04);
  box-shadow: 0 0 0 3px rgba(0, 67, 122, 0.12), var(--shadow-card);
}

.package-card.selected .package-check i {
  color: var(--primary);
}

.package-card.selected .package-check i::before {
  content: '\f058'; /* fa-circle-check */
}

.package-card.recommended {
  border-color: var(--accent);
}

.recommended-badge {
  position: absolute;
  top: -10px;
  right: 16px;
  background: var(--accent);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 3px 10px;
  border-radius: 12px;
}

.package-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--light);
  color: var(--primary);
  font-size: 1.1rem;
}

.package-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.package-name {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
}

.package-desc {
  font-size: 0.8rem;
  color: var(--text-light);
}

.package-check {
  flex-shrink: 0;
  font-size: 1.25rem;
  color: var(--border);
  transition: color var(--transition);
}

@media (max-width: 600px) {
  .package-card { padding: 16px; gap: 12px; }
  .package-icon { width: 38px; height: 38px; font-size: 1rem; }
  .package-name { font-size: 0.88rem; }
}

/* ========== CATEGORY GRID (Step 3) ========== */
.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.category-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 28px 16px;
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all var(--transition);
  font-family: inherit;
  text-align: center;
  box-shadow: var(--shadow-card);
}

.category-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-2px);
}

.category-card.selected {
  border-color: var(--primary);
  background: rgba(0, 67, 122, 0.04);
  box-shadow: 0 0 0 3px rgba(0, 67, 122, 0.12), var(--shadow-card);
}

.category-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  transition: all var(--transition);
}

.category-card.selected .category-icon,
.category-card:hover .category-icon {
  background: var(--primary);
  color: var(--white);
}

.category-name {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--text);
}

.category-count {
  font-size: 0.75rem;
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .category-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .category-grid { grid-template-columns: 1fr; }
  .category-card {
    flex-direction: row;
    padding: 16px;
    gap: 14px;
    text-align: left;
  }
  .category-icon { width: 44px; height: 44px; font-size: 1.1rem; }
}

/* ========== PROCEDURE GRID (Step 4) ========== */
.procedure-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}

.procedure-card {
  display: flex;
  flex-direction: column;
  padding: 20px;
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  font-family: inherit;
  text-align: left;
  position: relative;
  box-shadow: var(--shadow-card);
}

.procedure-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-card-hover);
}

.procedure-card.selected {
  border-color: var(--accent);
  background: rgba(86, 184, 79, 0.04);
  box-shadow: 0 0 0 3px rgba(86, 184, 79, 0.15), var(--shadow-card);
}

.procedure-card.selected::after {
  content: '\f058';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  top: 10px;
  right: 10px;
  color: var(--accent);
  font-size: 1.2rem;
}

.procedure-name {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--text);
  margin-bottom: 8px;
  padding-right: 28px;
}

.procedure-price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 6px;
}

.procedure-meta {
  display: flex;
  gap: 12px;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.procedure-meta span {
  display: flex;
  align-items: center;
  gap: 3px;
}

@media (max-width: 600px) {
  .procedure-grid { grid-template-columns: 1fr; }
  .procedure-card { padding: 16px; }
}

/* ========== STEP FOOTER / NEXT BUTTON ========== */
.step-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 16px 24px;
  z-index: 50;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.06);
}

.step-footer .btn-next {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  width: 100%;
}

/* ========== REVIEW SCREEN (Step 5) ========== */
.review-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.review-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.review-item-info {
  flex: 1;
}

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

.review-item-meta {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.review-item-price {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary);
  white-space: nowrap;
}

.review-item-remove {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 1rem;
  padding: 8px;
  border-radius: 50%;
  transition: all var(--transition);
  font-family: inherit;
  flex-shrink: 0;
}

.review-item-remove:hover {
  color: var(--error);
  background: var(--error-bg);
}

.review-total {
  background: var(--light);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.review-total-label {
  font-size: 0.9rem;
  color: var(--text-light);
  font-weight: 500;
}

.review-total-amount {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  font-family: 'Playfair Display', Georgia, serif;
}

.combo-teaser {
  width: 100%;
  margin-top: 16px;
  padding: 14px 18px;
  background: rgba(86, 184, 79, 0.08);
  border: 1px solid rgba(86, 184, 79, 0.25);
  border-radius: var(--radius);
  font-size: 0.85rem;
  color: var(--text);
  line-height: 1.5;
}

.combo-teaser i {
  color: var(--accent);
  margin-right: 4px;
}

.review-actions {
  display: flex;
  gap: 12px;
}

@media (max-width: 600px) {
  .review-actions { flex-direction: column; }
  .review-item { padding: 12px 16px; gap: 12px; }
}

/* ========== LOADING ANIMATION (Step 6) ========== */
.loading-animation {
  position: relative;
  width: 100px;
  height: 100px;
  margin-bottom: 32px;
}

.loading-spinner {
  width: 100px;
  height: 100px;
  border: 4px solid var(--border);
  border-top-color: var(--primary);
  border-right-color: var(--accent);
  border-radius: 50%;
  animation: spin 1.2s linear infinite;
}

.loading-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.8rem;
  color: var(--primary);
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ========== CONTACT FORM (Step 7) ========== */
.contact-form {
  max-width: 480px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"] {
  width: 100%;
  padding: 14px 16px;
  font-size: 1rem;
  font-family: inherit;
  color: var(--text);
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.form-group input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0, 67, 122, 0.1);
}

.form-group input.error {
  border-color: var(--error);
  box-shadow: 0 0 0 3px rgba(229, 62, 62, 0.1);
}

.form-error {
  font-size: 0.8rem;
  color: var(--error);
  display: none;
  margin-top: 4px;
}

.form-error.visible {
  display: block;
}

/* Consent */
.form-consent {
  margin-top: 24px;
}

.consent-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.5;
}

.consent-label input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.consent-check {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  border: 2px solid var(--border);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: transparent;
  transition: all var(--transition);
  margin-top: 1px;
}

.consent-label input:checked + .consent-check {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

.consent-label input:focus-visible + .consent-check {
  box-shadow: 0 0 0 3px rgba(0, 67, 122, 0.2);
}

/* ========== RESULTS (Step 8) ========== */
.results-header {
  text-align: center;
  margin-bottom: 32px;
}

.results-icon {
  font-size: 3rem;
  color: var(--accent);
  margin-bottom: 16px;
}

.results-package-summary {
  background: var(--light);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.results-package-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

.results-package-value {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
}

.results-package-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.results-package-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
}

.results-treatments {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.result-treatment-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.result-treatment-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: var(--white);
}

.result-treatment-name {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
}

.result-treatment-subtotal {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--primary);
}

.result-treatment-breakdown {
  padding: 12px 20px;
  background: #fafbfc;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.result-breakdown-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  color: var(--text-light);
}

.result-breakdown-row span:last-child {
  font-weight: 500;
}

.results-grand-total {
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.grand-total-label {
  font-size: 1rem;
  font-weight: 500;
  opacity: 0.9;
}

.grand-total-note {
  font-size: 0.75rem;
  opacity: 0.7;
  margin-top: 2px;
}

.grand-total-amount {
  font-size: 2rem;
  font-weight: 700;
  font-family: 'Playfair Display', Georgia, serif;
}

.combo-banner {
  background: linear-gradient(135deg, rgba(86, 184, 79, 0.1), rgba(0, 67, 122, 0.06));
  border: 1px solid rgba(86, 184, 79, 0.3);
  border-radius: var(--radius-lg);
  padding: 18px 24px;
  margin-bottom: 20px;
  font-size: 0.9rem;
  color: var(--text);
  text-align: center;
  line-height: 1.5;
  font-weight: 500;
}

.results-disclaimer {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 32px;
  font-style: italic;
}

.results-ctas {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 480px;
  margin: 0 auto;
}

@media (max-width: 600px) {
  .results-package-summary { flex-direction: column; align-items: flex-start; gap: 12px; }
  .results-package-divider { width: 100%; height: 1px; }
  .grand-total-amount { font-size: 1.6rem; }
}

/* ========== BUTTONS ========== */
.btn-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  background: var(--accent);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
  color: var(--white);
}

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

.btn-primary:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.btn-accent {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  background: #25D366;
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}

.btn-accent:hover {
  background: #1da851;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
  color: var(--white);
}

.btn-outline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  background: var(--white);
  color: var(--primary);
  border: 2px solid var(--primary);
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  flex: 1;
}

.btn-outline:hover {
  background: rgba(0, 67, 122, 0.04);
  color: var(--primary);
}

.btn-cta {
  width: 100%;
}

/* Submit button states */
.btn-submit .btn-loading {
  display: none;
}

.btn-submit.loading .btn-text {
  display: none;
}

.btn-submit.loading .btn-loading {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* ========== WHATSAPP HELPER ========== */
.wa-helper {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 90;
}

.wa-helper-link {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: var(--white);
  padding: 12px 20px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
  transition: all var(--transition);
  font-size: 0.88rem;
  font-weight: 600;
}

.wa-helper-link:hover {
  background: #1da851;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
  color: var(--white);
}

.wa-helper-icon {
  font-size: 1.3rem;
  line-height: 1;
  flex-shrink: 0;
}

.wa-helper-text {
  white-space: nowrap;
  overflow: hidden;
  max-width: 200px;
  transition: max-width 0.4s ease, opacity 0.3s ease, padding 0.3s ease;
  opacity: 1;
}

.wa-helper.collapsed .wa-helper-text {
  max-width: 0;
  opacity: 0;
  padding: 0;
}

.wa-helper.collapsed .wa-helper-link {
  padding: 14px;
  border-radius: 50%;
}

.wa-helper:hover .wa-helper-text,
.wa-helper.expanded .wa-helper-text {
  max-width: 200px;
  opacity: 1;
}

.wa-helper:hover .wa-helper-link,
.wa-helper.expanded .wa-helper-link {
  padding: 12px 20px;
  border-radius: 50px;
}

@media (max-width: 600px) {
  .wa-helper { bottom: 16px; right: 16px; }
  .wa-helper-link { padding: 10px 16px; font-size: 0.82rem; }
  .wa-helper.collapsed .wa-helper-link { padding: 12px; }
}

/* ========== EMPTY STATE ========== */
.empty-state {
  text-align: center;
  padding: 48px 24px;
  color: var(--text-muted);
}

.empty-state i {
  font-size: 2.5rem;
  margin-bottom: 16px;
  opacity: 0.5;
}

.empty-state p {
  font-size: 0.9rem;
}

/* ========== UTILITY ========== */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* Focus visible for keyboard navigation */
.currency-card:focus-visible,
.package-card:focus-visible,
.category-card:focus-visible,
.procedure-card:focus-visible,
.btn-primary:focus-visible,
.btn-outline:focus-visible,
.btn-accent:focus-visible,
.back-btn:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 2px;
}

/* Scroll prevention when step footer is visible */
body.has-step-footer {
  padding-bottom: 80px;
}
