
:root {
  --zwei-blue: #566f82;
  --zwei-blue-dark: #344d5e;
  --zwei-blue-light: #f3f7fa;
  --zwei-bg: #f8fafc;
  --zwei-text: #1e293b;
  --zwei-muted: #64748b;
  --zwei-line: #e2e8f0;
  --zwei-card: #ffffff;
  --zwei-green: #10b981;
  --zwei-green-light: #ecfdf5;
  --zwei-red: #ef4444;
  --zwei-red-light: #fef2f2;
  --zwei-radius: 24px;
  --zwei-shadow: 0 20px 40px -15px rgba(30, 41, 59, 0.05);
}

.zweiq-wrap {
  max-width: 1040px;
  margin: 0 auto;
  padding: 40px 20px 60px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  color: var(--zwei-text);
  background-color: var(--zwei-bg);
  border-radius: var(--zwei-radius);
}

/* HERO SECTION */
.zweiq-hero {
  text-align: center;
  margin-bottom: 16px;
  padding: 20px 24px;
  border-radius: var(--zwei-radius);
  background: 
    radial-gradient(circle at top left, rgba(86,111,130,0.12), transparent 40%),
    radial-gradient(circle at bottom right, rgba(52,77,94,0.06), transparent 40%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid var(--zwei-line);
  box-shadow: var(--zwei-shadow);
}

.zweiq-brand {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  color: var(--zwei-blue);
  font-weight: 900;
  font-size: 38px;
  letter-spacing: -2px;
  margin-bottom: 12px;
}

.zweiq-brand span {
  color: #94a3b8;
  font-size: 12px;
  letter-spacing: 4px;
  font-weight: 800;
}

.zweiq-kicker {
  margin: 0 0 4px;
  font-weight: 800;
  color: var(--zwei-blue-dark);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 12px;
}

.zweiq-hero h1 {
  margin: 0 auto 14px;
  max-width: 800px;
  font-size: clamp(26px, 4.5vw, 40px);
  line-height: 1.15;
  color: var(--zwei-blue-dark);
  font-weight: 800;
}

.zweiq-subtitle {
  max-width: 760px;
  margin: 0 auto;
  color: var(--zwei-muted);
  font-size: 16px;
  line-height: 1.6;
}

.zweiq-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  justify-content: center;
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px dashed var(--zwei-line);
}

.zweiq-trust span {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  color: var(--zwei-muted);
  font-weight: 600;
  font-size: 12.5px;
  box-shadow: none;
  display: inline-flex;
  align-items: center;
  letter-spacing: 0.01em;
  transition: color 0.2s ease;
}

.zweiq-trust span:hover {
  color: var(--zwei-blue-dark);
}

/* WIZARD CARD & STEPPERS */
.zweiq-card {
  background: var(--zwei-card);
  border: 1px solid var(--zwei-line);
  border-radius: var(--zwei-radius);
  box-shadow: 0 25px 60px -20px rgba(15, 23, 42, 0.08);
  padding: clamp(16px, 3vw, 24px);
}

.zweiq-stepper-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  margin-bottom: 16px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Conexión de fondo del Stepper */
.zweiq-stepper-header::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 30px;
  right: 30px;
  height: 4px;
  background: #f1f5f9;
  z-index: 1;
  border-radius: 999px;
}

.zweiq-stepper-step {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex: 1;
  text-align: center;
}

.zweiq-step-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #ffffff;
  border: 3px solid #e2e8f0;
  color: #94a3b8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 16px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.zweiq-step-label {
  font-weight: 700;
  font-size: 14px;
  color: #94a3b8;
  transition: color 0.3s ease;
}

/* Estados de Stepper */
.zweiq-stepper-step.active .zweiq-step-icon {
  border-color: var(--zwei-blue);
  background: var(--zwei-blue);
  color: #ffffff;
  box-shadow: 0 0 0 5px rgba(86, 111, 130, 0.15);
}

.zweiq-stepper-step.active .zweiq-step-label {
  color: var(--zwei-blue-dark);
}

.zweiq-stepper-step.completed .zweiq-step-icon {
  border-color: var(--zwei-green);
  background: var(--zwei-green);
  color: #ffffff;
}

.zweiq-stepper-step.completed .zweiq-step-label {
  color: var(--zwei-green);
}

