/* ──────────────────────────────────────────────────────────────────
   3bids Design AI — al inline-CSS udskilt fra design.html under
   Stadie 3b af Django-migrationen.
   ────────────────────────────────────────────────────────────────── */

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; color: #111; background: #fff; }

.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; background: rgba(255,255,255,0.95); backdrop-filter: blur(20px); border-bottom: 1px solid rgba(0,0,0,0.06); }
.nav-inner { max-width: 1280px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; padding: 0.75rem 2rem; }
.nav-brand { text-decoration: none; display: flex; align-items: center; }
.nav-logo { height: 32px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a { color: #4b5563; text-decoration: none; font-weight: 500; font-size: 0.95rem; transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: #2563EB; }
.nav-cta { display: flex; align-items: center; gap: 0.75rem; }
.btn-nav { padding: 0.55rem 1.25rem; border-radius: 10px; font-weight: 600; font-size: 0.9rem; text-decoration: none; transition: all 0.2s; }
.btn-nav-ghost { color: #4b5563; }
.btn-nav-solid { background: linear-gradient(135deg, #2563EB, #1e40af); color: white; }

.design-hero { padding: 8rem 2rem 4rem; text-align: center; background: linear-gradient(135deg, #f0f7ff 0%, #eff6ff 50%, #eef2ff 100%); }
.design-hero h1 { font-size: 3rem; font-weight: 800; line-height: 1.15; margin-bottom: 1rem; }
.design-hero h1 span { background: linear-gradient(135deg, #ec4899, #3b82f6, #2563EB); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.design-hero p { font-size: 1.15rem; color: #6b7280; max-width: 620px; margin: 0 auto 2rem; line-height: 1.6; }

.trust-badges { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.5rem; margin-top: 2rem; padding: 0 2rem; }
.trust-badge { display: flex; align-items: center; gap: 0.5rem; font-size: 0.9rem; color: #4b5563; font-weight: 500; }
.trust-badge-icon { font-size: 1.2rem; }

.how-it-works { max-width: 1100px; margin: 3rem auto; padding: 3rem 2rem; }
.how-it-works h2 { font-size: 1.8rem; font-weight: 800; text-align: center; margin-bottom: 3rem; }
.how-it-works-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; }
.how-step { background: #f9fafb; border-radius: 16px; padding: 2rem; text-align: center; border: 1px solid #e5e7eb; transition: all 0.3s; }
.how-step:hover { transform: translateY(-4px); box-shadow: 0 8px 25px rgba(0,0,0,0.08); }
.how-step-number { width: 50px; height: 50px; background: linear-gradient(135deg, #2563EB, #1e40af); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; font-weight: 800; margin: 0 auto 1rem; }
.how-step h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 0.75rem; }
.how-step p { font-size: 0.95rem; color: #6b7280; line-height: 1.5; }

.main { max-width: 1100px; margin: 0 auto; padding: 3rem 2rem; }

.upload-zone { border: 3px dashed #d1d5db; border-radius: 24px; padding: 3rem; text-align: center; cursor: pointer; transition: all 0.3s; background: #fafbfc; margin-bottom: 2rem; }
.upload-zone:hover, .upload-zone.dragover { border-color: #2563EB; background: #f0f7ff; }
.upload-zone.has-image { border-style: solid; border-color: #e5e7eb; padding: 0; overflow: hidden; cursor: default; }
.upload-icon { font-size: 4rem; margin-bottom: 1rem; }
.upload-title { font-size: 1.2rem; font-weight: 700; margin-bottom: 0.5rem; }
.upload-sub { color: #9ca3af; font-size: 0.95rem; margin-bottom: 1rem; }
.upload-btn { display: inline-block; padding: 0.75rem 2rem; border-radius: 12px; background: linear-gradient(135deg, #ec4899, #3b82f6); color: white; font-weight: 700; font-size: 0.95rem; border: none; cursor: pointer; }
#fileInput { display: none; }

.transform-area { display: none; margin-bottom: 2rem; }
.transform-area.active { display: block; }
.image-container { position: relative; border-radius: 20px; overflow: hidden; background: #000; margin-bottom: 1.5rem; }
.image-container img { width: 100%; display: block; transition: filter 0.5s ease; }
.image-overlay { position: absolute; top: 0; left: 0; right: 0; bottom: 0; pointer-events: none; transition: all 0.5s ease; mix-blend-mode: overlay; opacity: 0; }
.image-container.styled .image-overlay { opacity: 1; }
.image-label { position: absolute; top: 16px; left: 16px; background: rgba(0,0,0,0.6); color: white; padding: 0.4rem 1rem; border-radius: 10px; font-size: 0.85rem; font-weight: 600; backdrop-filter: blur(10px); }
.image-label-right { position: absolute; top: 16px; right: 16px; background: linear-gradient(135deg, #ec4899, #3b82f6); color: white; padding: 0.4rem 1rem; border-radius: 10px; font-size: 0.85rem; font-weight: 600; }
.change-photo { position: absolute; bottom: 16px; right: 16px; background: rgba(0,0,0,0.6); color: white; padding: 0.5rem 1rem; border-radius: 10px; font-size: 0.85rem; font-weight: 600; border: none; cursor: pointer; backdrop-filter: blur(10px); }

.compare-container { position: relative; border-radius: 20px; overflow: hidden; margin-bottom: 1.5rem; display: none; cursor: ew-resize; user-select: none; }
.compare-container.active { display: block; }
.compare-container img { width: 100%; display: block; }
.compare-after { position: absolute; top: 0; left: 0; right: 0; bottom: 0; overflow: hidden; width: 50%; }
.compare-after img { width: 100%; height: 100%; object-fit: cover; position: absolute; top: 0; left: 0; min-width: 100%; }
.compare-slider { position: absolute; top: 0; bottom: 0; width: 4px; background: white; left: 50%; cursor: ew-resize; z-index: 10; box-shadow: 0 0 10px rgba(0,0,0,0.3); }
.compare-slider::after { content: '\2194'; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 40px; height: 40px; background: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1rem; box-shadow: 0 2px 10px rgba(0,0,0,0.2); }
.compare-label-left { position: absolute; top: 16px; left: 16px; background: rgba(0,0,0,0.6); color: white; padding: 0.3rem 0.8rem; border-radius: 8px; font-size: 0.8rem; font-weight: 600; }
.compare-label-right { position: absolute; top: 16px; right: 16px; background: linear-gradient(135deg, #ec4899, #3b82f6); color: white; padding: 0.3rem 0.8rem; border-radius: 8px; font-size: 0.8rem; font-weight: 600; }

.view-toggle { display: flex; gap: 0.5rem; margin-bottom: 1.5rem; }
.view-btn { padding: 0.6rem 1.2rem; border-radius: 10px; border: 2px solid #e5e7eb; background: white; font-weight: 600; font-size: 0.85rem; cursor: pointer; color: #6b7280; transition: all 0.2s; }
.view-btn.active { border-color: #2563EB; color: #2563EB; background: #f0f7ff; }

.controls { display: flex; flex-direction: column; gap: 2rem; }
.control-section h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 1rem; display: flex; align-items: center; gap: 0.5rem; }

.room-chips { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.room-chip { padding: 0.6rem 1.2rem; border-radius: 12px; border: 2px solid #e5e7eb; background: white; font-size: 0.9rem; font-weight: 600; color: #374151; cursor: pointer; transition: all 0.2s; }
.room-chip:hover { border-color: #bfdbfe; }
.room-chip.selected { border-color: #2563EB; background: #f0f7ff; color: #2563EB; }

.style-scroll { display: flex; gap: 0.75rem; overflow-x: auto; padding-bottom: 0.5rem; }
.sty-card { flex: 0 0 140px; border-radius: 16px; overflow: hidden; cursor: pointer; border: 3px solid transparent; transition: all 0.3s; background: white; }
.sty-card:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.08); }
.sty-card.selected { border-color: #2563EB; }
.sty-preview { height: 80px; display: flex; }
.sty-preview div { flex: 1; }
.sty-info { padding: 0.6rem 0.75rem; }
.sty-name { font-weight: 700; font-size: 0.85rem; }
.sty-desc { font-size: 0.7rem; color: #9ca3af; }

.palette-row { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.pal-option { display: flex; gap: 0.25rem; padding: 0.4rem; border-radius: 12px; border: 3px solid transparent; cursor: pointer; transition: all 0.2s; background: white; }
.pal-option:hover { border-color: #e5e7eb; }
.pal-option.selected { border-color: #2563EB; }
.pal-swatch { width: 28px; height: 28px; border-radius: 6px; }

.mat-grid { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.mat-card { border-radius: 14px; padding: 0.65rem 0.8rem; border: 2px solid #f3f4f6; cursor: pointer; transition: all 0.2s; text-align: center; background: white; min-width: 90px; }
.mat-card:hover { border-color: #bfdbfe; }
.mat-card.selected { border-color: #2563EB; background: #f0f7ff; }
.mat-card .pop-tag { font-size: 0.6rem; color: #2563EB; font-weight: 700; }
.mat-icon { font-size: 1.4rem; margin-bottom: 0.15rem; }
.mat-name { font-weight: 600; font-size: 0.78rem; }

.detail-panel { display: none; background: #f9fafb; border-radius: 16px; padding: 1.25rem; margin-top: 0.75rem; border: 1px solid #e5e7eb; animation: fadeIn 0.3s ease; }
.detail-panel.active { display: block; }
.detail-panel h4 { font-size: 0.9rem; font-weight: 700; margin-bottom: 0.6rem; color: #374151; }
.detail-row { margin-bottom: 1rem; }
.detail-row:last-child { margin-bottom: 0; }
.detail-label { font-size: 0.8rem; font-weight: 600; color: #6b7280; margin-bottom: 0.4rem; }

.color-row { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.color-swatch { width: 36px; height: 36px; border-radius: 8px; cursor: pointer; border: 3px solid transparent; transition: all 0.2s; position: relative; }
.color-swatch:hover { transform: scale(1.1); }
.color-swatch.selected { border-color: #2563EB; box-shadow: 0 0 0 2px white, 0 0 0 4px #2563EB; }
.color-swatch .color-name {
  display: none; position: absolute; bottom: -20px; left: 50%; transform: translateX(-50%);
  font-size: 0.6rem; font-weight: 600; white-space: nowrap; color: #6b7280; background: white;
  padding: 1px 4px; border-radius: 4px;
}
.color-swatch:hover .color-name { display: block; }

.opt-chips { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.opt-chip { padding: 0.4rem 0.8rem; border-radius: 8px; border: 2px solid #e5e7eb; background: white; font-size: 0.78rem; font-weight: 600; cursor: pointer; transition: all 0.15s; color: #4b5563; }
.opt-chip:hover { border-color: #bfdbfe; }
.opt-chip.selected { border-color: #2563EB; background: #f0f7ff; color: #2563EB; }

.slider-wrap { display: flex; align-items: center; gap: 1rem; }
.slider-wrap input[type=range] { flex: 1; -webkit-appearance: none; height: 6px; border-radius: 3px; background: linear-gradient(90deg, #e5e7eb, #2563EB); outline: none; }
.slider-wrap input[type=range]::-webkit-slider-thumb { -webkit-appearance: none; width: 22px; height: 22px; border-radius: 50%; background: white; border: 3px solid #2563EB; cursor: pointer; }
.slider-label { font-size: 0.85rem; color: #6b7280; min-width: 30px; text-align: right; }

.result-panel { background: white; border-radius: 20px; border: 1px solid #f3f4f6; box-shadow: 0 4px 20px rgba(0,0,0,0.04); padding: 2rem; margin-top: 2rem; display: none; }
.result-panel.active { display: block; }
.result-panel h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 1rem; display: flex; align-items: center; gap: 0.5rem; }
.design-summary { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 0.6rem; margin-bottom: 1.5rem; }
.ds-item { background: #f9fafb; border-radius: 12px; padding: 0.8rem; }
.ds-label { font-size: 0.7rem; color: #9ca3af; font-weight: 500; }
.ds-value { font-size: 0.85rem; font-weight: 700; margin-top: 0.15rem; }
.tips-box { background: linear-gradient(135deg, #eff6ff, #eef2ff); border-radius: 16px; padding: 1.5rem; margin-bottom: 1.5rem; }
.tips-title { font-weight: 700; font-size: 0.95rem; margin-bottom: 0.75rem; }
.tips-list { list-style: none; display: flex; flex-direction: column; gap: 0.4rem; }
.tips-list li { font-size: 0.85rem; color: #374151; padding-left: 1.5rem; position: relative; line-height: 1.5; }
.tips-list li::before { content: '\2713'; position: absolute; left: 0; color: #2563EB; font-weight: 700; }
.price-box { display: flex; align-items: center; gap: 1.25rem; background: #d1fae5; border-radius: 16px; padding: 1.25rem 1.5rem; margin-bottom: 1.5rem; }
.price-icon { font-size: 2rem; }
.price-label { font-size: 0.85rem; color: #065f46; font-weight: 500; }
.price-val { font-size: 1.5rem; font-weight: 800; color: #059669; }
.result-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.ra-primary { flex: 1; min-width: 200px; padding: 0.9rem; border-radius: 14px; background: linear-gradient(135deg, #2563EB, #1e40af); color: white; font-weight: 700; text-decoration: none; text-align: center; }
.ra-secondary { padding: 0.9rem 1.5rem; border-radius: 14px; background: #f3f4f6; color: #374151; font-weight: 600; border: none; cursor: pointer; text-decoration: none; }

.ai-gen-section { background: linear-gradient(135deg, #eff6ff 0%, #eef2ff 50%, #f0f7ff 100%); border-radius: 20px; padding: 2rem; margin-top: 2rem; border: 2px solid #e0e7ff; position: relative; overflow: hidden; }
.ai-gen-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1rem; flex-wrap: wrap; gap: 0.75rem; }
.ai-gen-title { font-size: 1.15rem; font-weight: 800; display: flex; align-items: center; gap: 0.5rem; }
.ai-gen-badge { background: linear-gradient(135deg, #2563EB, #ec4899); color: white; padding: 0.3rem 0.8rem; border-radius: 20px; font-size: 0.75rem; font-weight: 700; }
.ai-gen-counter { background: white; padding: 0.4rem 1rem; border-radius: 12px; font-size: 0.85rem; font-weight: 600; color: #6b7280; border: 1px solid #e5e7eb; }
.ai-gen-counter strong { color: #2563EB; }
.ai-gen-desc { color: #6b7280; font-size: 0.9rem; line-height: 1.5; margin-bottom: 1.25rem; }
.ai-gen-btn { width: 100%; padding: 1rem; border-radius: 14px; border: none; background: linear-gradient(135deg, #2563EB, #ec4899); color: white; font-size: 1.05rem; font-weight: 700; cursor: pointer; transition: all 0.3s; display: flex; align-items: center; justify-content: center; gap: 0.5rem; }
.ai-gen-btn:hover:not(:disabled) { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(37,99,235,0.35); }
.ai-gen-btn:disabled { opacity: 0.6; cursor: not-allowed; }
.ai-gen-btn .spinner { display: inline-block; width: 20px; height: 20px; border: 3px solid rgba(255,255,255,0.3); border-top-color: white; border-radius: 50%; animation: spin 0.8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.ai-gen-progress { display: none; margin-top: 1rem; text-align: center; }
.ai-gen-progress.active { display: block; }
.ai-gen-progress-bar { height: 6px; background: #e5e7eb; border-radius: 3px; overflow: hidden; margin-bottom: 0.75rem; }
.ai-gen-progress-fill { height: 100%; background: linear-gradient(90deg, #2563EB, #ec4899); border-radius: 3px; width: 0%; transition: width 0.5s ease; animation: progressPulse 2s ease-in-out infinite; }
@keyframes progressPulse { 0%,100% { opacity: 1; } 50% { opacity: 0.7; } }
.ai-gen-status { font-size: 0.85rem; color: #6b7280; }
.ai-result { display: none; margin-top: 1.5rem; border-radius: 16px; overflow: hidden; border: 2px solid #e0e7ff; background: white; }
.ai-result.active { display: block; animation: fadeIn 0.5s ease; }
.ai-result img { width: 100%; display: block; }
.ai-result-footer { padding: 1rem 1.25rem; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 0.75rem; }
.ai-result-label { font-weight: 700; font-size: 0.9rem; }
.ai-result-actions { display: flex; gap: 0.5rem; }
.ai-result-actions button { padding: 0.5rem 1rem; border-radius: 10px; font-weight: 600; font-size: 0.8rem; border: none; cursor: pointer; }
.btn-ai-save { background: #2563EB; color: white; }
.btn-ai-retry { background: #f3f4f6; color: #374151; }
.ai-limit-box { display: none; margin-top: 1rem; background: #fef3c7; border: 2px solid #fbbf24; border-radius: 14px; padding: 1.5rem; text-align: center; }
.ai-limit-box.active { display: block; }
.ai-limit-box h4 { font-size: 1rem; margin-bottom: 0.5rem; }
.ai-limit-box p { font-size: 0.85rem; color: #92400e; margin-bottom: 1rem; }
.ai-limit-cta { display: inline-block; padding: 0.7rem 1.5rem; border-radius: 12px; background: linear-gradient(135deg, #2563EB, #1e40af); color: white; font-weight: 700; text-decoration: none; }
.ai-demo-notice { display: none; margin-top: 0.75rem; padding: 0.75rem 1rem; border-radius: 10px; background: #eff6ff; border: 1px solid #bfdbfe; font-size: 0.8rem; color: #1e40af; }
.ai-demo-notice.active { display: block; }

.prompt-preview { margin-top: 1rem; background: #1e1b4b; color: #93c5fd; border-radius: 12px; padding: 1rem; font-size: 0.75rem; font-family: monospace; line-height: 1.5; max-height: 120px; overflow-y: auto; display: none; }
.prompt-preview.active { display: block; }
.prompt-toggle { font-size: 0.75rem; color: #2563EB; cursor: pointer; margin-top: 0.5rem; font-weight: 600; }

.cta-banner { background: linear-gradient(135deg, #2563EB, #1e40af); border-radius: 20px; padding: 3rem 2rem; text-align: center; margin: 3rem 0; color: white; }
.cta-banner h2 { font-size: 1.8rem; font-weight: 800; margin-bottom: 0.75rem; }
.cta-banner p { font-size: 1.05rem; margin-bottom: 1.5rem; opacity: 0.95; }
.cta-banner a { display: inline-block; padding: 0.85rem 2rem; background: white; color: #2563EB; font-weight: 700; border-radius: 12px; text-decoration: none; transition: all 0.2s; }
.cta-banner a:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0,0,0,0.15); }

.prisberegner-cta { background: white; border: 1px solid #e5e7eb; border-radius: 16px; padding: 2rem; text-align: center; margin: 3rem 0; }
.prisberegner-cta h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 0.75rem; }
.prisberegner-cta p { font-size: 0.95rem; color: #6b7280; margin-bottom: 1.5rem; }
.prisberegner-cta a { display: inline-block; padding: 0.75rem 2rem; background: linear-gradient(135deg, #059669, #10b981); color: white; font-weight: 700; border-radius: 12px; text-decoration: none; transition: all 0.2s; }
.prisberegner-cta a:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(5,150,105,0.3); }

.faq-section { margin: 4rem 0; }
.faq-section h2 { font-size: 1.8rem; font-weight: 800; margin-bottom: 2rem; }
.faq-list { display: flex; flex-direction: column; gap: 1rem; }
.faq-item { border: 1px solid #e5e7eb; border-radius: 12px; overflow: hidden; }
.faq-question { padding: 1.5rem; background: #f9fafb; cursor: pointer; font-weight: 600; display: flex; align-items: center; justify-content: space-between; transition: all 0.2s; }
.faq-question:hover { background: #f3f4f6; }
.faq-toggle { font-size: 1.2rem; transition: transform 0.3s; }
.faq-item.active .faq-toggle { transform: rotate(180deg); }
.faq-answer { display: none; padding: 1.5rem; background: white; border-top: 1px solid #e5e7eb; color: #6b7280; line-height: 1.6; }
.faq-item.active .faq-answer { display: block; }

.inspo { margin-top: 4rem; }
.inspo h2 { font-size: 1.6rem; font-weight: 800; margin-bottom: 0.5rem; }
.inspo-sub { color: #6b7280; margin-bottom: 2rem; }
.inspo-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.25rem; }
.inspo-card { border-radius: 20px; overflow: hidden; border: 1px solid #f3f4f6; background: white; transition: all 0.3s; cursor: pointer; }
.inspo-card:hover { box-shadow: 0 8px 30px rgba(0,0,0,0.08); transform: translateY(-4px); }
.inspo-visual { height: 200px; position: relative; overflow: hidden; }
.inspo-visual img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s ease; }
.inspo-card:hover .inspo-visual img { transform: scale(1.05); }
.inspo-badge { position: absolute; top: 10px; right: 10px; background: rgba(0,0,0,0.5); color: white; padding: 0.2rem 0.7rem; border-radius: 6px; font-size: 0.7rem; font-weight: 600; }
.inspo-info { padding: 1.25rem; }
.inspo-title { font-weight: 700; margin-bottom: 0.25rem; }
.inspo-desc { font-size: 0.85rem; color: #6b7280; line-height: 1.4; margin-bottom: 0.5rem; }
.inspo-price { font-weight: 700; color: #2563EB; font-size: 0.9rem; }

.final-cta { background: #f9fafb; border: 1px solid #e5e7eb; border-radius: 16px; padding: 2rem; text-align: center; margin: 3rem 0; }
.final-cta h2 { font-size: 1.5rem; font-weight: 800; margin-bottom: 0.75rem; }
.final-cta p { font-size: 1rem; color: #6b7280; margin-bottom: 1.5rem; }
.final-cta a { display: inline-block; padding: 0.85rem 2rem; background: linear-gradient(135deg, #ec4899, #3b82f6); color: white; font-weight: 700; border-radius: 12px; text-decoration: none; transition: all 0.2s; }
.final-cta a:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(37,99,235,0.3); }

.sticky-mobile-cta { display: none; position: fixed; bottom: 0; left: 0; right: 0; background: linear-gradient(135deg, #2563EB, #1e40af); padding: 1rem 2rem; text-align: center; z-index: 99; }
.sticky-mobile-cta a { display: block; padding: 0.75rem 1.5rem; background: white; color: #2563EB; font-weight: 700; border-radius: 10px; text-decoration: none; }

.footer { text-align: center; padding: 2rem; border-top: 1px solid #f3f4f6; color: #9ca3af; font-size: 0.85rem; margin-top: 3rem; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

@media (max-width: 768px) {
  .design-hero h1 { font-size: 2rem; }
  .design-hero { padding: 6rem 2rem 3rem; }
  .trust-badges { flex-direction: column; gap: 1rem; }
  .result-actions { flex-direction: column; }
  .sty-card { flex: 0 0 120px; }
  .color-swatch { width: 30px; height: 30px; }
  .how-it-works-grid { grid-template-columns: 1fr; }
  .sticky-mobile-cta { display: block; }
  .sticky-mobile-cta { padding-bottom: calc(1rem + env(safe-area-inset-bottom)); }
  .main { padding-bottom: 80px; }
}
