:root {
  color-scheme: light;
  --page: #f6f7f3;
  --paper: #ffffff;
  --ink: #101218;
  --muted: #636b76;
  --soft: #8a929b;
  --line: #dfe4e7;
  --line-strong: #c6ced5;
  --red: #df4d32;
  --blue: #245fd3;
  --green: #168a5b;
  --amber: #b87312;
  --charcoal: #15191f;
  --radius: 8px;
  --shadow: 0 18px 50px rgba(18, 24, 31, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--page);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
  overflow-x: hidden;
}

body[dir="rtl"] {
  font-family: Tahoma, Arial, sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

img {
  max-width: 100%;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  min-height: 74px;
  padding: 10px max(18px, calc((100vw - 1180px) / 2));
  border-bottom: 1px solid rgba(16, 18, 24, 0.08);
  background: rgba(246, 247, 243, 0.9);
  backdrop-filter: blur(18px);
}

.brand {
  min-width: 196px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
}

.brand img,
.footer img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.brand span {
  font-size: 18px;
}

.nav {
  display: flex;
  justify-content: center;
  gap: 6px;
}

.nav a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  border-radius: var(--radius);
  padding: 0 12px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.nav a:hover {
  background: rgba(36, 95, 211, 0.08);
  color: var(--ink);
}

.top-actions,
.hero-actions,
.action-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.language-select,
select,
input[type="number"] {
  min-height: 44px;
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
  padding: 0 12px;
  outline: none;
}

input[type="number"] {
  appearance: textfield;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  margin: 0;
  appearance: none;
}

select:focus,
input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(36, 95, 211, 0.12);
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  padding: 0 16px;
  color: var(--ink);
  font-weight: 900;
  text-align: center;
  white-space: nowrap;
}

.button.small {
  min-height: 42px;
  font-size: 14px;
}

.button.primary {
  border-color: var(--red);
  background: var(--red);
  color: #fff;
}

.button.light {
  background: rgba(255, 255, 255, 0.72);
}

.button.dark {
  border-color: var(--charcoal);
  background: var(--charcoal);
  color: #fff;
}

.button-mark,
.tab-mark,
.step-number {
  min-width: 28px;
  min-height: 28px;
  display: inline-grid;
  place-items: center;
  border-radius: 6px;
  background: rgba(16, 18, 24, 0.08);
  color: inherit;
  font-size: 11px;
  font-weight: 900;
}

.button.primary .button-mark,
.button.dark .button-mark {
  background: rgba(255, 255, 255, 0.16);
}