/* PROGRESS BAR COMPLEMENTARIO */
.zweiq-progress {
  height: 4px;
  background: #f1f5f9;
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 16px;
}

.zweiq-progress-bar span {
  display: block;
  height: 100%;
  width: 25%;
  background: linear-gradient(90deg, var(--zwei-blue), var(--zwei-blue-dark));
  border-radius: inherit;
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ANIMATION STEPS */
.zweiq-step {
  display: none;
  animation: zweiSlideIn 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.zweiq-step.is-active {
  display: block;
}

@keyframes zweiSlideIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.zweiq-step h2 {
  margin: 0 0 8px;
  font-size: clamp(22px, 3.5vw, 28px);
  color: var(--zwei-blue-dark);
  font-weight: 800;
}

.zweiq-help {
  color: var(--zwei-muted);
  margin: 0 0 16px;
  font-size: 15px;
}

/* SEARCH FILTER STYLING */
.zweiq-search-wrapper {
  position: relative;
  margin-bottom: 18px;
  width: 100%;
}

.zweiq-search-icon-inside {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  color: var(--zwei-muted);
  pointer-events: none;
}

.zweiq-search-input {
  width: 100%;
  box-sizing: border-box;
  padding: 14px 44px 14px 44px !important;
  border-radius: 16px !important;
  border: 1px solid var(--zwei-line) !important;
  font-size: 15px !important;
  background: #ffffff !important;
  color: var(--zwei-text) !important;
  outline: none !important;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1) !important;
  margin-top: 0 !important;
}

.zweiq-search-input:focus {
  border-color: var(--zwei-blue) !important;
  box-shadow: 0 0 0 4px rgba(86, 111, 130, 0.1), 0 10px 25px -10px rgba(86, 111, 130, 0.08) !important;
}

.zweiq-search-clear {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  border: 0;
  background: #e2e8f0;
  color: var(--zwei-muted);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  padding: 0;
  transition: all 0.2s ease;
  line-height: 1;
}

.zweiq-search-clear:hover {
  background: var(--zwei-red);
  color: #ffffff;
}

/* ACTIONS BELOW FILTER */
.zweiq-filter-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: -20px;
  margin-bottom: 16px;
  width: 100%;
}

.zweiq-filter-action-link {
  background: none;
  border: none;
  padding: 6px 12px;
  font-size: 13px;
  font-weight: 700;
  color: var(--zwei-blue-dark);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 8px;
  transition: all 0.2s ease;
  user-select: none;
  outline: none;
}

.zweiq-filter-action-link:hover {
  background: var(--zwei-blue-light);
  color: var(--zwei-blue);
}

.zweiq-toggle-icon {
  font-size: 14px;
  line-height: 1;
}


.zweiq-no-results-msg {
  text-align: center;
  padding: 40px 20px;
  color: var(--zwei-muted);
  font-weight: 700;
  font-size: 16px;
  display: none;
  animation: zweiSlideIn 0.3s ease;
}

/* PASO 1: SELECCIÓN MÚLTIPLE DE SERVICIOS */
.zweiq-category-block {
  margin-bottom: 12px;
  border: 1px solid var(--zwei-line);
  border-radius: 18px;
  background: #ffffff;
  overflow: hidden;
  transition: all 0.3s ease;
}

.zweiq-category-block.is-expanded {
  box-shadow: 0 10px 25px -10px rgba(30, 41, 59, 0.05);
  border-color: #cbd5e1;
}

.zweiq-category-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  background: #f8fafc;
  cursor: pointer;
  user-select: none;
  transition: background 0.2s ease;
}

.zweiq-category-header:hover {
  background: #f1f5f9;
}

.zweiq-category-block.is-expanded .zweiq-category-header {
  background: #ffffff;
  border-bottom: 1px solid var(--zwei-line);
}

.zweiq-category-header h3 {
  font-size: 15px;
  color: var(--zwei-blue-dark);
  border-left: 4px solid var(--zwei-blue);
  padding-left: 12px;
  margin: 0;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.zweiq-category-chevron {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--zwei-muted);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.zweiq-category-block.is-expanded .zweiq-category-chevron {
  transform: rotate(180deg);
  color: var(--zwei-blue-dark);
}

/* Collapsible Content Wrapper */
.zweiq-category-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.zweiq-category-block.is-expanded .zweiq-category-content {
  grid-template-rows: 1fr;
}

.zweiq-category-inner {
  min-height: 0;
}

.zweiq-options-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 16px;
}

