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

:root {
  --accent: #E55A2B;
  --accent-hover: #CC4E22;
  --accent-dim: rgba(229, 90, 43, 0.08);
  --bg: #F2F0EB;
  --surface: #FFFFFF;
  --surface2: #F7F5F0;
  --text: #1A1917;
  --text-2: #6B6762;
  --text-3: #A8A49E;
  --border: rgba(26, 25, 23, 0.1);
  --border-2: rgba(26, 25, 23, 0.18);
  --red-bg: #FEE2E2;
  --red-t: #991B1B;
  --yel-bg: #FEF3C7;
  --yel-t: #92400E;
  --grn-bg: #ECFDF5;
  --grn-t: #065F46;
  --radius: 12px;
  --radius-sm: 7px;
}

html {
  font-size: 16px;
}

body {
  font-family: 'Geist', 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(242, 240, 235, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 0.5px solid var(--border);
  padding: 0 32px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'DM Serif Display', serif;
  font-size: 20px;
  color: var(--text);
  text-decoration: none;
}

.logo-mark {
  width: 28px;
  height: 28px;
  background: var(--accent);
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-mark svg {
  width: 15px;
  height: 15px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  font-size: 13px;
  color: var(--text-2);
  text-decoration: none;
  transition: color .15s;
}

.nav-links a:hover {
  color: var(--text);
}

.screen {
  display: none;
  animation: fadeIn .35s ease;
}

.screen.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero {
  max-width: 1460px;
  margin: 0 auto;
  padding: 72px 32px 80px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.2px;
  color: var(--accent);
  text-transform: uppercase;
  background: var(--accent-dim);
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 28px;
}

.hero-eyebrow span {
  width: 5px;
  height: 5px;
  background: var(--accent);
  border-radius: 50%;
}

.hero-h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(42px, 6vw, 64px);
  line-height: 1.05;
  letter-spacing: -1.5px;
  color: var(--text);
  margin-bottom: 20px;
}

.hero-h1 em {
  font-style: italic;
  color: var(--accent);
}

.hero-sub {
  font-size: 17px;
  color: var(--text-2);
  line-height: 1.65;
  max-width: 480px;
  margin-bottom: 48px;
  font-weight: 300;
}

.upload-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  transition: border-color .2s, box-shadow .2s;
  max-width: 760px;
  margin: 0 auto;
}

.upload-card.drag-over {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(229, 90, 43, 0.1);
}

.upload-main {
  padding: 48px 40px 36px;
  text-align: center;
  cursor: pointer;
  transition: background .2s;
}

.upload-main:hover {
  background: rgba(229, 90, 43, 0.025);
}

.upload-main:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: -2px;
}

.upload-icon-wrap {
  width: 56px;
  height: 56px;
  background: var(--accent);
  border-radius: 14px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .2s;
}

.upload-card:hover .upload-icon-wrap {
  transform: translateY(-2px);
}

.upload-icon-wrap svg {
  width: 26px;
  height: 26px;
}

.upload-title {
  font-size: 18px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 6px;
}

.upload-sub {
  font-size: 13px;
  color: var(--text-3);
  margin-bottom: 24px;
}

.upload-pills {
  display: flex;
  gap: 6px;
  justify-content: center;
  flex-wrap: wrap;
}

.pill {
  font-size: 12px;
  color: var(--text-2);
  background: var(--surface2);
  border: 0.5px solid var(--border);
  padding: 4px 12px;
  border-radius: 20px;
}

input[type="file"] {
  display: none;
}

.upload-previews {
  display: none;
  gap: 8px;
  padding: 0 40px 20px;
  flex-wrap: wrap;
}

.upload-previews.visible {
  display: flex;
}

.preview-item {
  position: relative;
  width: 72px;
  height: 72px;
}

.preview-thumb {
  width: 72px;
  height: 72px;
  border-radius: 8px;
  object-fit: cover;
  border: 0.5px solid var(--border);
  background: var(--surface2);
  animation: thumbIn .2s ease;
}

.preview-remove {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 20px;
  height: 20px;
  border: none;
  border-radius: 50%;
  background: #1A1917;
  color: #fff;
  font-size: 13px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
  z-index: 2;
}