main,
.footer {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.hero {
  position: relative;
  min-height: calc(100svh - 74px);
  display: grid;
  align-items: center;
  padding: 70px 0 54px;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -40px 0 auto;
  width: min(76vw, 860px);
  height: min(56vw, 620px);
  border: 1px solid rgba(16, 18, 24, 0.08);
  border-radius: 50%;
  background: #eef1f1;
  z-index: -2;
}

.hero-car {
  position: absolute;
  right: max(-60px, calc((1180px - 100vw) / 2 - 42px));
  bottom: 58px;
  width: min(66vw, 810px);
  max-height: 58svh;
  object-fit: contain;
  filter: drop-shadow(0 28px 42px rgba(16, 18, 24, 0.2));
  z-index: -1;
}

.hero-content {
  max-width: 610px;
  padding: 20px 0 120px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(42px, 5.8vw, 78px);
  line-height: 0.95;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

h2 {
  margin-bottom: 12px;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.02;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

h3 {
  margin-bottom: 8px;
  font-size: 22px;
}

.hero-lead,
.section-head p,
.steps-grid p,
.shops-section p,
.handoff p,
.footer,
.tire-meter p,
.et-summary p {
  color: var(--muted);
  line-height: 1.62;
}

.hero-lead {
  max-width: 560px;
  font-size: 19px;
}

.hero-actions {
  flex-wrap: wrap;
  margin: 28px 0 22px;
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 620px;
  gap: 10px;
}

.hero-facts div {
  min-height: 82px;
  border: 1px solid rgba(16, 18, 24, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  padding: 14px;
}

.hero-facts strong,
.stage-readout strong,
.result-row strong,
.et-summary strong,
.tire-result-grid strong {
  display: block;
  color: var(--ink);
  line-height: 1.08;
}

.hero-facts strong {
  margin-bottom: 7px;
  font-size: 24px;
}

.hero-facts span,
.stage-readout span,
.result-row span,
.et-summary span,
label span,
.tire-meter span,
.tire-result-grid span {
  display: block;
  color: var(--soft);
  font-size: 13px;
  font-weight: 850;
}

.section-head {
  max-width: 760px;
  margin-bottom: 22px;
}

.how-section,
.studio-section,
.tire-section,
.shops-section,
.pricing-section {
  padding: 74px 0;
}

.steps-grid,
.studio-layout,
.upload-grid,
.input-grid,
.result-row,
.et-grid,
.pricing-grid,
.tire-calculator,
.tire-result-grid,
.shop-points {
  display: grid;
  gap: 14px;
}

.steps-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.steps-grid article,
.preview-panel,
.tool-panel,
.handoff,
.tire-controls,
.tire-results,
.shops-section,
.pricing-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow);
}

.steps-grid article {
  min-height: 220px;
  padding: 22px;
}

.step-number {
  width: 42px;
  height: 34px;
  margin-bottom: 42px;
  color: var(--blue);
  background: rgba(36, 95, 211, 0.1);
}

.studio-layout {
  grid-template-columns: minmax(320px, 0.78fr) minmax(560px, 1fr);
  align-items: start;
}

.studio-section.et-mode .studio-layout {
  grid-template-columns: 1fr;
}

.studio-section.et-mode .preview-panel {
  display: none;
}

.studio-section.et-mode {
  padding-top: 42px;
}

.studio-section.et-mode .section-head {
  margin-bottom: 12px;
}

.studio-section.et-mode .section-head h2 {
  max-width: 760px;
  margin-bottom: 0;
  font-size: clamp(30px, 3.4vw, 44px);
  line-height: 1.05;
}

.studio-section.et-mode .section-head > p:not(.eyebrow) {
  display: none;
}

.preview-panel,
.tool-panel {
  min-width: 0;
}

.preview-panel {
  display: grid;
  align-content: space-between;
  min-height: 610px;
  overflow: hidden;
  padding: 20px;
  background: var(--charcoal);
  color: #fff;
}

.preview-panel img {
  width: min(100%, 520px);
  margin: auto;
  display: block;
  aspect-ratio: 1;
  object-fit: contain;
  filter: drop-shadow(0 24px 32px rgba(0, 0, 0, 0.28));
}

.stage-readout {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.stage-readout div,
.result-row div,
.et-summary div,
.tire-result-grid div {
  min-height: 82px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  padding: 14px;
}

.preview-panel .stage-readout div {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
}

.preview-panel .stage-readout strong {
  color: #fff;
}

.stage-readout strong,
.result-row strong,
.et-summary strong,
.tire-result-grid strong {
  margin-top: 8px;
  font-size: 24px;
}

.tool-panel {
  padding: 20px;
}

.studio-section.et-mode .tool-panel {
  padding: 12px;
}

.mode-tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 16px;
}

.studio-section.et-mode .mode-tabs {
  margin-bottom: 8px;
}

.mode-tab {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--muted);
  font-weight: 900;
}

.studio-section.et-mode .mode-tab {
  min-height: 42px;
}

.mode-tab.active {
  border-color: rgba(36, 95, 211, 0.58);
  background: rgba(36, 95, 211, 0.1);
  color: var(--ink);
}

.tool-view {
  display: none;
}

.tool-view.active {
  display: grid;
  gap: 14px;
}

.upload-grid,
.input-grid.two,
.result-row {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.input-grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.input-grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.input-grid.five {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.dropzone {
  position: relative;
  min-height: 190px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 8px;
  overflow: hidden;
  border: 1px dashed var(--line-strong);
  border-radius: var(--radius);
  background: #f9faf7;
  color: var(--muted);
  cursor: pointer;
}

.dropzone input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.dropzone img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.18s ease;
}

.dropzone.has-image img {
  opacity: 0.84;
}

.dropzone.has-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.34);
}