.zweiq-service-card {
  border: 1px solid var(--zwei-line);
  border-radius: 18px;
  background: #ffffff;
  padding: 16px;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  box-shadow: 0 2px 4px rgba(0,0,0,0.01);
}

.zweiq-service-card:hover {
  border-color: #cbd5e1;
  box-shadow: 0 8px 20px rgba(30,41,59,0.04);
  transform: translateY(-2px);
}

.zweiq-service-main-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  width: 100%;
}

.zweiq-service-checkbox {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  border-radius: 6px;
  border: 2px solid #cbd5e1;
  accent-color: var(--zwei-blue-dark);
  cursor: pointer;
  flex-shrink: 0;
}

.zweiq-service-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.zweiq-service-title-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 15px;
  color: var(--zwei-text);
  user-select: none;
}

.zweiq-service-icon {
  font-size: 20px;
  flex-shrink: 0;
  line-height: 1;
}

.zweiq-service-title {
  line-height: 1.2;
}

.zweiq-service-description {
  margin: 2px 0 0;
  font-size: 12.5px;
  line-height: 1.4;
  color: var(--zwei-muted);
  font-weight: 500;
}

/* Estado de tarjeta de servicio seleccionada */
.zweiq-service-card.is-active {
  border-color: var(--zwei-blue);
  background: var(--zwei-blue-light);
  box-shadow: 0 4px 15px rgba(86,111,130,0.06);
}

.zweiq-service-card.is-active .zweiq-service-title {
  color: var(--zwei-blue-dark);
}

/* Contenedor de tareas (siempre visible sin despliegue) */
.zweiq-subtasks-wrapper {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px dashed var(--zwei-line);
}

.zweiq-subtasks-title {
  font-size: 13px;
  color: var(--zwei-blue-dark);
  font-weight: 800;
  margin: 0 0 10px;
}

.zweiq-subtasks-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.zweiq-subtask-chip {
  position: relative;
  cursor: pointer;
}

.zweiq-subtask-chip input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.zweiq-subtask-chip span {
  display: block;
  background: #ffffff;
  border: 1px solid var(--zwei-line);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  color: var(--zwei-muted);
  transition: all 0.2s ease;
  user-select: none;
}

.zweiq-subtask-chip:hover span {
  border-color: #cbd5e1;
  color: var(--zwei-text);
  background: #f8fafc;
}

.zweiq-subtask-chip input:checked + span {
  background: var(--zwei-blue-dark);
  border-color: var(--zwei-blue-dark);
  color: #ffffff;
  box-shadow: 0 2px 6px rgba(52, 77, 94, 0.2);
}

/* PASO 2: MÓDULOS DE ESPECIFICACIONES TÉCNICAS */
.zweiq-technical-module {
  background: #f8fafc;
  border: 1px solid var(--zwei-line);
  border-radius: 20px;
  padding: 24px;
  margin-bottom: 24px;
  animation: zweiSlideIn 0.3s ease;
}

.zweiq-module-header {
  font-size: 15px;
  font-weight: 800;
  color: var(--zwei-blue-dark);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 18px;
  padding-bottom: 8px;
  border-bottom: 2px solid #e2e8f0;
}

.zweiq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.zweiq-full-width {
  grid-column: span 2;
}

.zweiq-full {
  display: block;
  margin-top: 20px;
}

/* ELEMENTOS DE FORMULARIO COMUNES */
.zweiq-card label {
  display: block;
  color: var(--zwei-text);
  font-weight: 700;
  font-size: 14px;
}

.zweiq-card input[type="text"],
.zweiq-card input[type="number"],
.zweiq-card input[type="email"],
.zweiq-card input[type="tel"],
.zweiq-card input[type="date"],
.zweiq-card select,
.zweiq-card textarea {
  width: 100%;
  box-sizing: border-box;
  margin-top: 8px;
  border: 1px solid var(--zwei-line);
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 15px;
  color: var(--zwei-text);
  background: #ffffff;
  outline: none;
  transition: all 0.2s ease;
}

