:root {
		--primary: #7c3aed;
		--primary-light: #a78bfa;
		--primary-dark: #5b21b6;
		--secondary: #06b6d4;
		--success: #10b981;
		--bg-light: #f8fafc;
		--text-dark: #1e293b;
		--text-muted: #64748b;
		--border-color: #e2e8f0;
	}

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

	html {
		font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
		overflow-y: auto;
		height: auto;
	}

	body {
		font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
		background: var(--bg-light);
		min-height: 100vh;
		margin: 0;
		padding: 0;
		overflow-x: hidden;
		overflow-y: auto;
	}

	/* Main container */
	.onboarding-wrapper {
		min-height: 100vh;
		display: flex;
		align-items: flex-start;
		justify-content: center;
		padding: 2rem;
		padding-top: 3rem;
		padding-bottom: 3rem;
	}

	.onboarding-card {
		background: white;
		border-radius: 24px;
		box-shadow: 0 4px 40px rgba(0, 0, 0, 0.08);
		width: 100%;
		max-width: 580px;
		overflow: visible;
		margin-bottom: 2rem;
	}

	/* Progress header - Modern SaaS style */
	.progress-header {
		padding: 0;
		display: flex;
		justify-content: space-between;
		align-items: center;
		padding: 1rem 2rem 0.75rem;
	}

	.progress-text {
		font-size: 0.8125rem;
		font-weight: 500;
		color: #4b5563;
		letter-spacing: -0.01em;
	}

	.progress-percent {
		font-size: 0.8rem;
		font-weight: 600;
		color: var(--primary);
	}

	.progress-bar-container {
		height: 3px;
		background: #f1f5f9;
		position: relative;
	}

	.progress-bar-fill {
		height: 100%;
		background: linear-gradient(90deg, var(--primary) 0%, #818cf8 50%, var(--secondary) 100%);
		transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
		border-radius: 0 2px 2px 0;
	}

	/* Content area */
	.onboarding-content {
		padding: 2.5rem 2rem;
	}

	/* Welcome logo */
	.welcome-logo {
		text-align: center;
		margin: 0 auto 2rem;
	}

	.welcome-logo img {
		height: 60px;
		width: auto;
	}

	/* Step titles - Modern clean style */
	.step-title {
		font-size: 1.5rem;
		font-weight: 700;
		color: var(--text-dark);
		text-align: center;
		margin-bottom: 0.375rem;
		letter-spacing: -0.025em;
	}

	.step-title-primary {
		background: linear-gradient(135deg, var(--primary) 0%, #6366f1 50%, #3b82f6 100%);
		-webkit-background-clip: text;
		-webkit-text-fill-color: transparent;
		background-clip: text;
	}

	.step-subtitle {
		font-size: 0.9375rem;
		color: #4b5563;
		text-align: center;
		margin-bottom: 2rem;
		line-height: 1.5;
		font-weight: 400;
	}

	/* Feature list */
	.feature-list {
		display: flex;
		flex-direction: column;
		gap: 1rem;
		margin-bottom: 2rem;
	}

	.feature-item {
		display: flex;
		align-items: flex-start;
		gap: 1rem;
		padding: 1.25rem;
		background: #faf5ff;
		border-radius: 16px;
		border: 1px solid #ede9fe;
		transition: all 0.2s ease;
	}

	.feature-item:nth-child(2) {
		background: #f0fdfa;
		border-color: #ccfbf1;
	}

	.feature-item:nth-child(3) {
		background: #eff6ff;
		border-color: #dbeafe;
	}

	.feature-number {
		width: 32px;
		height: 32px;
		border-radius: 10px;
		display: flex;
		align-items: center;
		justify-content: center;
		font-size: 0.875rem;
		font-weight: 700;
		color: white;
		flex-shrink: 0;
	}

	.feature-item:nth-child(1) .feature-number {
		background: linear-gradient(135deg, var(--primary) 0%, #9333ea 100%);
	}

	.feature-item:nth-child(2) .feature-number {
		background: linear-gradient(135deg, var(--secondary) 0%, #0891b2 100%);
	}

	.feature-item:nth-child(3) .feature-number {
		background: linear-gradient(135deg, #8b5cf6 0%, #a78bfa 100%);
	}

	.feature-content h4 {
		font-size: 1rem;
		font-weight: 600;
		color: var(--text-dark);
		margin: 0 0 0.25rem 0;
	}

	.feature-content p {
		font-size: 0.875rem;
		color: var(--text-muted);
		margin: 0;
		line-height: 1.5;
	}

	/* Client type cards */
	.client-type-grid {
		display: flex;
		flex-direction: column;
		gap: 1rem;
		margin-bottom: 2rem;
	}

	.client-type-card {
		display: flex;
		align-items: center;
		gap: 1rem;
		padding: 1.25rem;
		background: white;
		border: 2px solid var(--border-color);
		border-radius: 16px;
		cursor: pointer;
		transition: all 0.2s ease;
	}

	.client-type-card:hover {
		border-color: var(--primary-light);
		box-shadow: 0 4px 20px rgba(124, 58, 237, 0.1);
	}

	.client-type-card.selected {
		border-color: var(--primary);
		background: linear-gradient(135deg, rgba(124, 58, 237, 0.05) 0%, rgba(6, 182, 212, 0.05) 100%);
	}

	.client-type-card.disabled {
		opacity: 0.5;
		cursor: not-allowed;
		pointer-events: none;
		background: #f8fafc;
	}

	.client-type-card.disabled:hover {
		border-color: var(--border-color);
		box-shadow: none;
	}

	.client-type-icon {
		width: 48px;
		height: 48px;
		border-radius: 12px;
		background: #f1f5f9;
		display: flex;
		align-items: center;
		justify-content: center;
		flex-shrink: 0;
		transition: all 0.2s ease;
	}

	.client-type-card.selected .client-type-icon {
		background: linear-gradient(135deg, var(--primary) 0%, #9333ea 100%);
	}

	.client-type-icon i {
		font-size: 1.5rem;
		color: var(--primary);
		transition: all 0.2s ease;
	}

	.client-type-card.selected .client-type-icon i {
		color: white;
	}

	.client-type-info {
		flex: 1;
	}

	.client-type-info h4 {
		font-size: 1rem;
		font-weight: 600;
		color: var(--text-dark);
		margin: 0 0 0.25rem 0;
	}

	.client-type-info p {
		font-size: 0.875rem;
		color: var(--text-muted);
		margin: 0;
	}

	.client-type-check {
		width: 24px;
		height: 24px;
		border-radius: 50%;
		border: 2px solid var(--border-color);
		display: flex;
		align-items: center;
		justify-content: center;
		flex-shrink: 0;
		transition: all 0.2s ease;
	}

	.client-type-card.selected .client-type-check {
		background: var(--primary);
		border-color: var(--primary);
	}

	.client-type-check i {
		font-size: 0.75rem;
		color: white;
		opacity: 0;
		transition: all 0.2s ease;
	}

	.client-type-card.selected .client-type-check i {
		opacity: 1;
	}

	/* Objective card */
	.objective-card {
		padding: 1.5rem;
		background: white;
		border: 2px solid var(--border-color);
		border-radius: 16px;
		cursor: pointer;
		transition: all 0.2s ease;
		margin-bottom: 1rem;
	}

	.objective-card:hover {
		border-color: var(--success);
	}

	.objective-card.selected {
		border-color: var(--success);
		background: linear-gradient(135deg, rgba(16, 185, 129, 0.05) 0%, rgba(6, 182, 212, 0.05) 100%);
	}

	.objective-header {
		display: flex;
		align-items: center;
		gap: 1rem;
	}

	.objective-checkbox {
		width: 28px;
		height: 28px;
		border-radius: 8px;
		border: 2px solid var(--border-color);
		display: flex;
		align-items: center;
		justify-content: center;
		flex-shrink: 0;
		transition: all 0.2s ease;
	}

	.objective-card.selected .objective-checkbox {
		background: var(--success);
		border-color: var(--success);
	}

	.objective-checkbox i {
		font-size: 0.875rem;
		color: white;
		opacity: 0;
	}

	.objective-card.selected .objective-checkbox i {
		opacity: 1;
	}

	.objective-info h4 {
		font-size: 1rem;
		font-weight: 600;
		color: var(--text-dark);
		margin: 0 0 0.25rem 0;
	}

	.objective-info p {
		font-size: 0.875rem;
		color: var(--text-muted);
		margin: 0;
	}

	.info-message {
		margin-top: 1rem;
		padding: 1rem;
		background: linear-gradient(135deg, rgba(6, 182, 212, 0.1) 0%, rgba(124, 58, 237, 0.1) 100%);
		border-radius: 12px;
		border-left: 4px solid var(--secondary);
		display: none;
	}

	.info-message.visible {
		display: block;
		animation: slideDown 0.3s ease;
	}

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

	.info-message p {
		margin: 0;
		font-size: 0.875rem;
		color: var(--text-dark);
		line-height: 1.6;
	}

	/* Step icon */
	.step-icon {
		width: 64px;
		height: 64px;
		background: linear-gradient(135deg, var(--primary) 0%, #9333ea 100%);
		border-radius: 18px;
		display: flex;
		align-items: center;
		justify-content: center;
		margin: 0 auto 1.5rem;
	}

	.step-icon i {
		font-size: 1.75rem;
		color: white;
	}

	.step-title-primary {
		color: var(--primary) !important;
	}

	/* Form elements */
	.form-group {
		margin-bottom: 1.25rem;
	}

	.form-label {
		display: block;
		font-size: 0.875rem;
		font-weight: 600;
		color: var(--text-dark);
		margin-bottom: 0.5rem;
	}

	.form-input,
	.form-select {
		width: 100%;
		padding: 0.875rem 1rem;
		font-size: 1rem;
		color: var(--text-dark);
		background: white;
		border: 1px solid var(--border-color);
		border-radius: 12px;
		transition: all 0.2s ease;
	}

	.form-input:focus,
	.form-select:focus {
		outline: none;
		border-color: var(--primary);
		box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
	}

	.form-input::placeholder {
		color: var(--text-muted);
	}

	.form-hint {
		display: block;
		margin-top: 0.5rem;
		font-size: 0.8rem;
		color: var(--text-muted);
	}

	/* Radio group (type de client) */
	.radio-group {
		display: flex;
		flex-direction: column;
		gap: 0.75rem;
		margin-top: 0.5rem;
	}
	.radio-option {
		display: flex;
		align-items: center;
		gap: 0.75rem;
		padding: 0.75rem 1rem;
		border: 1px solid var(--border-color);
		border-radius: 12px;
		cursor: pointer;
		transition: border-color 0.2s ease, background-color 0.2s ease;
	}
	.radio-option:hover {
		border-color: var(--primary-light);
		background-color: rgba(124, 58, 237, 0.04);
	}
	.radio-option input[type="radio"] {
		width: 1.125rem;
		height: 1.125rem;
		accent-color: var(--primary);
		cursor: pointer;
	}
	.radio-option input[type="radio"]:checked + .radio-label {
		font-weight: 600;
		color: var(--primary);
	}
	.radio-option:has(input:checked) {
		border-color: var(--primary);
		background-color: rgba(124, 58, 237, 0.08);
	}
	.radio-label {
		font-size: 0.9375rem;
		color: var(--text-dark);
	}

	/* Custom Country Selector */
	.country-select-wrapper {
		position: relative;
		width: 100%;
	}

	.country-select-trigger {
		width: 100%;
		padding: 0.875rem 1rem;
		font-size: 1rem;
		color: var(--text-dark);
		background: white;
		border: 1px solid var(--border-color);
		border-radius: 12px;
		transition: all 0.2s ease;
		cursor: pointer;
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 0.75rem;
		user-select: none;
		-webkit-user-select: none;
	}

	.country-select-trigger:hover {
		border-color: var(--primary-light);
	}

	.country-select-trigger:focus {
		outline: none;
		border-color: var(--primary);
		box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
	}

	.country-select-trigger.active {
		border-color: var(--primary);
		box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
		border-radius: 12px 12px 0 0;
	}

	.country-select-trigger .country-flag {
		font-size: 1.25rem;
		line-height: 1;
	}

	.country-select-trigger .country-name {
		flex: 1;
		color: var(--text-dark);
	}

	.country-select-trigger .country-placeholder {
		color: #9ca3af;
		font-weight: 400;
	}

	.country-select-trigger .country-display {
		display: flex;
		align-items: center;
		gap: 0.75rem;
		flex: 1;
		min-height: 1.5rem;
	}

	.country-select-trigger .arrow {
		color: var(--text-muted);
		transition: transform 0.2s ease;
	}

	.country-select-trigger.active .arrow {
		transform: rotate(180deg);
	}

	.country-select-dropdown {
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background: white;
		border: 1px solid var(--primary);
		border-top: none;
		border-radius: 0 0 12px 12px;
		box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
		z-index: 1000;
		display: none;
		max-height: 320px;
		overflow: hidden;
	}

	.country-select-dropdown.show {
		display: block;
		animation: dropdownFadeIn 0.2s ease;
	}

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

	.country-search-wrapper {
		padding: 0.75rem;
		border-bottom: 1px solid var(--border-color);
		background: #fafafa;
	}

	.country-search-input {
		width: 100%;
		padding: 0.625rem 0.875rem 0.625rem 2.25rem;
		font-size: 0.875rem;
		border: 1px solid var(--border-color);
		border-radius: 8px;
		background: white url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%239ca3af' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cpath d='m21 21-4.35-4.35'/%3E%3C/svg%3E") no-repeat 0.75rem center;
		transition: all 0.2s ease;
	}

	.country-search-input:focus {
		outline: none;
		border-color: var(--primary);
		box-shadow: 0 0 0 2px rgba(124, 58, 237, 0.1);
	}

	.country-search-input::placeholder {
		color: var(--text-muted);
	}

	.country-options-list {
		max-height: 250px;
		overflow-y: auto;
		padding: 0.5rem 0;
	}

	.country-options-list::-webkit-scrollbar {
		width: 6px;
	}

	.country-options-list::-webkit-scrollbar-track {
		background: #f1f1f1;
	}

	.country-options-list::-webkit-scrollbar-thumb {
		background: #c1c1c1;
		border-radius: 3px;
	}

	.country-options-list::-webkit-scrollbar-thumb:hover {
		background: #a1a1a1;
	}

	.country-option {
		display: flex;
		align-items: center;
		gap: 0.75rem;
		padding: 0.75rem 1rem;
		cursor: pointer;
		transition: background 0.15s ease;
	}

	.country-option:hover {
		background: linear-gradient(90deg, rgba(124, 58, 237, 0.08) 0%, rgba(124, 58, 237, 0.04) 100%);
	}

	.country-option.selected {
		background: linear-gradient(90deg, rgba(124, 58, 237, 0.12) 0%, rgba(124, 58, 237, 0.06) 100%);
	}

	.country-option.highlighted {
		background: linear-gradient(90deg, rgba(124, 58, 237, 0.15) 0%, rgba(124, 58, 237, 0.08) 100%);
	}

	.country-option .country-flag {
		font-size: 1.25rem;
		line-height: 1;
	}

	.country-option .country-name {
		flex: 1;
		font-size: 0.9375rem;
		color: var(--text-dark);
	}

	.country-option .country-code {
		font-size: 0.75rem;
		color: var(--text-muted);
		font-weight: 500;
	}

	.country-option.selected .country-name {
		font-weight: 600;
		color: var(--primary);
	}

	.country-separator {
		height: 1px;
		background: var(--border-color);
		margin: 0.5rem 1rem;
	}

	.country-no-results {
		padding: 1.5rem 1rem;
		text-align: center;
		color: var(--text-muted);
		font-size: 0.875rem;
	}

	/* Info box - Subtle modern style */
	.info-box {
		display: flex;
		align-items: flex-start;
		gap: 0.625rem;
		padding: 0.75rem 1rem;
		background: #fafafa;
		border: none;
		border-radius: 8px;
		margin-bottom: 1rem;
	}

	.info-box-icon {
		font-size: 1rem;
		flex-shrink: 0;
		color: #9ca3af !important;
	}

	/* Subtle info hint */
	.info-hint {
		display: flex;
		align-items: center;
		gap: 0.5rem;
		font-size: 0.8125rem;
		color: #6b7280;
		margin-top: 0.25rem;
		margin-bottom: 0.75rem;
	}

	.info-hint i {
		font-size: 0.875rem;
		color: #9ca3af;
	}

	.info-box-content strong {
		display: block;
		font-size: 0.8125rem;
		font-weight: 600;
		color: #6b7280;
		margin-bottom: 0.125rem;
	}

	.info-box-content p {
		margin: 0;
		font-size: 0.75rem;
		color: #9ca3af;
		line-height: 1.5;
	}

	/* Optional section - more subtle */
	.form-section-analysis.optional {
		background: #fafafa;
		border: 1px dashed #d1d5db;
	}

	.form-section-analysis.optional:hover {
		border-color: #9ca3af;
		background: #f5f5f5;
	}

	/* Modern URL input */
	.product-url-input {
		width: 100%;
		padding: 0.75rem 1rem;
		font-size: 0.875rem;
		border: 1.5px solid #d1d5db;
		border-radius: 8px;
		background: white;
		color: var(--text-dark);
		transition: all 0.15s ease;
	}

	.product-url-input:hover {
		border-color: #9ca3af;
	}

	.product-url-input:focus {
		outline: none;
		border-color: var(--primary);
		box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.08);
	}

	.product-url-input::placeholder {
		color: #6b7280;
	}

	/* Keyword input with check */
	.keyword-input-wrapper {
		position: relative;
		display: flex;
		align-items: center;
	}

	.keyword-check {
		position: absolute;
		left: 12px;
		width: 20px;
		height: 20px;
		background: var(--success);
		border-radius: 50%;
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.keyword-check i {
		color: white;
		font-size: 0.75rem;
	}

	.keyword-detected {
		padding-left: 44px !important;
		color: var(--text-dark) !important;
	}

	.form-tooltip {
		font-size: 0.875rem;
		color: var(--text-muted);
		cursor: help;
	}

	.required {
		color: #ef4444;
	}

	.form-input.error,
	.form-input:invalid:not(:placeholder-shown) {
		border-color: #ef4444 !important;
		animation: shake 0.3s ease;
	}

	@keyframes shake {
		0%, 100% { transform: translateX(0); }
		25% { transform: translateX(-5px); }
		75% { transform: translateX(5px); }
	}

	.form-error {
		display: block;
		margin-top: 0.5rem;
		font-size: 0.8rem;
		color: #ef4444;
	}

	.section-label {
		font-size: 0.875rem;
		font-weight: 600;
		color: var(--text-dark);
		margin: 1.5rem 0 1rem;
	}

	/* Section label row */
	.section-label-row {
		display: flex;
		align-items: center;
		justify-content: space-between;
		margin-bottom: 0.5rem;
	}

	.section-label-row .section-label {
		margin: 0;
	}

	.btn-select-all {
		display: inline-flex;
		align-items: center;
		gap: 0.35rem;
		padding: 0.4rem 0.75rem;
		background: linear-gradient(135deg, var(--primary) 0%, #9333ea 100%);
		border: none;
		border-radius: 8px;
		color: white;
		font-size: 0.75rem;
		font-weight: 600;
		cursor: pointer;
		transition: all 0.2s ease;
	}

	.btn-select-all:hover {
		transform: translateY(-1px);
		box-shadow: 0 4px 12px rgba(124, 58, 237, 0.3);
	}

	.btn-select-all i {
		font-size: 0.85rem;
	}

	.btn-select-all.all-selected {
		background: linear-gradient(135deg, #10b981 0%, #059669 100%);
	}

	/* Analysis types grid */
	.analysis-types-grid {
		display: flex;
		flex-direction: column;
		gap: 0.75rem;
		margin-bottom: 1.5rem;
	}

	.analysis-type-card {
		display: flex;
		align-items: center;
		gap: 0.75rem;
		padding: 1rem 1.25rem;
		background: white;
		border: 2px solid var(--border-color);
		border-radius: 12px;
		cursor: pointer;
		transition: all 0.2s ease;
	}

	.analysis-type-card:hover {
		border-color: var(--primary-light);
	}

	.analysis-type-card.selected {
		background: linear-gradient(135deg, rgba(124, 58, 237, 0.05) 0%, rgba(167, 139, 250, 0.08) 100%);
		border-color: var(--primary);
	}

	.analysis-type-checkbox {
		width: 22px;
		height: 22px;
		border: 2px solid var(--border-color);
		border-radius: 6px;
		display: flex;
		align-items: center;
		justify-content: center;
		transition: all 0.2s ease;
		flex-shrink: 0;
	}

	.analysis-type-checkbox i {
		opacity: 0;
		color: white;
		font-size: 0.75rem;
		transition: opacity 0.2s ease;
	}

	.analysis-type-card.selected .analysis-type-checkbox {
		background: var(--primary);
		border-color: var(--primary);
	}

	.analysis-type-card.selected .analysis-type-checkbox i {
		opacity: 1;
	}

	.analysis-type-text {
		font-size: 0.9375rem;
		font-weight: 500;
		color: var(--text-dark);
	}

	/* Visibility info box */
	.visibility-info-box {
		background: #fff7ed;
		border: 1px solid #fed7aa;
		border-radius: 14px;
		padding: 1.25rem;
		margin-left: 0.5rem;
		border-left: 3px solid #f97316;
	}

	.visibility-info-content h4 {
		font-size: 0.9375rem;
		font-weight: 600;
		color: var(--text-dark);
		margin: 0 0 0.5rem 0;
	}

	.visibility-info-content > p {
		font-size: 0.8125rem;
		color: var(--text-muted);
		margin: 0 0 1rem 0;
		line-height: 1.5;
	}

	.product-urls-container {
		display: flex;
		flex-direction: column;
		gap: 0.5rem;
		margin-bottom: 0.75rem;
	}

	.product-url-row {
		display: flex;
		gap: 0.5rem;
	}

	.product-url-input {
		flex: 1;
	}

	.btn-add-url {
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 0.5rem;
		width: 100%;
		padding: 0.75rem;
		background: white;
		border: 2px dashed var(--border-color);
		border-radius: 10px;
		color: var(--text-muted);
		font-size: 0.875rem;
		font-weight: 500;
		cursor: pointer;
		transition: all 0.2s ease;
	}

	.btn-add-url:hover {
		border-color: var(--primary);
		color: var(--primary);
	}

	.btn-generate-prompts {
		width: 100%;
		padding: 1rem;
		background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
		border: none;
		border-radius: 12px;
		color: white;
		font-size: 1rem;
		font-weight: 600;
		cursor: pointer;
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 0.5rem;
		transition: all 0.3s ease;
		margin-bottom: 1.5rem;
	}

	.btn-generate-prompts:hover {
		transform: translateY(-2px);
		box-shadow: 0 8px 25px rgba(59, 130, 246, 0.35);
	}

	/* Additional keywords section */
	.additional-keywords-section {
		margin-bottom: 1.5rem;
		padding: 1rem;
		background: #f8fafc;
		border-radius: 12px;
		border: 1px solid var(--border-color);
	}

	.additional-keywords-header {
		display: flex;
		align-items: center;
		justify-content: space-between;
		margin-bottom: 0.75rem;
	}

	.additional-keywords-label {
		font-size: 0.875rem;
		font-weight: 600;
		color: var(--text-dark);
	}

	.additional-keywords-count {
		font-size: 0.8rem;
		color: var(--text-muted);
	}

	.additional-keywords-container {
		display: flex;
		flex-direction: column;
		gap: 0.5rem;
		margin-bottom: 0.75rem;
	}

	.keyword-row {
		display: flex;
		align-items: center;
		gap: 0.5rem;
	}

	.keyword-row input {
		flex: 1;
	}

	.btn-remove-keyword {
		width: 36px;
		height: 36px;
		border: none;
		background: #fee2e2;
		color: #ef4444;
		border-radius: 8px;
		cursor: pointer;
		display: flex;
		align-items: center;
		justify-content: center;
		transition: all 0.2s ease;
		flex-shrink: 0;
	}

	.btn-remove-keyword:hover {
		background: #fecaca;
	}

	.btn-add-keyword {
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 0.5rem;
		width: 100%;
		padding: 0.625rem;
		background: white;
		border: 2px dashed var(--border-color);
		border-radius: 8px;
		color: var(--text-muted);
		font-size: 0.8125rem;
		font-weight: 500;
		cursor: pointer;
		transition: all 0.2s ease;
	}

	.btn-add-keyword:hover {
		border-color: var(--primary);
		color: var(--primary);
	}

	.btn-add-keyword:disabled {
		opacity: 0.5;
		cursor: not-allowed;
	}

	.btn-add-keyword:disabled:hover {
		border-color: var(--border-color);
		color: var(--text-muted);
	}

	.keywords-count {
		font-size: 0.8rem;
		color: var(--text-muted);
		margin-left: 0.5rem;
	}

	/* Main keywords container - Modern Tags Style */
	.main-keywords-container,
	.categories-container {
		display: flex;
		flex-wrap: wrap;
		gap: 0.5rem;
		margin-bottom: 0.75rem;
	}

	/* Modern Tag Input System */
	.tag-input-wrapper {
		display: flex;
		flex-wrap: wrap;
		gap: 0.5rem;
		padding: 0.75rem;
		background: #fafafa;
		border: 1px solid transparent;
		border-radius: 10px;
		min-height: 48px;
		align-items: center;
		transition: all 0.2s ease;
		cursor: text;
	}

	.tag-input-wrapper:hover {
		background: #f5f5f5;
	}

	.tag-input-wrapper:focus-within {
		background: white;
		border-color: var(--primary);
		box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.08);
	}

	.tag-item {
		display: inline-flex;
		align-items: center;
		gap: 0.375rem;
		padding: 0.375rem 0.625rem 0.375rem 0.75rem;
		background: white;
		border: 1px solid #e5e7eb;
		border-radius: 6px;
		font-size: 0.875rem;
		font-weight: 500;
		color: var(--text-dark);
		transition: all 0.15s ease;
		box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
	}

	.tag-item:hover {
		border-color: #d1d5db;
		box-shadow: 0 2px 4px rgba(0, 0, 0, 0.06);
	}

	.tag-item .tag-remove {
		display: flex;
		align-items: center;
		justify-content: center;
		width: 16px;
		height: 16px;
		border-radius: 4px;
		background: transparent;
		border: none;
		color: #9ca3af;
		cursor: pointer;
		padding: 0;
		transition: all 0.15s ease;
		opacity: 0.6;
	}

	.tag-item:hover .tag-remove {
		opacity: 1;
	}

	.tag-item .tag-remove:hover {
		background: #fee2e2;
		color: #ef4444;
	}

	.tag-input-field {
		flex: 1;
		min-width: 120px;
		border: none;
		background: transparent;
		font-size: 0.875rem;
		color: var(--text-dark);
		outline: none;
		padding: 0.25rem 0;
	}

	.tag-input-field::placeholder {
		color: #9ca3af;
	}

	.main-keyword-row {
		display: flex;
		align-items: center;
		gap: 0.5rem;
	}

	.main-keyword-row .keyword-input-wrapper {
		flex: 1;
	}

	.main-keyword-row .btn-remove-keyword {
		display: flex;
	}

	.main-keyword-input {
		width: 100%;
	}


	/* Step icon for analysis step */
	.step-icon-analysis {
		width: 64px;
		height: 64px;
		background: linear-gradient(135deg, #10b981 0%, #059669 100%);
		border-radius: 18px;
		display: flex;
		align-items: center;
		justify-content: center;
		margin: 0 auto 1.5rem;
	}

	.step-icon-analysis i {
		font-size: 1.75rem;
		color: white;
	}

	/* Form section for analysis step - Modern SaaS Style */
	.form-section-analysis {
		background: white;
		border: 1px solid #e5e7eb;
		border-radius: 12px;
		padding: 1.25rem 1.5rem;
		margin-bottom: 1.25rem;
		box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
		transition: all 0.2s ease;
	}

	.form-section-analysis:hover {
		border-color: #d1d5db;
		box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
	}

	.form-section-header {
		display: flex;
		align-items: center;
		gap: 0.625rem;
		margin-bottom: 1rem;
	}

	.form-section-icon {
		width: 28px;
		height: 28px;
		border-radius: 7px;
		display: flex;
		align-items: center;
		justify-content: center;
		flex-shrink: 0;
	}

	.form-section-icon i {
		font-size: 0.875rem;
		color: white !important;
		-webkit-text-fill-color: white !important;
	}

	.form-section-icon i::before {
		color: white !important;
		-webkit-text-fill-color: white !important;
	}

	.form-section-icon.keywords { background: linear-gradient(135deg, #10b981 0%, #059669 100%); }
	.form-section-icon.brands { background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%); }
	.form-section-icon.categories { background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%); }

	.form-section-title {
		font-size: 0.875rem;
		font-weight: 600;
		color: var(--text-dark);
		margin: 0;
		letter-spacing: -0.01em;
	}

	.form-section-required {
		color: #ef4444;
		margin-left: 0.25rem;
	}

	.form-section-hint {
		font-size: 0.8125rem !important;
		color: #6b7280 !important;
		font-weight: 400;
		margin-left: 0.375rem;
	}

	.form-section-required {
		color: #ef4444;
		margin-left: 0.25rem;
	}

	.form-section-tooltip {
		margin-left: 0.5rem;
		color: var(--text-muted);
		cursor: help;
	}

	/* Analysis form row - Compact inline tags */
	.analysis-form-row {
		display: inline-flex;
		align-items: center;
		gap: 0.5rem;
		background: #f9fafb;
		border: 1.5px solid #d1d5db;
		border-radius: 8px;
		padding: 0.5rem 0.75rem;
		margin-bottom: 0;
		transition: all 0.15s ease;
	}

	.analysis-form-row:hover {
		border-color: #9ca3af;
	}

	.analysis-form-row:focus-within {
		border-color: var(--primary);
		background: white;
		box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.08);
	}

	/* Full width for URL inputs */
	.product-urls-container .analysis-form-row {
		display: flex;
		width: 100%;
		margin-bottom: 0.5rem;
	}

	.analysis-form-row .keyword-check {
		position: relative;
		left: 0;
		flex-shrink: 0;
		width: 20px;
		height: 20px;
		min-width: 20px;
	}

	.analysis-form-row .keyword-check i {
		font-size: 0.625rem;
	}

	.analysis-form-row input {
		border: none;
		background: transparent;
		font-size: 0.875rem;
		color: var(--text-dark);
		padding: 0;
		min-width: 80px;
		width: auto;
	}

	.analysis-form-row input:focus {
		outline: none;
	}

	.analysis-form-row input::placeholder {
		color: #9ca3af;
	}

	/* Make URL inputs full width */
	.product-urls-container .analysis-form-row input {
		flex: 1;
	}

	.analysis-form-row .btn-remove {
		width: 24px;
		height: 24px;
		border: none;
		background: transparent;
		color: #9ca3af;
		border-radius: 6px;
		cursor: pointer;
		display: flex;
		align-items: center;
		justify-content: center;
		transition: all 0.15s ease;
		flex-shrink: 0;
		padding: 0;
	}

	.analysis-form-row .btn-remove:hover {
		background: #fee2e2;
		color: #ef4444;
	}

	.analysis-form-row .btn-remove i {
		font-size: 0.75rem;
	}

	/* Add button for analysis - Modern minimal */
	.btn-add-analysis {
		display: inline-flex;
		align-items: center;
		gap: 0.375rem;
		padding: 0.5rem 0.75rem;
		background: #f3f4f6;
		border: none;
		border-radius: 6px;
		color: #4b5563;
		font-size: 0.8125rem;
		font-weight: 500;
		cursor: pointer;
		transition: all 0.15s ease;
		margin-top: 0.5rem;
	}

	.btn-add-analysis:hover {
		background: #e5e7eb;
		color: var(--primary);
	}

	.btn-add-analysis:disabled {
		opacity: 0.4;
		cursor: not-allowed;
	}

	.btn-add-analysis i {
		font-size: 0.75rem;
	}

	.form-section-count {
		display: inline-flex;
		font-size: 0.8125rem;
		color: #6b7280;
		margin-left: 0.5rem;
		font-weight: 500;
	}

	.form-section-footer {
		display: flex;
		align-items: center;
		margin-top: 0.5rem;
	}

	/* Fetched Products Section - Modern Teal */
	.fetched-products-section {
		background: linear-gradient(135deg, #f0fdfa 0%, #ccfbf1 100%);
		border: 1px solid #5eead4;
		border-radius: 16px;
		padding: 1rem 1.25rem;
		margin-bottom: 1.5rem;
		box-shadow: 0 2px 8px rgba(20, 184, 166, 0.1);
	}

	.fetched-products-header {
		display: flex;
		align-items: center;
		justify-content: space-between;
	}

	.fetched-products-info {
		display: flex;
		align-items: center;
		gap: 0.75rem;
	}

	.fetched-products-icon {
		width: 36px;
		height: 36px;
		background: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%);
		border-radius: 10px;
		display: flex;
		align-items: center;
		justify-content: center;
		color: white;
		font-size: 1rem;
	}

	.fetched-products-title {
		font-size: 0.95rem;
		font-weight: 700;
		color: #92400e;
		margin: 0;
	}

	.fetched-products-subtitle {
		font-size: 0.75rem;
		color: #b45309;
		margin: 0;
	}

	.fetched-products-badge {
		background: white;
		color: #0d9488;
		padding: 0.2rem 0.6rem;
		border-radius: 12px;
		font-size: 0.75rem;
		font-weight: 700;
		margin-left: 0.5rem;
		border: 1px solid rgba(20, 184, 166, 0.3);
	}

	.btn-toggle-products {
		display: inline-flex;
		align-items: center;
		gap: 0.4rem;
		padding: 0.55rem 1rem;
		background: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%);
		border: none;
		border-radius: 10px;
		color: white;
		font-size: 0.8rem;
		font-weight: 600;
		cursor: pointer;
		transition: all 0.2s ease;
		box-shadow: 0 2px 8px rgba(20, 184, 166, 0.25);
	}

	.btn-toggle-products i {
		color: white !important;
		-webkit-text-fill-color: white !important;
	}

	.btn-toggle-products:hover {
		background: linear-gradient(135deg, #0d9488 0%, #0f766e 100%);
		transform: translateY(-1px);
		box-shadow: 0 4px 12px rgba(20, 184, 166, 0.35);
	}

	.fetched-products-list {
		display: none;
		margin-top: 1rem;
		padding-top: 1rem;
		border-top: 1px solid #99f6e4;
	}

	.fetched-products-list.visible {
		display: block;
	}

	.fetched-product-card {
		background: white;
		border: 1px solid #e5e7eb;
		border-radius: 12px;
		padding: 1.25rem;
		margin-bottom: 0.75rem;
		box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
	}

	.fetched-product-card:last-child {
		margin-bottom: 0;
	}

	.fetched-product-header {
		display: flex;
		align-items: flex-start;
		gap: 1rem;
		margin-bottom: 1rem;
		padding-bottom: 0.75rem;
		border-bottom: 1px solid #f3f4f6;
	}

	.fetched-product-image {
		width: 60px;
		height: 60px;
		border-radius: 10px;
		object-fit: cover;
		border: 1px solid #e5e7eb;
	}

	.fetched-product-image-placeholder {
		width: 60px;
		height: 60px;
		border-radius: 10px;
		background: #f9fafb;
		border: 1px dashed #d1d5db;
		display: flex;
		align-items: center;
		justify-content: center;
		color: #9ca3af;
		font-size: 1.25rem;
	}

	.fetched-product-url {
		flex: 1;
		font-size: 0.75rem;
		color: #6b7280;
		word-break: break-all;
		line-height: 1.4;
	}

	.fetched-product-fields {
		display: grid;
		gap: 0.75rem;
	}

	.fetched-product-field label {
		display: block;
		font-size: 0.7rem;
		font-weight: 600;
		color: #6b7280;
		text-transform: uppercase;
		letter-spacing: 0.025em;
		margin-bottom: 0.35rem;
	}

	.fetched-product-field input,
	.fetched-product-field textarea {
		width: 100%;
		padding: 0.6rem 0.75rem;
		border: 1px solid #e5e7eb;
		border-radius: 8px;
		font-size: 0.85rem;
		color: #374151;
		background: #f9fafb;
		transition: all 0.2s ease;
	}

	.fetched-product-field input:focus,
	.fetched-product-field textarea:focus {
		outline: none;
		border-color: #f59e0b;
		background: white;
		box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.1);
	}

	.fetched-product-field textarea {
		resize: vertical;
		min-height: 60px;
	}

	.fetched-product-row {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 0.75rem;
	}

	.fetched-product-header {
		display: flex;
		align-items: flex-start;
		gap: 1rem;
		margin-bottom: 1rem;
	}

	.fetched-product-image {
		width: 64px;
		height: 64px;
		border-radius: 8px;
		object-fit: cover;
		background: #f59e0b;
	}

	.fetched-product-image-placeholder {
		width: 64px;
		height: 64px;
		border-radius: 8px;
		background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
		display: flex;
		align-items: center;
		justify-content: center;
		color: white;
		font-size: 1.5rem;
	}

	.fetched-product-url {
		flex: 1;
		font-size: 0.75rem;
		color: var(--text-muted);
		word-break: break-all;
	}

	.fetched-product-fields {
		display: flex;
		flex-direction: column;
		gap: 0.75rem;
	}

	.fetched-product-field label {
		display: block;
		font-size: 0.7rem;
		font-weight: 600;
		color: var(--text-muted);
		text-transform: uppercase;
		margin-bottom: 0.25rem;
	}

	.fetched-product-field input,
	.fetched-product-field textarea {
		width: 100%;
		padding: 0.5rem 0.75rem;
		border: 1px solid #e2e8f0;
		border-radius: 8px;
		font-size: 0.875rem;
		color: var(--text-dark);
		background: white;
	}

	.fetched-product-field input:focus,
	.fetched-product-field textarea:focus {
		outline: none;
		border-color: #f59e0b;
	}

	.fetched-product-field textarea {
		min-height: 60px;
		resize: vertical;
	}

	.fetched-product-row {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 0.75rem;
	}

	.btn-confirm-products {
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 0.5rem;
		width: 100%;
		padding: 0.875rem 1rem;
		background: linear-gradient(135deg, #10b981 0%, #059669 100%);
		border: none;
		border-radius: 12px;
		color: white;
		font-size: 0.9rem;
		font-weight: 700;
		cursor: pointer;
		margin-top: 1.25rem;
		transition: all 0.2s ease;
		box-shadow: 0 3px 10px rgba(16, 185, 129, 0.25);
	}

	.btn-confirm-products:hover {
		transform: translateY(-2px);
		box-shadow: 0 6px 16px rgba(16, 185, 129, 0.35);
	}

	.fetched-products-warning {
		display: flex;
		align-items: center;
		gap: 0.5rem;
		padding: 0.75rem 1rem;
		background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
		border: 1px solid #f59e0b;
		border-radius: 10px;
		color: #92400e;
		font-size: 0.85rem;
		margin-bottom: 1rem;
	}

	.fetched-products-warning i {
		color: #f59e0b;
		font-size: 1.1rem;
		flex-shrink: 0;
	}

	.products-confirmed-message {
		display: none;
		align-items: center;
		justify-content: center;
		gap: 0.5rem;
		color: #059669;
		font-size: 0.85rem;
		font-weight: 600;
		margin-top: 0.75rem;
		padding: 0.5rem;
		background: rgba(16, 185, 129, 0.1);
		border-radius: 8px;
	}

	.products-confirmed-message.visible {
		display: flex;
	}

	.fetched-product-loading {
		display: flex;
		align-items: center;
		gap: 0.75rem;
		padding: 1rem;
		color: var(--text-muted);
		font-size: 0.875rem;
	}

	.category-row {
		display: flex;
		align-items: center;
		gap: 0.5rem;
	}

	.category-row .keyword-input-wrapper {
		flex: 1;
	}

	.btn-remove-category {
		width: 36px;
		height: 36px;
		border: none;
		background: #fee2e2;
		color: #ef4444;
		border-radius: 8px;
		cursor: pointer;
		display: flex;
		align-items: center;
		justify-content: center;
		transition: all 0.2s ease;
		flex-shrink: 0;
	}

	.btn-remove-category:hover {
		background: #fecaca;
	}

	/* Brands section */
	.brands-container {
		display: flex;
		flex-direction: column;
		gap: 0.5rem;
		margin-bottom: 0.75rem;
	}

	.brand-row {
		display: flex;
		align-items: center;
		gap: 0.5rem;
	}

	.brand-row input {
		flex: 1;
	}

	.btn-remove-brand {
		width: 36px;
		height: 36px;
		border: none;
		background: #fee2e2;
		color: #ef4444;
		border-radius: 8px;
		cursor: pointer;
		display: flex;
		align-items: center;
		justify-content: center;
		transition: all 0.2s ease;
		flex-shrink: 0;
	}

	.btn-remove-brand:hover {
		background: #fecaca;
	}

	.btn-add-brand {
		display: inline-flex;
		align-items: center;
		gap: 0.5rem;
		padding: 0.5rem 1rem;
		background: white;
		border: 2px dashed var(--border-color);
		border-radius: 8px;
		color: var(--text-muted);
		font-size: 0.8125rem;
		font-weight: 500;
		cursor: pointer;
		transition: all 0.2s ease;
	}

	.btn-add-brand:hover {
		border-color: var(--primary);
		color: var(--primary);
	}

	.btn-add-brand:disabled {
		opacity: 0.5;
		cursor: not-allowed;
	}

	.btn-add-brand:disabled:hover {
		border-color: var(--border-color);
		color: var(--text-muted);
	}

	.brands-count {
		font-size: 0.8rem;
		color: var(--text-muted);
		margin-left: 0.5rem;
	}

	.brand-input.detected {
		background: #f0fdf4 !important;
		border-color: var(--success) !important;
	}

	.brand-detected-badge {
		font-size: 0.65rem;
		background: var(--success);
		color: white;
		padding: 2px 6px;
		border-radius: 4px;
		margin-left: 0.5rem;
	}

	/* Step 4 Summary Section */
	.step4-summary-section {
		background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
		border: 1px solid #e2e8f0;
		border-radius: 16px;
		padding: 1.5rem;
		margin-bottom: 1.5rem;
	}

	.summary-header {
		margin-bottom: 1.25rem;
	}

	.summary-title {
		display: flex;
		align-items: center;
		gap: 0.5rem;
		font-size: 1rem;
		font-weight: 600;
		color: var(--text-dark);
		margin: 0 0 0.25rem;
	}

	.summary-title i {
		color: var(--primary);
		font-size: 1.1rem;
	}

	.summary-hint {
		font-size: 0.8rem;
		color: var(--text-muted);
		margin: 0;
	}

	.summary-grid {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 1rem;
		margin-bottom: 1rem;
	}

	.summary-field {
		display: flex;
		flex-direction: column;
		gap: 0.5rem;
	}

	.summary-field-full {
		grid-column: 1 / -1;
	}

	.summary-field-label {
		display: flex;
		align-items: center;
		gap: 0.5rem;
		font-size: 0.8rem;
		font-weight: 600;
		color: var(--text-dark);
	}

	.summary-field-label i {
		color: var(--primary);
		font-size: 0.9rem;
	}

	.field-hint {
		font-weight: 400;
		color: var(--text-muted);
		font-size: 0.75rem;
	}

	.summary-input {
		padding: 0.6rem 1rem;
		font-size: 0.9rem;
		border: 1px solid #e2e8f0;
		border-radius: 10px;
		background: white;
	}

	.summary-input:focus {
		border-color: var(--primary);
		box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
	}

	/* Step 4 Brands */
	.step4-brands-container {
		display: flex;
		flex-wrap: wrap;
		gap: 0.5rem;
		margin-bottom: 0.5rem;
	}

	.step4-brand-tag {
		display: inline-flex;
		align-items: center;
		gap: 0.35rem;
		background: linear-gradient(135deg, var(--primary) 0%, #9333ea 100%);
		color: white;
		padding: 0.35rem 0.75rem;
		border-radius: 20px;
		font-size: 0.85rem;
		font-weight: 500;
	}

	.step4-brand-tag input {
		background: transparent;
		border: none;
		color: white;
		font-size: 0.85rem;
		font-weight: 500;
		width: auto;
		min-width: 60px;
		max-width: 150px;
		padding: 0;
	}

	.step4-brand-tag input::placeholder {
		color: rgba(255, 255, 255, 0.7);
	}

	.step4-brand-tag input:focus {
		outline: none;
	}

	.step4-brand-remove {
		background: rgba(255, 255, 255, 0.2);
		border: none;
		color: white;
		width: 18px;
		height: 18px;
		border-radius: 50%;
		display: flex;
		align-items: center;
		justify-content: center;
		cursor: pointer;
		font-size: 0.7rem;
		transition: all 0.2s ease;
		padding: 0;
	}

	.step4-brand-remove:hover {
		background: rgba(255, 255, 255, 0.3);
	}

	.btn-add-brand-small, .btn-add-keyword-small {
		display: inline-flex;
		align-items: center;
		gap: 0.35rem;
		padding: 0.35rem 0.75rem;
		background: white;
		border: 1px dashed #d1d5db;
		border-radius: 20px;
		color: var(--text-muted);
		font-size: 0.8rem;
		font-weight: 500;
		cursor: pointer;
		transition: all 0.2s ease;
	}

	.btn-add-brand-small:hover, .btn-add-keyword-small:hover {
		border-color: var(--primary);
		color: var(--primary);
	}

	/* Step 4 Keywords */
	.step4-keywords-container {
		display: flex;
		flex-wrap: wrap;
		gap: 0.5rem;
		margin-bottom: 0.5rem;
	}

	.step4-keyword-tag {
		display: inline-flex;
		align-items: center;
		gap: 0.35rem;
		background: linear-gradient(135deg, #10b981 0%, #059669 100%);
		color: white;
		padding: 0.35rem 0.75rem;
		border-radius: 20px;
		font-size: 0.85rem;
		font-weight: 500;
	}

	.step4-keyword-tag input {
		background: transparent;
		border: none;
		color: white;
		font-size: 0.85rem;
		font-weight: 500;
		width: auto;
		min-width: 80px;
		max-width: 200px;
		padding: 0;
	}

	.step4-keyword-tag input::placeholder {
		color: rgba(255, 255, 255, 0.7);
	}

	.step4-keyword-tag input:focus {
		outline: none;
	}

	.step4-keyword-remove {
		background: rgba(255, 255, 255, 0.2);
		border: none;
		color: white;
		width: 18px;
		height: 18px;
		border-radius: 50%;
		display: flex;
		align-items: center;
		justify-content: center;
		cursor: pointer;
		font-size: 0.7rem;
		transition: all 0.2s ease;
		padding: 0;
	}

	.step4-keyword-remove:hover {
		background: rgba(255, 255, 255, 0.3);
	}

	.btn-regenerate {
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 0.5rem;
		width: 100%;
		padding: 0.75rem 1.5rem;
		background: white;
		border: 2px solid var(--primary);
		border-radius: 12px;
		color: var(--primary);
		font-size: 0.9rem;
		font-weight: 600;
		cursor: pointer;
		transition: all 0.2s ease;
	}

	.btn-regenerate:hover {
		background: var(--primary);
		color: white;
	}

	.btn-regenerate i {
		font-size: 1rem;
	}

	@media (max-width: 640px) {
		.summary-grid {
			grid-template-columns: 1fr;
		}
	}

	/* Analysis Summary */
	.analysis-summary {
		background: #f8fafc;
		border: 1px solid #e2e8f0;
		border-radius: 16px;
		padding: 1.25rem;
		margin-bottom: 1.5rem;
	}

	.summary-row {
		display: flex;
		flex-wrap: wrap;
		gap: 1rem;
	}

	.summary-item {
		flex: 1;
		min-width: 200px;
		background: white;
		border-radius: 12px;
		padding: 1rem 1.25rem;
		border: 1px solid #e2e8f0;
	}

	.summary-label {
		display: flex;
		align-items: center;
		gap: 0.5rem;
		font-size: 0.7rem;
		font-weight: 700;
		color: #64748b;
		text-transform: uppercase;
		letter-spacing: 0.5px;
		margin-bottom: 0.75rem;
	}

	.summary-label::before {
		content: '';
		width: 6px;
		height: 6px;
		background: #10b981;
		border-radius: 50%;
	}

	.summary-value {
		font-size: 1rem;
		font-weight: 600;
		color: var(--text-dark);
		line-height: 1.4;
	}

	.summary-brands {
		display: flex;
		flex-wrap: wrap;
		gap: 0.5rem;
	}

	.brand-tag {
		display: inline-flex;
		align-items: center;
		gap: 0.35rem;
		background: #10b981;
		color: white;
		padding: 0.4rem 0.85rem;
		border-radius: 20px;
		font-size: 0.8rem;
		font-weight: 600;
		transition: all 0.2s ease;
	}

	.brand-tag:hover {
		background: #059669;
	}

	.brand-tag i {
		font-size: 0.7rem;
		opacity: 0.8;
	}

	.brand-tag.auto {
		background: #10b981;
	}

	.brand-tag.auto::after {
		content: '✓';
		font-size: 0.6rem;
		opacity: 0.7;
		margin-left: 0.15rem;
	}

	/* Prompts section - Modern */
	.prompts-section {
		margin-bottom: 1.25rem;
		max-height: 450px;
		overflow-y: auto;
		overflow-x: hidden;
		padding-right: 10px;
		scrollbar-width: thin;
		scrollbar-color: #14b8a6 #f3f4f6;
	}

	.prompts-section::-webkit-scrollbar {
		width: 6px;
	}

	.prompts-section::-webkit-scrollbar-track {
		background: #f3f4f6;
		border-radius: 10px;
	}

	.prompts-section::-webkit-scrollbar-thumb {
		background: linear-gradient(180deg, #14b8a6 0%, #0d9488 100%);
		border-radius: 10px;
	}

	.prompts-section::-webkit-scrollbar-thumb:hover {
		background: linear-gradient(180deg, #0d9488 0%, #0f766e 100%);
	}

	.category-section {
		margin-bottom: 1.25rem;
		background: #fafafa;
		border-radius: 12px;
		padding: 1rem;
	}

	.category-header {
		display: flex;
		align-items: center;
		gap: 0.6rem;
		margin-bottom: 0.75rem;
		padding-bottom: 0.6rem;
		border-bottom: 1px solid #e5e7eb;
	}

	.category-title {
		font-size: 0.85rem;
		font-weight: 700;
		color: #374151;
	}

	.category-icon {
		width: 28px;
		height: 28px;
		border-radius: 8px;
		display: flex;
		align-items: center;
		justify-content: center;
		font-size: 0.8rem;
	}

	.category-icon.produit { background: rgba(124, 58, 237, 0.1); color: var(--primary); }
	.category-icon.marque { background: rgba(6, 182, 212, 0.1); color: var(--secondary); }
	.category-icon.mots-cles { background: rgba(16, 185, 129, 0.1); color: var(--success); }
	.category-icon.categorie { background: rgba(245, 158, 11, 0.1); color: #f59e0b; }
	
	/* Nouvelles couleurs par catégorie */
	.category-icon.primary { background: rgba(59, 130, 246, 0.1); color: #3B82F6; }
	.category-icon.success { background: rgba(16, 185, 129, 0.1); color: #10B981; }
	.category-icon.info { background: rgba(6, 182, 212, 0.1); color: #06B6D4; }
	.category-icon.warning { background: rgba(245, 158, 11, 0.1); color: #F59E0B; }
	.category-icon.secondary { background: rgba(107, 114, 128, 0.1); color: #6B7280; }

	.category-count {
		margin-left: auto;
		font-size: 0.7rem;
		font-weight: 600;
		padding: 0.2rem 0.6rem;
		border-radius: 10px;
	}

	.category-count.badge-light-primary {
		background: rgba(59, 130, 246, 0.1);
		color: #3B82F6;
	}

	.category-count.badge-light-success {
		background: rgba(16, 185, 129, 0.1);
		color: #10B981;
	}

	.category-count.badge-light-info {
		background: rgba(6, 182, 212, 0.1);
		color: #06B6D4;
	}

	.category-count.badge-light-warning {
		background: rgba(245, 158, 11, 0.1);
		color: #F59E0B;
	}

	.category-count.badge-light-secondary {
		background: rgba(107, 114, 128, 0.1);
		color: #6B7280;
	}

	.prompts-grid {
		display: flex;
		flex-direction: column;
		gap: 0.6rem;
	}

	.prompt-card {
		display: flex;
		align-items: flex-start;
		gap: 0.875rem;
		padding: 1rem 1.125rem;
		background: white;
		border: 1.5px solid #e5e7eb;
		border-radius: 12px;
		cursor: pointer;
		transition: all 0.2s ease;
		overflow: hidden;
		box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
	}

	.prompt-card:hover {
		border-color: #F97316;
		background: #FFFBF5;
		transform: translateY(-1px);
		box-shadow: 0 4px 12px rgba(249, 115, 22, 0.1);
	}

	.prompt-card.selected {
		border-color: #14b8a6;
		background: linear-gradient(135deg, #f0fdfa 0%, #ccfbf1 100%);
		box-shadow: 0 3px 12px rgba(20, 184, 166, 0.18);
	}

	.prompt-card.system-prompt {
		border-style: dashed;
		background: #fafafa;
	}

	.prompt-checkbox {
		width: 22px;
		height: 22px;
		border-radius: 7px;
		border: 2px solid #d1d5db;
		display: flex;
		align-items: center;
		justify-content: center;
		flex-shrink: 0;
		margin-top: 1px;
		transition: all 0.2s ease;
		background: white;
	}

	.prompt-card.selected .prompt-checkbox {
		background: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%);
		border-color: #14b8a6;
		box-shadow: 0 2px 6px rgba(20, 184, 166, 0.3);
	}

	.prompt-checkbox i {
		font-size: 0.625rem;
		color: white;
		opacity: 0;
	}

	.prompt-card.selected .prompt-checkbox i {
		opacity: 1;
	}

	.prompt-info {
		flex: 1;
		min-width: 0;
	}

	.prompt-content {
		flex: 1;
		min-width: 0;
		overflow: hidden;
	}

	.prompt-title {
		font-size: 0.875rem;
		font-weight: 700;
		color: #1f2937;
		margin: 0 0 6px 0;
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis;
		letter-spacing: -0.01em;
	}

	.prompt-template {
		font-size: 0.8rem;
		color: #6b7280;
		line-height: 1.5;
		overflow: hidden;
		text-overflow: ellipsis;
		white-space: nowrap;
		margin: 0;
		max-width: 100%;
	}

	.prompt-header-row {
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 10px;
		margin-bottom: 4px;
	}

	.prompt-header-row .prompt-title {
		flex: 1;
		min-width: 0;
	}

	.prompt-keyword-badge {
		font-size: 0.65rem;
		background: linear-gradient(135deg, #FEF3C7 0%, #FDE68A 100%);
		color: #92400e;
		padding: 3px 8px;
		border-radius: 6px;
		font-weight: 700;
		white-space: nowrap;
		flex-shrink: 0;
		border: 1px solid #fcd34d;
	}

	.system-badge {
		font-size: 0.625rem;
		font-weight: 600;
		color: var(--primary);
		background: rgba(124, 58, 237, 0.1);
		padding: 0.15rem 0.4rem;
		border-radius: 4px;
		margin-left: 0.5rem;
	}

	/* Selected count - Modern Teal */
	.selected-count {
		display: flex;
		align-items: center;
		justify-content: space-between;
		padding: 1rem 1.25rem;
		background: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%);
		border-radius: 14px;
		margin-bottom: 1.25rem;
		color: white;
		position: sticky;
		top: 0;
		z-index: 10;
		box-shadow: 0 4px 15px rgba(20, 184, 166, 0.35);
	}

	.selected-count-text {
		font-size: 0.9rem;
		font-weight: 600;
		letter-spacing: 0.01em;
	}

	.selected-count-number {
		font-size: 1.25rem;
		font-weight: 800;
		background: rgba(255, 255, 255, 0.25);
		padding: 0.35rem 1.25rem;
		border-radius: 25px;
		min-width: 48px;
		text-align: center;
		backdrop-filter: blur(4px);
	}

	/* Validation warning */
	.validation-warning {
		display: none;
		align-items: center;
		gap: 0.75rem;
		padding: 1rem;
		background: #fef2f2;
		border: 1px solid #fecaca;
		border-radius: 12px;
		margin-bottom: 1rem;
	}

	.validation-warning.visible {
		display: flex;
	}

	.validation-warning i {
		color: #ef4444;
		font-size: 1.25rem;
	}

	.validation-warning p {
		margin: 0;
		font-size: 0.875rem;
		color: #dc2626;
		font-weight: 500;
	}

	/* Loading state - Enhanced */
	.loading-prompts {
		text-align: center;
		padding: 2rem 1rem;
	}

	.loading-header {
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 0.75rem;
		margin-bottom: 1.5rem;
	}

	.loading-spinner {
		width: 32px;
		height: 32px;
		border: 3px solid var(--border-color);
		border-top-color: var(--primary);
		border-radius: 50%;
		animation: spin 1s linear infinite;
	}

	.loading-header-text {
		font-size: 1rem;
		font-weight: 600;
		color: var(--primary);
	}

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

	.loading-steps {
		display: flex;
		flex-direction: column;
		gap: 0.75rem;
		max-width: 340px;
		margin: 0 auto;
	}

	.loading-step {
		display: flex;
		align-items: center;
		gap: 0.75rem;
		padding: 0.75rem 1rem;
		background: #f1f5f9;
		border-radius: 10px;
		border: 1px solid #e2e8f0;
		opacity: 0.5;
		transition: all 0.4s ease;
	}

	.loading-step.active {
		opacity: 1;
		background: linear-gradient(135deg, #ede9fe 0%, #dbeafe 100%);
		border: 2px solid #7c3aed;
		box-shadow: 0 2px 8px rgba(124, 58, 237, 0.15);
	}

	.loading-step.completed {
		opacity: 1;
		background: #dcfce7;
		border: 1px solid #22c55e;
	}

	.loading-step-icon {
		width: 32px;
		height: 32px;
		border-radius: 50%;
		display: flex;
		align-items: center;
		justify-content: center;
		font-size: 0.9rem;
		flex-shrink: 0;
	}

	.loading-step:not(.active):not(.completed) .loading-step-icon {
		background: #cbd5e1;
		color: #64748b;
	}

	.loading-step.active .loading-step-icon {
		background: linear-gradient(135deg, #7c3aed 0%, #3b82f6 100%);
		color: white;
		animation: pulse-icon 1.5s ease-in-out infinite;
		box-shadow: 0 2px 6px rgba(124, 58, 237, 0.4);
	}

	.loading-step.completed .loading-step-icon {
		background: #22c55e;
		color: white;
	}

	@keyframes pulse-icon {
		0%, 100% { transform: scale(1); }
		50% { transform: scale(1.15); }
	}

	.loading-step-text {
		font-size: 0.9rem;
		color: #475569;
		text-align: left;
		font-weight: 500;
	}

	.loading-step.active .loading-step-text {
		font-weight: 600;
		color: #5b21b6;
	}

	.loading-step.completed .loading-step-text {
		color: #15803d;
		font-weight: 500;
	}

	/* URL Analysis Loader - Modern */
	.url-analysis-loader {
		display: flex;
		flex-direction: column;
		align-items: center;
		padding: 2.5rem 1.5rem;
		background: linear-gradient(135deg, rgba(124, 58, 237, 0.03) 0%, rgba(6, 182, 212, 0.03) 100%);
		border-radius: 20px;
		border: 1px solid rgba(124, 58, 237, 0.1);
		margin: 1rem 0 2rem;
	}

	.url-analysis-visual {
		position: relative;
		width: 120px;
		height: 120px;
		margin: 0 auto 1.5rem auto;
	}

	.url-analysis-circle {
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		width: 100px;
		height: 100px;
		border-radius: 50%;
		background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
		display: flex;
		align-items: center;
		justify-content: center;
		box-shadow: 0 10px 40px rgba(124, 58, 237, 0.3);
	}

	.url-analysis-circle i {
		font-size: 2.5rem;
		color: white;
	}

	.url-analysis-ring {
		position: absolute;
		top: 0;
		left: 0;
		width: 120px;
		height: 120px;
		border-radius: 50%;
		border: 3px solid transparent;
		border-top-color: var(--primary);
		border-right-color: var(--secondary);
		animation: analysisRingSpin 1.5s linear infinite;
	}

	.url-analysis-ring.stopped {
		animation: none;
		transform: rotate(360deg);
	}

	@keyframes analysisRingSpin {
		0% { transform: rotate(0deg); }
		100% { transform: rotate(360deg); }
	}

	.url-analysis-title {
		font-size: 1.25rem;
		font-weight: 700;
		color: var(--text-dark);
		margin-bottom: 0.5rem;
		text-align: center;
	}

	.url-analysis-subtitle {
		font-size: 0.9rem;
		color: var(--text-muted);
		margin-bottom: 2rem;
		text-align: center;
	}

	.url-analysis-steps {
		display: flex;
		flex-direction: column;
		gap: 0.75rem;
		width: 100%;
		max-width: 400px;
		margin: 0 auto;
	}

	.url-analysis-step {
		display: flex;
		align-items: center;
		gap: 1rem;
		padding: 1rem 1.25rem;
		background: white;
		border-radius: 14px;
		border: 2px solid #e5e7eb;
		transition: all 0.3s ease;
		opacity: 0.6;
		box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
	}

	.url-analysis-step.active {
		opacity: 1;
		border-color: #7c3aed;
		border-width: 2px;
		background: linear-gradient(135deg, rgba(124, 58, 237, 0.04) 0%, rgba(99, 102, 241, 0.04) 100%);
		box-shadow: 0 4px 20px rgba(124, 58, 237, 0.2);
		transform: scale(1.02);
	}

	.url-analysis-step.completed {
		opacity: 1;
		border-color: #10b981;
		border-width: 2px;
		background: linear-gradient(135deg, rgba(16, 185, 129, 0.06) 0%, rgba(16, 185, 129, 0.02) 100%);
		box-shadow: 0 2px 8px rgba(16, 185, 129, 0.12);
	}

	.url-analysis-step-icon {
		width: 40px;
		height: 40px;
		border-radius: 12px;
		display: flex;
		align-items: center;
		justify-content: center;
		background: #f3f4f6;
		color: #9ca3af;
		flex-shrink: 0;
		transition: all 0.3s ease;
		font-size: 1.1rem;
	}

	.url-analysis-step.active .url-analysis-step-icon {
		background: linear-gradient(135deg, #7c3aed 0%, #6366f1 100%);
		color: white !important;
		animation: stepPulse 1.5s ease-in-out infinite;
		box-shadow: 0 4px 12px rgba(124, 58, 237, 0.4);
	}

	.url-analysis-step.active .url-analysis-step-icon i,
	.url-analysis-step.active .url-analysis-step-icon i:before,
	.url-analysis-step.active .url-analysis-step-icon i::before {
		color: white !important;
		-webkit-text-fill-color: white !important;
	}

	.url-analysis-step.completed .url-analysis-step-icon {
		background: linear-gradient(135deg, #10b981 0%, #059669 100%) !important;
		color: #fff !important;
		box-shadow: 0 3px 10px rgba(16, 185, 129, 0.35);
	}

	.url-analysis-step.completed .url-analysis-step-icon i,
	.url-analysis-step.completed .url-analysis-step-icon i:before,
	.url-analysis-step.completed .url-analysis-step-icon i::before,
	.url-analysis-step.completed .url-analysis-step-icon i:after {
		color: #fff !important;
		-webkit-text-fill-color: #fff !important;
		fill: #fff !important;
	}

	@keyframes stepPulse {
		0%, 100% { transform: scale(1); }
		50% { transform: scale(1.1); }
	}

	.url-analysis-step-content {
		flex: 1;
	}

	.url-analysis-step-title {
		font-size: 0.95rem;
		font-weight: 700;
		color: #374151;
		margin-bottom: 0.2rem;
	}

	.url-analysis-step.active .url-analysis-step-title {
		color: #7c3aed;
	}

	.url-analysis-step.completed .url-analysis-step-title {
		color: #059669;
	}

	.url-analysis-step-desc {
		font-size: 0.8rem;
		color: #6b7280;
	}

	.url-analysis-step-check {
		width: 26px;
		height: 26px;
		border-radius: 50%;
		background: linear-gradient(135deg, #10b981 0%, #059669 100%);
		color: white !important;
		display: none;
		align-items: center;
		justify-content: center;
		font-size: 0.8rem;
		flex-shrink: 0;
		box-shadow: 0 2px 8px rgba(16, 185, 129, 0.4);
	}

	.url-analysis-step-check i,
	.url-analysis-step-check i:before {
		color: white !important;
	}

	.url-analysis-step.completed .url-analysis-step-check {
		display: flex;
	}

	/* Force white icons in all states */
	.url-analysis-step-icon i {
		font-size: 1rem;
	}

	.url-analysis-step.active .url-analysis-step-icon i,
	.url-analysis-step.active .url-analysis-step-icon i::before,
	.url-analysis-step.active .url-analysis-step-icon i:before,
	.url-analysis-step.active .url-analysis-step-icon [class*="ki-"],
	.url-analysis-step.active .url-analysis-step-icon [class*="ki-"]::before,
	.url-analysis-step.active .url-analysis-step-icon [class*="ki-"]:before {
		color: #ffffff !important;
		-webkit-text-fill-color: #ffffff !important;
	}

	.url-analysis-step.completed .url-analysis-step-icon i,
	.url-analysis-step.completed .url-analysis-step-icon i::before,
	.url-analysis-step.completed .url-analysis-step-icon i:before,
	.url-analysis-step.completed .url-analysis-step-icon i::after,
	.url-analysis-step.completed .url-analysis-step-icon [class*="ki-"],
	.url-analysis-step.completed .url-analysis-step-icon [class*="ki-"]::before,
	.url-analysis-step.completed .url-analysis-step-icon [class*="ki-"]:before,
	.url-analysis-step.completed .url-analysis-step-icon [class*="ki-"]::after {
		color: #ffffff !important;
		-webkit-text-fill-color: #ffffff !important;
		background-color: transparent !important;
	}

	.url-analysis-step.completed .url-analysis-step-icon .ki-outline {
		color: #ffffff !important;
		-webkit-text-fill-color: #ffffff !important;
	}

	.url-analysis-step.completed .url-analysis-step-icon .ki-outline::before,
	.url-analysis-step.completed .url-analysis-step-icon .ki-outline:before,
	.url-analysis-step.completed .url-analysis-step-icon .ki-outline::after,
	.url-analysis-step.completed .url-analysis-step-icon .ki-outline:after {
		color: #ffffff !important;
		-webkit-text-fill-color: #ffffff !important;
	}

	.url-analysis-step-check i,
	.url-analysis-step-check i::before,
	.url-analysis-step-check [class*="ki-"],
	.url-analysis-step-check [class*="ki-"]::before,
	.url-analysis-step-check [class*="ki-"]:before {
		color: #ffffff !important;
		-webkit-text-fill-color: #ffffff !important;
	}

	.loading-prompts p {
		color: var(--text-muted);
		font-size: 0.8rem;
		margin-top: 1.25rem;
	}

	/* Buttons - Modern SaaS Style */
	.btn-primary {
		flex: 1;
		padding: 0.875rem 1.5rem;
		background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
		border: none;
		border-radius: 10px;
		color: white;
		font-size: 0.9375rem;
		font-weight: 600;
		cursor: pointer;
		transition: all 0.2s ease;
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 0.5rem;
		box-shadow: 0 1px 3px rgba(124, 58, 237, 0.2), 0 4px 12px rgba(124, 58, 237, 0.15);
		letter-spacing: -0.01em;
	}

	.btn-primary:hover {
		transform: translateY(-1px);
		box-shadow: 0 4px 16px rgba(37, 99, 235, 0.35), 0 8px 24px rgba(37, 99, 235, 0.2);
	}

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

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

	.btn-primary i {
		font-size: 1rem;
		color: white !important;
		-webkit-text-fill-color: white !important;
	}

	/* Ghost/Text button for secondary actions */
	.btn-secondary {
		padding: 0.875rem 1.25rem;
		background: #f3f4f6;
		border: none;
		border-radius: 10px;
		color: #374151;
		font-size: 0.9375rem;
		font-weight: 500;
		cursor: pointer;
		transition: all 0.15s ease;
		display: flex;
		align-items: center;
		gap: 0.375rem;
	}

	.btn-secondary:hover {
		background: #e5e7eb;
		color: var(--text-dark);
	}

	.btn-secondary i {
		font-size: 0.875rem;
	}

	.action-buttons {
		display: flex;
		gap: 1rem;
		margin-top: 1.5rem;
	}

	.action-buttons.single {
		justify-content: center;
	}

	.action-buttons .btn-primary {
		flex: 1;
	}

	/* Step content */
	.step-content {
		display: none;
	}

	.step-content.active {
		display: block;
		animation: fadeIn 0.3s ease;
	}

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

	/* Language selector */
	.lang-selector {
		position: fixed;
		top: 1.5rem;
		right: 1.5rem;
		z-index: 1000;
	}

	.lang-btn {
		background: white;
		border: 1px solid var(--border-color);
		padding: 0.5rem 1rem;
		border-radius: 8px;
		font-size: 0.875rem;
		font-weight: 500;
		color: var(--text-dark);
		cursor: pointer;
		display: flex;
		align-items: center;
		gap: 0.5rem;
		transition: all 0.2s ease;
		box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
	}

	.lang-btn:hover {
		border-color: var(--primary-light);
	}

	.lang-menu {
		display: none;
		position: absolute;
		top: 100%;
		right: 0;
		margin-top: 0.5rem;
		background: white;
		border-radius: 12px;
		padding: 0.5rem;
		box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
		min-width: 140px;
	}

	.lang-menu.show {
		display: block;
	}

	.lang-menu a {
		display: flex;
		align-items: center;
		gap: 0.5rem;
		padding: 0.5rem 0.75rem;
		color: var(--text-dark);
		text-decoration: none;
		border-radius: 8px;
		font-size: 0.875rem;
		transition: all 0.2s ease;
	}

	.lang-menu a:hover {
		background: var(--bg-light);
	}

	/* Responsive */
	@media (max-width: 768px) {
		.onboarding-wrapper {
			padding: 1rem;
			padding-top: 1.5rem;
			padding-bottom: 2rem;
			align-items: flex-start;
		}

		.onboarding-card {
			border-radius: 20px;
			margin: 0.5rem 0;
			max-width: 100%;
		}

		.onboarding-content {
			padding: 1.5rem 1.25rem;
		}

		.step-title {
			font-size: 1.35rem;
		}

		.step-subtitle {
			font-size: 0.9rem;
		}

		.summary-row {
			flex-direction: column;
		}

		.summary-item {
			min-width: 100%;
		}

		.action-buttons {
			flex-direction: column-reverse;
			gap: 0.75rem;
		}

		.action-buttons .btn-secondary,
		.action-buttons .btn-primary {
			width: 100%;
			justify-content: center;
		}

		.analysis-type-card {
			padding: 0.875rem 1rem;
		}

		.analysis-type-text {
			font-size: 0.85rem;
		}

		.visibility-info-box {
			margin-left: 0;
			padding: 1rem;
		}

		.additional-keywords-section {
			padding: 0.875rem;
		}

		.form-input,
		.form-select {
			padding: 0.75rem 0.875rem;
			font-size: 0.9375rem;
		}

		.welcome-logo img {
			height: 50px;
		}

		.step-icon {
			width: 56px;
			height: 56px;
		}

		.step-icon i {
			font-size: 1.5rem;
		}
	}

	@media (max-width: 480px) {
		.onboarding-wrapper {
			padding: 0.5rem;
		}

		.onboarding-content {
			padding: 1.25rem 1rem;
		}

		.step-title {
			font-size: 1.25rem;
		}

		.feature-item {
			padding: 1rem;
			flex-direction: column;
			text-align: center;
		}

		.feature-number {
			margin-bottom: 0.5rem;
		}

		.client-type-card {
			padding: 1rem;
		}

		.client-type-icon {
			width: 40px;
			height: 40px;
		}

		.client-type-icon i {
			font-size: 1.25rem;
		}

		.prompt-card {
			padding: 0.75rem;
		}

		.selected-count {
			padding: 0.75rem;
		}

		.brand-tag {
			font-size: 0.75rem;
			padding: 0.25rem 0.6rem;
		}

		.progress-header {
			padding: 1rem 1.25rem;
		}
	}