.drop-title,
.drop-note {
  position: relative;
  z-index: 1;
}

.drop-title {
  color: var(--ink);
  font-weight: 900;
}

.dropzone.has-image .drop-title,
.dropzone.has-image .drop-note {
  color: #fff;
}

.drop-note {
  max-width: 180px;
  font-size: 13px;
  line-height: 1.35;
  text-align: center;
}

label span {
  margin-bottom: 8px;
}

.action-row {
  align-items: stretch;
}

.action-row .button {
  flex: 1;
}

.et-input-layout {
  display: none;
  gap: 12px;
}

.et-input-card {
  display: grid;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f9faf7;
  padding: 14px;
}

.et-input-card h3 {
  margin: 0;
  font-size: 17px;
}

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

.et-canvas-wrap {
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.et-draft-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 8px;
  max-width: 780px;
  margin: 0 auto;
}

.et-draft-panel {
  display: grid;
  gap: 0;
  background: #d2d2d2;
  padding: 0 12px 10px;
  font-family: "Arial Narrow", Arial, Helvetica, sans-serif;
}

.et-draft-controls {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  background: #bfc0b8;
  border: 1px solid #8d8d8d;
  border-top: 0;
  justify-self: center;
  width: 100%;
}

.et-draft-group {
  display: grid;
  grid-template-columns: 108px minmax(0, 1fr);
  min-height: 42px;
  border-left: 1px solid #8d8d8d;
  min-width: 0;
}

.et-draft-group.rim {
  grid-template-columns: 150px minmax(0, 1fr);
}

.et-draft-group:first-child {
  border-left: 0;
}

.et-check {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  color: #3c2a7a;
  font-size: 15px;
  font-weight: 900;
  line-height: 1;
  margin: 0;
  border-right: 1px solid #8d8d8d;
  white-space: nowrap;
}

.et-check input {
  width: 14px;
  height: 14px;
  accent-color: #1b73e8;
}

.et-fieldline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 3px 6px;
  color: #111;
  font-size: 17px;
  line-height: 1;
  white-space: nowrap;
}

.et-fieldline input {
  width: 50px;
  height: 28px;
  min-width: 0;
  border: 1px solid #737373;
  border-radius: 3px;
  background: #fff;
  padding: 2px 6px;
  font: 18px "Arial Narrow", Arial, Helvetica, sans-serif;
}

.et-draft-group.is-disabled .et-fieldline,
.et-input-card label.is-disabled {
  opacity: 0.46;
}

.et-fieldline input:disabled,
.et-input-card input:disabled {
  border-color: #a8a8a8;
  background: #ededed;
  color: #777;
  cursor: not-allowed;
}

.et-fieldline.rim-size input {
  width: 48px;
}

.et-draft-paper {
  position: relative;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #a9a9a9;
  border-top: 0;
  aspect-ratio: 1040 / 430;
}

.et-draft-title,
.et-draft-size {
  position: absolute;
  z-index: 1;
  width: 100%;
  margin: 0;
  color: #111;
  font-family: "Arial Narrow", Arial, Helvetica, sans-serif;
  text-align: center;
}

.et-draft-title {
  top: 10px;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 900;
}

.et-draft-size {
  top: 34px;
  font-size: 15px;
  color: #444;
}

.et-draft-paper svg {
  display: block;
  width: 100%;
  height: 100%;
}

.et-summary {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(132px, 1fr));
  align-content: start;
  gap: 10px;
}

.et-summary p {
  grid-column: 1 / -1;
  margin: 0;
}

.studio-section.et-mode .et-summary {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  max-width: 780px;
  margin: 0 auto;
  gap: 6px;
}