.zweiq-card input:focus,
.zweiq-card select:focus,
.zweiq-card textarea:focus {
  border-color: var(--zwei-blue);
  box-shadow: 0 0 0 4px rgba(86, 111, 130, 0.1);
  background: #ffffff;
}

/* Validaciones inline */
.zweiq-card .is-invalid {
  border-color: var(--zwei-red) !important;
  background-color: var(--zwei-red-light) !important;
}

.zweiq-card .is-invalid:focus {
  box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.1) !important;
}

.zweiq-card .is-valid {
  border-color: var(--zwei-green) !important;
}

.zweiq-error-msg {
  display: block;
  color: var(--zwei-red);
  font-size: 12px;
  font-weight: 600;
  margin-top: 5px;
  animation: zweiSlideIn 0.2s ease;
}

.zweiq-error-container {
  display: none;
  background: var(--zwei-red-light);
  border: 1px solid #fca5a5;
  border-radius: 12px;
  padding: 12px 16px;
  color: #991b1b;
  font-weight: 700;
  font-size: 14px;
  margin-top: 20px;
}

/* DRAG & DROP ZONE */
.zweiq-dragdrop-zone {
  border: 2px dashed #cbd5e1;
  border-radius: 18px;
  background: #ffffff;
  padding: 28px 20px;
  text-align: center;
  transition: all 0.25s ease;
  margin-top: 10px;
  cursor: pointer;
  position: relative;
}

.zweiq-dragdrop-zone.hover {
  border-color: var(--zwei-blue);
  background: var(--zwei-blue-light);
}

.zweiq-dragdrop-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  pointer-events: none;
}

.zweiq-cloud-icon {
  font-size: 38px;
  color: var(--zwei-blue);
  line-height: 1;
}

.zweiq-dragdrop-main-text {
  font-size: 15px;
  font-weight: 700;
  color: var(--zwei-text);
  margin: 0;
}

.zweiq-browse-btn {
  background: none;
  border: 0;
  padding: 0;
  color: var(--zwei-blue-dark);
  text-decoration: underline;
  font-weight: 800;
  cursor: pointer;
  font-size: inherit;
}

.zweiq-dragdrop-sub-text {
  font-size: 12px;
  color: var(--zwei-muted);
  margin: 0;
}

/* Preview de archivos */
.zweiq-dragdrop-preview {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: #f8fafc;
  border: 1px solid var(--zwei-line);
  padding: 12px 20px;
  border-radius: 12px;
  max-width: 440px;
  margin: 0 auto;
  box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}

.zweiq-file-icon {
  font-size: 20px;
}

.zweiq-file-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--zwei-text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 220px;
}

.zweiq-file-size {
  font-size: 12px;
  color: var(--zwei-muted);
}

.zweiq-remove-file-btn {
  background: #e2e8f0;
  border: 0;
  color: var(--zwei-text);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.zweiq-remove-file-btn:hover {
  background: var(--zwei-red);
  color: #ffffff;
}

/* PASO 3: CONSENTIMIENTOS Y LOGÍSTICA */
.zweiq-consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 24px;
  color: var(--zwei-muted);
  cursor: pointer;
}

.zweiq-consent input {
  margin-top: 4px;
  width: 18px;
  height: 18px;
  accent-color: var(--zwei-blue-dark);
  flex-shrink: 0;
  cursor: pointer;
}

.zweiq-consent span {
  font-size: 13px;
  font-weight: 500;
  line-height: 1.5;
  user-select: none;
}

/* ACCIONES DE FORMULARIO */
.zweiq-actions {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid var(--zwei-line);
  padding-top: 24px;
  margin-top: 32px;
}

.zweiq-btn {
  appearance: none;
  border: 0;
  border-radius: 999px;
  padding: 14px 28px;
  background: var(--zwei-blue-dark);
  color: #ffffff;
  font-weight: 800;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.zweiq-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 25px rgba(52, 77, 94, 0.2);
}

.zweiq-btn.secondary {
  background: #f1f5f9;
  color: var(--zwei-blue-dark);
  border: 1px solid var(--zwei-line);
}

.zweiq-btn.secondary:hover {
  background: #e2e8f0;
  box-shadow: none;
}

.zweiq-btn[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

#zweiSubmitBtn {
  display: none;
}