.preview-remove:hover {
  background: var(--accent);
}

@keyframes thumbIn {
  from {
    opacity: 0;
    transform: scale(.9);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.preview-add {
  width: 72px;
  height: 72px;
  border-radius: 8px;
  border: 1.5px dashed var(--border-2);
  background: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-3);
  font-size: 22px;
  transition: border-color .15s, color .15s;
}

.preview-add:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.hint-row {
  border-top: 0.5px solid var(--border);
  padding: 20px 40px 24px;
}

.hint-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--text-3);
  margin-bottom: 12px;
}

.opt-badge {
  font-size: 10px;
  font-weight: 500;
  background: #DBEAFE;
  color: #1E40AF;
  padding: 2px 7px;
  border-radius: 4px;
}

.hint-fields {
  display: grid;
  grid-template-columns: 1fr 1fr 100px;
  gap: 8px;
}

.hint-input {
  width: 100%;
  padding: 9px 12px;
  background: var(--surface2);
  border: 0.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 13px;
  color: var(--text);
  font-family: 'Geist', sans-serif;
  transition: border-color .15s, background .15s;
  outline: none;
}

.hint-input::placeholder {
  color: var(--text-3);
}

.hint-input:focus {
  border-color: var(--accent);
  background: var(--surface);
  box-shadow: 0 0 0 3px rgba(229, 90, 43, 0.08);
}

.hint-note {
  font-size: 11px;
  color: var(--text-3);
  margin-top: 8px;
}

.upload-error {
  min-height: 18px;
  margin-top: 6px;
  font-size: 11px;
  color: var(--red-t);
}

.upload-cta {
  padding: 0 40px 32px;
  display: none;
}

.upload-cta.visible {
  display: block;
}

.legal-consent {
  margin-top: 10px;
  font-size: 12px;
  color: var(--text-3);
  line-height: 1.45;
}

.legal-consent a {
  color: var(--text-2);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.btn-primary {
  width: 100%;
  padding: 14px;
  background: var(--accent);
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-family: 'Geist', sans-serif;
  transition: background .15s, transform .1s;
  letter-spacing: -0.2px;
}

.btn-primary:hover {
  background: var(--accent-hover);
}

.btn-primary:active {
  transform: scale(.99);
}

.btn-primary:disabled {
  opacity: .55;
  cursor: not-allowed;
}

.btn-primary:disabled:hover {
  background: var(--accent);
}

.trust-row {
  display: flex;
  gap: 28px;
  margin-top: 28px;
  justify-content: center;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: var(--text-2);
}

.trust-dot {
  width: 5px;
  height: 5px;
  background: var(--grn-t);
  border-radius: 50%;
}

.seo-info-sections {
  margin-top: 34px;
  display: grid;
  gap: 16px;
}

.seo-info-card {
  background: var(--surface);
  border: 0.5px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: 0 18px 50px rgba(20, 27, 33, 0.06);
}

.seo-info-card-feature {
  padding: 0;
  overflow: hidden;
}

.seo-info-card-full {
  width: 100%;
  margin: 0 auto;
  transform: none;
}

.seo-feature-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  align-items: stretch;
  min-height: 380px;
}

.seo-feature-layout-reverse {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
}

.seo-feature-layout-reverse .seo-feature-media {
  order: 1;
  border-left: none;
  border-right: 0.5px solid var(--border);
}

.seo-feature-layout-reverse .seo-feature-content {
  order: 2;
}

.seo-feature-content {
  padding: 34px 34px 30px;
}

.seo-feature-media {
  border-left: 0.5px solid var(--border);
  background: #0f1920;
}

.seo-feature-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.seo-info-title {
  font-family: 'DM Serif Display', serif;
  font-size: 36px;
  line-height: 1.08;
  letter-spacing: -0.6px;
  margin-bottom: 12px;
  color: var(--text);
}

.seo-info-subtitle {
  font-size: 15px;
  color: var(--text);
  margin-bottom: 6px;
  font-weight: 500;
}

.seo-info-text {
  font-size: 16px;
  line-height: 1.72;
  color: var(--text-2);
  margin-bottom: 10px;
}