.studio-section.et-mode .et-summary div {
  min-height: 52px;
  padding: 8px 9px;
}

.studio-section.et-mode .et-summary span {
  font-size: 11px;
}

.studio-section.et-mode .et-summary strong {
  margin-top: 5px;
  font-size: 18px;
}

.studio-section.et-mode .et-summary p {
  font-size: 13px;
  line-height: 1.35;
}

.handoff {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 34px;
  padding: 22px;
}

.handoff h2 {
  margin-bottom: 8px;
}

.handoff p {
  max-width: 720px;
  margin-bottom: 0;
}

.tire-calculator {
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  align-items: start;
  gap: 18px;
}

.tire-controls,
.tire-results {
  min-width: 0;
  display: grid;
  gap: 16px;
  padding: 20px;
}

.tire-group {
  display: grid;
  gap: 12px;
}

.tire-group + .tire-group {
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.tire-group h3,
.alternative-sizes h3 {
  margin: 0;
  font-size: 18px;
}

.tire-meter strong {
  display: block;
  margin-top: 8px;
  font-size: clamp(38px, 5vw, 62px);
  line-height: 1;
}

.meter-track {
  height: 12px;
  margin: 16px 0 12px;
  overflow: hidden;
  border-radius: 999px;
  background: #e7ecef;
}

.meter-fill {
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: var(--green);
  transition: width 0.18s ease, background-color 0.18s ease;
}

.meter-fill.warn {
  background: var(--amber);
}

.meter-fill.danger {
  background: var(--red);
}

.tire-meter p {
  margin-bottom: 0;
}

.tire-result-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.tire-result-grid div {
  min-height: 112px;
}

.tire-result-grid strong {
  overflow-wrap: anywhere;
}

.alternative-sizes {
  display: grid;
  gap: 12px;
}

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

.size-chip {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f9faf7;
  padding: 0 10px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
}

.shops-section {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(420px, 1fr);
  gap: 28px;
  align-items: start;
  padding: 28px;
  background: var(--charcoal);
  color: #fff;
}

.shops-section p {
  color: rgba(255, 255, 255, 0.72);
}

.shop-points {
  grid-template-columns: 1fr;
}

.shop-points article {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  padding: 16px;
}

.shop-points h3 {
  margin-bottom: 6px;
}

.shop-points p {
  margin-bottom: 0;
}

.pricing-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.pricing-card {
  position: relative;
  min-height: 218px;
  padding: 18px;
}

.pricing-card.featured {
  border-color: rgba(223, 77, 50, 0.72);
}

.pricing-card h3 {
  margin-bottom: 14px;
}

.pricing-card strong {
  display: block;
  font-size: 38px;
  line-height: 1;
}

.pricing-card p {
  color: var(--muted);
  line-height: 1.5;
}

.badge {
  min-height: 26px;
  display: inline-flex;
  align-items: center;
  margin-bottom: 12px;
  padding: 0 9px;
  border-radius: var(--radius);
  background: rgba(232, 170, 58, 0.15);
  color: #8d5a0b;
  font-size: 12px;
  font-weight: 900;
}

.footer {
  min-height: 120px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 26px 0 36px;
  border-top: 1px solid rgba(16, 18, 24, 0.1);
}

.footer a {
  margin-left: auto;
  color: var(--ink);
  font-weight: 900;
}

body[dir="rtl"] .footer a {
  margin-left: 0;
  margin-right: auto;
}

[hidden] {
  display: none !important;
}

@media (max-width: 1120px) {
  .hero {
    min-height: auto;
    padding-top: 54px;
  }

  .hero-content {
    padding-bottom: 290px;
  }

  .hero-car {
    right: -44px;
    bottom: 20px;
    width: min(94vw, 680px);
    max-height: 330px;
  }

  .studio-layout,
  .tire-calculator,
  .shops-section {
    grid-template-columns: 1fr;
  }

  .preview-panel {
    min-height: auto;
  }

  .preview-panel img {
    max-height: 360px;
  }

  .pricing-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .topbar {
    grid-template-columns: 1fr;
    align-items: stretch;
    gap: 10px;
    padding: 10px 12px;
  }

  .brand {
    min-width: 0;
  }

  .top-actions {
    width: 100%;
    min-width: 0;
    justify-content: stretch;
  }

  .top-actions .language-select {
    min-width: 0;
    flex: 1 1 auto;
  }

  .top-actions .button {
    flex: 0 0 auto;
  }

  .nav {
    grid-column: 1 / -1;
    width: 100%;
    min-width: 0;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 2px;
    scrollbar-width: none;
  }

  .nav::-webkit-scrollbar {
    display: none;
  }

  .nav a {
    flex: 0 0 auto;
  }

  main,
  .footer {
    width: min(100% - 24px, 1180px);
  }

  .hero-content {
    padding-bottom: 230px;
  }

  .hero-facts,
  .steps-grid,
  .stage-readout,
  .upload-grid,
  .input-grid.two,
  .input-grid.three,
  .input-grid.four,
  .input-grid.five,
  .result-row,
  .et-grid,
  .pricing-grid,
  .tire-result-grid {
    grid-template-columns: 1fr;
  }

  .tool-panel,
  .tire-controls,
  .tire-results,
  .shops-section {
    padding: 16px;
  }

  .et-draft-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .et-draft-panel {
    padding: 0 12px 10px;
  }

  .handoff,
  .action-row,
  .footer {
    align-items: stretch;
    flex-direction: column;
  }

  .footer a {
    margin-left: 0;
  }

  .button {
    white-space: normal;
  }
}

@media (max-width: 520px) {
  .nav {
    gap: 4px;
  }

  .nav a {
    padding: 0 8px;
    font-size: 13px;
  }

  .top-actions {
    gap: 6px;
  }

  .top-actions .button span:last-child {
    display: none;
  }

  .brand span {
    display: none;
  }

  .mode-tabs {
    grid-template-columns: 1fr;
  }

  .et-draft-grid {
    gap: 8px;
    width: 600px;
    max-width: none;
  }

  .et-draft-panel {
    padding: 0 10px 10px;
    width: 600px;
  }

  .studio-section.et-mode .et-summary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: none;
  }

  .et-canvas-wrap {
    overflow-x: auto;
    padding-bottom: 10px;
    -webkit-overflow-scrolling: touch;
  }

  .et-draft-controls {
    grid-template-columns: 1fr 1.2fr;
  }

  .et-draft-group {
    grid-template-columns: 88px minmax(0, 1fr);
    min-height: 38px;
    border-left: 1px solid #8d8d8d;
    border-top: 0;
  }

  .et-draft-group.rim {
    grid-template-columns: 132px minmax(0, 1fr);
  }

  .et-draft-group:first-child {
    border-left: 0;
  }

  .et-check {
    gap: 5px;
    font-size: 13px;
  }

  .et-check input {
    width: 15px;
    height: 15px;
  }

  .et-fieldline {
    gap: 4px;
    padding: 3px;
    font-size: 15px;
  }

  .et-fieldline input,
  .et-fieldline.rim-size input {
    width: 42px;
    height: 26px;
    padding: 2px 4px;
    font-size: 16px;
  }

  .et-draft-title {
    top: 6px;
    font-size: 14px;
    left: 0;
    width: 58%;
  }

  .et-draft-size {
    top: 23px;
    font-size: 10px;
    left: 0;
    width: 58%;
  }

  h1 {
    font-size: 34px;
    line-height: 1.02;
  }

  h2 {
    font-size: 30px;
  }

  .hero-lead {
    font-size: 17px;
  }

  .hero-content {
    padding-bottom: 210px;
  }

  .hero-car {
    right: auto;
    left: 50%;
    bottom: 4px;
    width: 118vw;
    opacity: 0.9;
    transform: translateX(-50%);
  }

  .dropzone {
    min-height: 156px;
  }

  .pricing-card strong {
    font-size: 34px;
  }
}