/* RESPUESTAS AJAX */
.zweiq-result {
  display: none;
  margin-top: 24px;
  padding: 16px 20px;
  border-radius: 16px;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.5;
  animation: zweiSlideIn 0.3s ease;
}

.zweiq-result.ok {
  display: block;
  color: #065f46;
  background: var(--zwei-green-light);
  border: 1px solid #a7f3d0;
}

.zweiq-result.error {
  display: block;
  color: #991b1b;
  background: var(--zwei-red-light);
  border: 1px solid #fca5a5;
}

.zweiq-hp {
  position: absolute !important;
  left: -9999px !important;
  opacity: 0 !important;
}

/* RESPONSIVE DESIGN (MÓVIL) */
@media (max-width: 768px) {
  .zweiq-wrap {
    padding: 10px 0 30px;
    border-radius: 0;
    width: 100%;
    max-width: 100%;
  }

  .zweiq-card {
    border-radius: 0;
    border-left: 0;
    border-right: 0;
    padding: 20px 10px; /* Reduced from 20px 14px to gain horizontal space */
    box-shadow: none; /* No shadow needed since it is edge-to-edge */
  }

  .zweiq-hero {
    padding: 24px 14px;
    margin-bottom: 16px;
    border-radius: 0;
    border-left: 0;
    border-right: 0;
  }

  .zweiq-brand {
    font-size: 32px;
  }

  .zweiq-stepper-header {
    gap: 0;
  }

  .zweiq-stepper-header::before {
    left: 20px;
    right: 20px;
  }

  .zweiq-step-label {
    font-size: 11px;
  }

  .zweiq-step-icon {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }

  .zweiq-filter-actions {
    margin-top: -16px;
    margin-bottom: 20px;
    padding: 0 4px;
  }

  .zweiq-options-grid,
  .zweiq-grid {
    grid-template-columns: 1fr;
    gap: 12px; /* Reduced from 14px */
  }

  .zweiq-options-grid {
    padding: 12px 8px; /* Reduced from 16px 14px to maximize width */
  }

  .zweiq-service-card {
    padding: 12px 10px; /* Reduced from 20px to free up 20px horizontal space */
    border-radius: 12px;
  }

  .zweiq-service-main-row {
    gap: 10px; /* Reduced from 14px */
  }

  .zweiq-service-checkbox {
    width: 18px; /* Slightly more compact checkbox */
    height: 18px;
    margin-top: 1px;
  }

  .zweiq-service-title-row {
    font-size: 14px;
    gap: 6px;
  }

  .zweiq-service-icon {
    font-size: 18px;
  }

  .zweiq-service-description {
    font-size: 12px;
    line-height: 1.35;
  }

  .zweiq-subtasks-wrapper {
    margin-top: 10px; /* More compact */
    padding-top: 10px;
  }

  .zweiq-subtasks-title {
    font-size: 12px;
    margin: 0 0 8px;
  }

  .zweiq-subtasks-chips {
    gap: 6px; /* Reduced gap from 8px */
  }

  .zweiq-subtask-chip span {
    padding: 4px 8px; /* Highly compact padding */
    border-radius: 6px; /* Rounded rectangle instead of wide oval avoids curved padding penalty */
    font-size: 11px; /* Smaller text size for fit */
    font-weight: 700; /* Bolder text for high contrast readability */
    letter-spacing: -0.015em;
  }

  .zweiq-full-width {
    grid-column: span 1;
  }

  .zweiq-actions {
    position: sticky;
    bottom: 0;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(8px);
    margin-left: -10px; /* Adjusted matching the new zweiq-card padding */
    margin-right: -10px;
    padding: 16px 10px;
    z-index: 10;
    border-top: 1px solid var(--zwei-line);
    box-shadow: 0 -10px 25px rgba(15,23,42,0.04);
  }

  .zweiq-btn {
    width: 100%;
    padding: 15px;
  }

  .zweiq-category-block {
    border-radius: 0; /* Full width concept blocks look much cleaner */
    margin-bottom: 14px;
    border-left: 0;
    border-right: 0;
  }

  .zweiq-category-header {
    padding: 14px 14px;
  }

  .zweiq-trust {
    margin-top: 18px;
    padding-top: 12px;
    gap: 6px 14px;
  }

  .zweiq-trust span {
    font-size: 11px;
    padding: 0;
  }
}