.seo-info-text:last-child {
  margin-bottom: 0;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-item {
  background: var(--surface2);
  border: 0.5px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.faq-question {
  font-size: 16px;
  line-height: 1.4;
  color: var(--text);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  font-weight: 500;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question::after {
  content: '+';
  font-size: 20px;
  line-height: 1;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.faq-item[open] .faq-question::after {
  transform: rotate(45deg);
}

.faq-item[open] .faq-question {
  border-bottom: 0.5px solid var(--border);
}

.faq-answer {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-2);
  padding: 12px 16px 14px;
}

.faq-answer p {
  margin-bottom: 8px;
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

.faq-points {
  margin: 6px 0 0 18px;
  padding: 0;
}

.faq-points li {
  margin-bottom: 8px;
}

.faq-points li:last-child {
  margin-bottom: 0;
}

.ai-disclaimer {
  margin: 14px auto 0;
  max-width: 780px;
  font-size: 12px;
  line-height: 1.5;
  color: var(--text-3);
  text-align: center;
}

.proc-wrap {
  max-width: 600px;
  margin: 0 auto;
  padding: 80px 32px;
}

.proc-card {
  background: var(--surface);
  border: 0.5px solid var(--border);
  border-radius: 20px;
  padding: 40px;
}

.proc-header {
  margin-bottom: 32px;
}

.proc-car {
  font-size: 13px;
  color: var(--text-3);
  margin-bottom: 6px;
  font-family: 'DM Mono', monospace;
}

.proc-title {
  font-family: 'DM Serif Display', serif;
  font-size: 28px;
  color: var(--text);
  letter-spacing: -0.5px;
}

.progress-track {
  height: 2px;
  background: var(--border);
  border-radius: 2px;
  margin-bottom: 28px;
  overflow: hidden;
}

.progress-fill {
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  width: 0%;
  transition: width 0.6s ease;
}

.proc-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.proc-step {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 0.5px solid var(--border);
}

.proc-step:last-child {
  border-bottom: none;
}

.step-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  transition: all .3s;
}

.step-icon.done {
  background: var(--grn-bg);
  color: var(--grn-t);
}

.step-icon.active {
  background: var(--accent-dim);
  border: 1.5px solid var(--accent);
  animation: pulse-step 1.4s ease-in-out infinite;
}

.step-icon.wait {
  background: var(--surface2);
  border: 0.5px solid var(--border);
}

@keyframes pulse-step {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(229, 90, 43, 0.3);
  }

  50% {
    box-shadow: 0 0 0 6px rgba(229, 90, 43, 0);
  }
}

.step-text {
  font-size: 14px;
}

.step-text.done {
  color: var(--grn-t);
}

.step-text.active {
  color: var(--accent);
  font-weight: 500;
}

.step-text.wait {
  color: var(--text-3);
}

.proc-photos {
  display: flex;
  gap: 8px;
  margin-top: 28px;
}

.proc-photo {
  flex: 1;
  height: 80px;
  border-radius: 10px;
  background-size: cover;
  background-position: center;
  border: 0.5px solid var(--border);
}

.proc-photo.placeholder {
  background: linear-gradient(90deg, var(--surface2) 25%, #eae8e3 50%, var(--surface2) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.6s linear infinite;
}

@keyframes shimmer {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -200% 0;
  }
}

.report-wrap {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 32px 80px;
}

.report-content-wrap {
  position: relative;
  --report-unlock-top: 0px;
}

.report-locked .r-card.locked-hidden,
.report-locked .new-analysis-bar {
  filter: blur(8px);
  pointer-events: none;
  user-select: none;
}

.report-unlock-overlay {
  position: absolute;
  top: var(--report-unlock-top);
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 20;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 18px;
  background: linear-gradient(to bottom, rgba(242, 240, 235, 0.66) 0%, rgba(242, 240, 235, 0.2) 28%, rgba(242, 240, 235, 0.1) 100%);
}

.report-buy-btn {
  min-width: 170px;
  justify-content: center;
  box-shadow: 0 12px 30px rgba(229, 90, 43, 0.34);
}

.report-content-wrap:not(.report-locked) .report-unlock-overlay {
  display: none;
}

.report-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 32px;
}

.report-user-photos {
  margin-bottom: 18px;
}

.report-user-photos-title {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-3);
  letter-spacing: 0.4px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.report-user-photos-grid {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.report-user-photo {
  width: 104px;
  height: 78px;
  border-radius: 8px;
  object-fit: cover;
  border: 0.5px solid var(--border);
  background: var(--surface2);
}

.report-car-name {
  font-family: 'DM Serif Display', serif;
  font-size: 28px;
  letter-spacing: -0.5px;
  color: var(--text);
}

.report-car-meta {
  font-size: 13px;
  color: var(--text-3);
  margin-top: 3px;
}

.currency-rate-meta {
  font-size: 12px;
  color: var(--text-3);
  margin-top: 2px;
}

.report-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.market-value-block {
  background: var(--surface2);
  border: 0.5px solid var(--border);
  border-radius: 8px;
  padding: 10px 12px;
  min-width: 220px;
}

.market-value-label {
  font-size: 11px;
  letter-spacing: 0.3px;
  color: var(--text-3);
  text-transform: uppercase;
}

.market-value-value {
  margin-top: 2px;
  font-family: 'DM Mono', monospace;
  font-size: 13px;
  color: var(--text);
}

.order-submit {
  margin-top: 6px;
}

.currency-toggle {
  display: inline-flex;
  gap: 2px;
  background: var(--surface2);
  border: 0.5px solid var(--border);
  border-radius: 6px;
  padding: 2px;
}

.currency-btn {
  font-size: 11px;
  font-weight: 500;
  padding: 6px 10px;
  border-radius: 4px;
  border: none;
  background: none;
  color: var(--text-3);
  cursor: pointer;
  font-family: 'Geist', sans-serif;
}

.currency-btn.active {
  background: var(--surface);
  color: var(--accent);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.btn-ghost {
  padding: 9px 18px;
  background: var(--surface);
  border: 0.5px solid var(--border-2);
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-2);
  cursor: pointer;
  font-family: 'Geist', sans-serif;
  transition: all .15s;
  display: flex;
  align-items: center;
  gap: 6px;
}

.btn-ghost:hover {
  border-color: var(--text);
  color: var(--text);
  background: var(--surface);
}

.btn-ghost:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  border-color: var(--border);
  color: var(--text-3);
}

.btn-accent {
  padding: 9px 18px;
  background: var(--accent);
  border: none;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 500;
  color: #fff;
  cursor: pointer;
  font-family: 'Geist', sans-serif;
  transition: background .15s;
  display: flex;
  align-items: center;
  gap: 6px;
}

.btn-accent:hover {
  background: var(--accent-hover);
}

.btn-accent:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  background: #A9A39A;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(12, 12, 12, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 300;
  padding: 16px;
}

.modal-backdrop[hidden] {
  display: none !important;
}

.order-modal {
  width: min(560px, 100%);
  background: var(--surface);
  border: 0.5px solid var(--border);
  border-radius: 14px;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.25);
  padding: 18px;
}

.payment-modal-backdrop {
  z-index: 360;
}

.payment-modal {
  width: min(640px, 100%);
  background: var(--surface);
  border: 0.5px solid var(--border);
  border-radius: 14px;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.25);
  padding: 18px;
}

.payment-modal-hint {
  font-size: 13px;
  color: var(--text-2);
  margin-bottom: 10px;
}

.payment-frame {
  width: 100%;
  min-height: 600px;
  border: 0;
  border-radius: 12px;
  background: var(--surface2);
}

.order-modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.order-modal-title {
  font-family: 'DM Serif Display', serif;
  font-size: 30px;
  line-height: 1;
  letter-spacing: -0.6px;
}

.order-modal-close {
  width: 30px;
  height: 30px;
  border: 0.5px solid var(--border-2);
  border-radius: 8px;
  background: var(--surface2);
  color: var(--text-2);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
}

.order-form {
  display: grid;
  gap: 8px;
}

.order-label {
  font-size: 12px;
  color: var(--text-2);
}

.order-input {
  width: 100%;
  padding: 10px 12px;
  background: var(--surface2);
  border: 0.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 14px;
  color: var(--text);
  font-family: 'Geist', sans-serif;
  outline: none;
}

.order-input:focus {
  border-color: var(--accent);
  background: var(--surface);
  box-shadow: 0 0 0 3px rgba(229, 90, 43, 0.08);
}

.order-parts-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 4px;
}

.order-part-tag {
  border: 0.5px solid var(--border-2);
  background: var(--surface2);
  color: var(--text-2);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 13px;
  cursor: pointer;
  transition: .12s ease;
  font-family: 'Geist', sans-serif;
}

.order-part-tag:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.order-part-tag.active {
  border-color: var(--accent);
  background: var(--accent-dim);
  color: var(--accent);
}

.order-error {
  min-height: 18px;
  font-size: 12px;
  color: #B42318;
  margin-bottom: 4px;
}

body.modal-open {
  overflow: hidden;
}

body.support-modal-open {
  overflow: hidden;
}

@media print {
  .report-unlock-overlay {
    display: none !important;
  }
}

.report-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}

.r-card {
  background: var(--surface);
  border: 0.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.r-card-full {
  grid-column: 1 / -1;
}

.r-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 0.5px solid var(--border);
}

.r-card-title {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-3);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.r-card-badge {
  font-size: 11px;
  color: var(--text-3);
  background: var(--surface2);
  padding: 2px 8px;
  border-radius: 4px;
}

.dmg-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 20px;
  border-bottom: 0.5px solid var(--border);
  transition: background .1s;
}

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

.dmg-row:hover {
  background: var(--surface2);
}

.dmg-zone {
  font-size: 13px;
  color: var(--text);
}

.dmg-badge {
  font-size: 11px;
  font-weight: 500;
  padding: 3px 10px;
  border-radius: 5px;
}

.sev-replace {
  background: var(--red-bg);
  color: var(--red-t);
}

.sev-heavy {
  background: var(--yel-bg);
  color: var(--yel-t);
}

.sev-light {
  background: var(--grn-bg);
  color: var(--grn-t);
}

.sev-absent {
  background: #1A1917;
  color: #F2F0EB;
}

.cost-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 11px 20px;
  border-bottom: 0.5px solid var(--border);
  font-size: 13px;
}

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

.cost-n {
  color: var(--text-2);
}

.cost-v {
  font-weight: 500;
  color: var(--text);
  font-family: 'DM Mono', monospace;
  font-size: 12px;
}

.cost-totals {
  padding: 16px 20px;
  background: var(--surface2);
}

.cost-total-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 6px 0;
}

.cost-total-label {
  font-size: 12px;
  color: var(--text-2);
}

.cost-total-val {
  font-family: 'DM Mono', monospace;
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
}

.cost-total-val.accent {
  color: var(--accent);
  font-size: 15px;
}

.risk-item {
  border-bottom: 0.5px solid var(--border);
  overflow: hidden;
}

.risk-item:last-child {
  border-bottom: none;
}

.risk-header {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 14px 20px;
  transition: background .1s;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.risk-header:hover {
  background: var(--surface2);
}

.risk-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}

.risk-dot.high {
  background: var(--red-t);
}

.risk-dot.med {
  background: #D97706;
}

.risk-name {
  font-size: 13px;
  color: var(--text);
  flex: 1;
}

.risk-level-tag {
  font-size: 11px;
  font-weight: 500;
  padding: 2px 8px;
  border-radius: 4px;
}

.risk-level-tag.high {
  background: var(--red-bg);
  color: var(--red-t);
}

.risk-level-tag.med {
  background: var(--yel-bg);
  color: var(--yel-t);
}

.risk-chevron {
  color: var(--text-3);
  font-size: 10px;
  transition: transform .25s ease;
}

.risk-item.open .risk-chevron {
  transform: rotate(180deg);
}

.risk-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
  padding: 0 20px;
}

.risk-item.open .risk-body {
  max-height: 220px;
  padding: 0 20px 16px;
}

.risk-desc {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.65;
  margin-bottom: 8px;
}

.risk-check {
  font-size: 12px;
  color: var(--text-3);
  display: flex;
  align-items: flex-start;
  gap: 6px;
}

.risk-check::before {
  content: "→";
  color: var(--accent);
  flex-shrink: 0;
}

.cp-row {
  padding: 13px 20px;
  border-bottom: 0.5px solid var(--border);
}

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

.cp-title {
  font-size: 13px;
  color: var(--text);
  margin-bottom: 4px;
}

.cp-desc {
  font-size: 12px;
  color: var(--text-2);
  line-height: 1.6;
}

.verdict-block {
  padding: 20px;
}

.verdict-text {
  font-size: 15px;
  color: var(--text);
  line-height: 1.7;
}

.verdict-text strong {
  color: var(--accent);
  font-weight: 500;
}

.new-analysis-bar {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 32px;
}

.btn-new {
  padding: 12px 24px;
  border: 0.5px solid var(--border-2);
  border-radius: var(--radius-sm);
  background: var(--surface);
  color: var(--text-2);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  font-family: 'Geist', sans-serif;
  transition: all .15s;
}

.btn-new:hover {
  border-color: var(--text);
  color: var(--text);
}

@media (max-width: 700px) {
  nav {
    padding: 0 16px;
  }

  .hero {
    padding: 40px 16px 60px;
  }

  .upload-main,
  .hint-row,
  .upload-cta {
    padding-left: 20px;
    padding-right: 20px;
  }

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

  .hint-fields .hint-input:last-child {
    grid-column: 1 / -1;
  }

  .report-grid {
    grid-template-columns: 1fr;
  }

  .report-topbar {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .report-wrap {
    padding: 24px 16px 60px;
  }

  .proc-wrap {
    padding: 40px 16px;
  }

  .nav-links {
    gap: 16px;
  }

  .seo-info-card {
    padding: 18px;
  }

  .seo-info-card-full {
    width: 100%;
    margin-left: 0;
    transform: none;
  }

  .seo-info-card-feature {
    padding: 0;
  }

  .seo-feature-layout {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .seo-feature-content {
    padding: 22px 18px 16px;
  }

  .seo-feature-media {
    border-left: none;
    border-top: 0.5px solid var(--border);
    height: 240px;
  }

  .seo-feature-layout-reverse .seo-feature-media {
    order: 2;
    border-right: none;
  }

  .seo-feature-layout-reverse .seo-feature-content {
    order: 1;
  }

  .seo-info-title {
    font-size: 30px;
  }

  .seo-info-text {
    font-size: 15px;
  }
}

@media print {
  nav,
  .report-actions,
  .new-analysis-bar {
    display: none !important;
  }

  .screen {
    display: none !important;
    animation: none;
  }

  #screen-report {
    display: block !important;
  }

  body {
    background: #fff;
  }

  .report-wrap {
    padding: 0;
    max-width: none;
  }
}

.support-float-btn {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 340;
  border: none;
  background: var(--accent);
  color: #fff;
  font-family: 'Geist', sans-serif;
  font-size: 13px;
  font-weight: 500;
  border-radius: 999px;
  padding: 11px 16px;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(229, 90, 43, 0.35);
}

.support-float-btn:hover {
  background: var(--accent-hover);
}

.support-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(12, 12, 12, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 350;
  padding: 16px;
}

.support-modal-backdrop[hidden] {
  display: none !important;
}

.support-modal {
  width: min(560px, 100%);
  background: var(--surface);
  border: 0.5px solid var(--border);
  border-radius: 14px;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.25);
  padding: 18px;
}

.support-modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.support-modal-title {
  font-family: 'DM Serif Display', serif;
  font-size: 30px;
  line-height: 1;
  letter-spacing: -0.6px;
}

.support-close {
  width: 30px;
  height: 30px;
  border: 0.5px solid var(--border-2);
  border-radius: 8px;
  background: var(--surface2);
  color: var(--text-2);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
}

.support-form {
  display: grid;
  gap: 8px;
}

.support-label {
  font-size: 12px;
  color: var(--text-2);
}

.support-input,
.support-textarea {
  width: 100%;
  padding: 10px 12px;
  background: var(--surface2);
  border: 0.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 14px;
  color: var(--text);
  font-family: 'Geist', sans-serif;
  outline: none;
}

.support-textarea {
  min-height: 132px;
  resize: vertical;
}

.support-input:focus,
.support-textarea:focus {
  border-color: var(--accent);
  background: var(--surface);
  box-shadow: 0 0 0 3px rgba(229, 90, 43, 0.08);
}

.support-consent {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 12px;
  color: var(--text-2);
  margin-top: 2px;
}

.support-consent input {
  margin-top: 2px;
}

.support-consent a {
  color: var(--text-2);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.support-error {
  min-height: 18px;
  font-size: 12px;
  color: #B42318;
}

.policy-wrap,
.pricing-wrap {
  max-width: 980px;
  margin: 0 auto;
  padding: 56px 32px 80px;
}

.policy-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(34px, 4.8vw, 50px);
  line-height: 1.08;
  letter-spacing: -0.9px;
  margin-bottom: 10px;
}

.policy-updated {
  font-size: 13px;
  color: var(--text-3);
  margin-bottom: 24px;
}

.policy-section {
  background: var(--surface);
  border: 0.5px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 12px;
}

.policy-section h2 {
  font-size: 16px;
  line-height: 1.35;
  margin-bottom: 8px;
  color: var(--text);
}

.policy-section p {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.68;
  margin-bottom: 10px;
}

.policy-section p:last-child {
  margin-bottom: 0;
}

.pricing-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.2px;
  color: var(--accent);
  text-transform: uppercase;
  background: var(--accent-dim);
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 22px;
}

.pricing-eyebrow span {
  width: 5px;
  height: 5px;
  background: var(--accent);
  border-radius: 50%;
}

.pricing-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(38px, 5vw, 54px);
  line-height: 1.05;
  letter-spacing: -1.2px;
  margin-bottom: 14px;
}

.pricing-sub {
  font-size: 16px;
  color: var(--text-2);
  max-width: 720px;
  margin-bottom: 32px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 14px;
}

.price-card {
  background: var(--surface);
  border: 0.5px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}

.price-name {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-3);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.price-value {
  font-family: 'DM Serif Display', serif;
  font-size: 38px;
  line-height: 1;
  letter-spacing: -0.8px;
  margin-bottom: 10px;
}

.price-euro {
  font-size: 13px;
  color: var(--text-2);
  margin-bottom: 12px;
}

.price-desc {
  font-size: 14px;
  color: var(--text);
}

.pricing-note {
  background: var(--surface2);
  border: 0.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-size: 13px;
  color: var(--text-2);
  margin-bottom: 22px;
}

.monthly-order-block {
  background: var(--surface);
  border: 0.5px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 22px;
}

.monthly-order-toggle {
  width: 100%;
  justify-content: center;
}

.monthly-order-form-wrap {
  margin-top: 16px;
}

.monthly-order-form {
  display: grid;
  gap: 10px;
}

.monthly-order-label {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-3);
  letter-spacing: 0.4px;
}

.monthly-order-input {
  width: 100%;
  border: 0.5px solid var(--border);
  border-radius: 14px;
  background: var(--bg);
  padding: 12px 14px;
  color: var(--text);
  font-size: 14px;
  outline: none;
}

.monthly-order-input:focus {
  border-color: rgba(230, 88, 40, 0.45);
  box-shadow: 0 0 0 4px rgba(230, 88, 40, 0.08);
}

.monthly-order-status {
  min-height: 20px;
  font-size: 13px;
  color: var(--text-2);
}

.monthly-order-status.is-error {
  color: #b34a2a;
}

.monthly-order-status.is-success {
  color: #136b52;
}

.monthly-order-submit {
  justify-content: center;
}

.seo-block {
  background: var(--surface);
  border: 0.5px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
}

.seo-title {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-3);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.seo-text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text);
}

@media (max-width: 700px) {
  .policy-wrap,
  .pricing-wrap {
    padding: 34px 16px 52px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .support-float-btn {
    right: 12px;
    bottom: 12px;
    font-size: 12px;
    padding: 10px 14px;
  }
}
