:root {
  --yellow: #ffc400;
  --yellow-dark: #f3b400;
  --black: #050505;
  --ink: #101010;
  --muted: #646464;
  --line: #dedede;
  --soft: #f7f7f7;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(0, 0, 0, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.45;
}

img,
svg {
  display: block;
}

button,
input,
select,
textarea {
  font: inherit;
}

.page-shell {
  width: 100%;
  margin: 0;
  overflow: hidden;
  background: var(--white);
}

.hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  background: linear-gradient(105deg, #fff 0%, #fff 70%, rgba(255, 196, 0, 0.14) 70%, rgba(255, 196, 0, 0.14) 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 64px));
  margin: 0 auto;
  padding: 42px 0 46px;
  overflow: hidden;
}

.logo {
  width: min(272px, 75vw);
  height: auto;
  margin-bottom: 34px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--black);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.eyebrow span {
  width: 49px;
  height: 2px;
  background: var(--yellow);
}

.hero h1 {
  margin: 18px 0 16px;
  color: var(--black);
  font-family: "Archivo", Impact, sans-serif;
  font-size: clamp(66px, 7.2vw, 96px);
  font-weight: 900;
  line-height: 0.92;
  text-transform: uppercase;
}

.hero h1 strong {
  display: block;
  color: var(--yellow);
  font: inherit;
}

.hero__lead {
  width: min(520px, 100%);
  margin: 0 0 26px;
  color: #111;
  font-size: 21px;
  font-weight: 500;
}

.short-rule,
.quote-rule {
  width: 55px;
  height: 3px;
  background: var(--yellow);
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, max-content);
  gap: 28px;
  align-items: center;
  margin: 28px 0 29px;
}

.trust-item {
  display: grid;
  grid-template-columns: 34px auto;
  gap: 10px;
  align-items: center;
  color: var(--black);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.trust-item svg,
.quote-form svg,
.contact-item svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.trust-item svg {
  width: 34px;
  height: 34px;
  color: var(--yellow-dark);
}

.stay-tuned {
  margin: 0;
  color: var(--black);
  font-size: 18px;
  font-weight: 500;
}

.quote-section {
  display: grid;
  grid-template-columns: 285px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  padding: 28px max(42px, calc((100% - 1180px) / 2));
  background: var(--yellow);
}

.quote-info {
  padding: 10px 0;
}

.quote-info > p:first-child,
.quote-info h2 {
  margin: 0;
  color: var(--black);
  font-family: "Archivo", Impact, sans-serif;
  font-weight: 900;
  line-height: 1.06;
  text-transform: uppercase;
}

.quote-info > p:first-child {
  font-size: 24px;
}

.quote-info h2 {
  margin-top: 7px;
  font-size: 40px;
}

.quote-rule {
  display: block;
  margin: 16px 0 18px;
  background: #fff;
}

.quote-copy {
  width: min(235px, 100%);
  margin: 0 0 30px;
  color: var(--black);
  font-size: 17px;
  font-weight: 500;
}

.benefits {
  display: grid;
  gap: 21px;
}

.benefit {
  display: grid;
  grid-template-columns: 56px auto;
  gap: 12px;
  align-items: center;
}

.benefit__icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: var(--yellow);
  background: var(--black);
}

.benefit__icon svg {
  width: 29px;
  height: 29px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.benefit strong,
.benefit small {
  display: block;
  color: var(--black);
}

.benefit strong {
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.benefit small {
  margin-top: 3px;
  font-size: 14px;
}

.quote-form {
  padding: 21px 22px 22px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.field,
.upload-box {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 7px;
  color: #656565;
  background: #fff;
}

.field {
  padding: 0 16px;
  gap: 13px;
}

.field svg {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  color: #202020;
  stroke-width: 1.8;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 0;
  outline: 0;
  color: #111;
  background: transparent;
  font-size: 14px;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #666;
}

.field--textarea {
  align-items: flex-start;
  min-height: 82px;
  margin-top: 14px;
  padding-top: 16px;
}

.field--textarea textarea {
  min-height: 62px;
  resize: vertical;
}

.upload-box {
  justify-content: center;
  gap: 16px;
  min-height: 86px;
  margin-top: 14px;
  padding: 12px;
  cursor: pointer;
  text-align: left;
}

.upload-box input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.upload-box svg {
  width: 39px;
  height: 39px;
  color: var(--black);
  stroke-width: 1.5;
}

.upload-box strong,
.upload-box small {
  display: block;
  color: var(--black);
}

.upload-box strong {
  font-size: 14px;
  font-weight: 900;
}

.upload-box small {
  margin-top: 3px;
  color: #333;
  font-size: 12px;
  line-height: 1.35;
}

.form-status {
  min-height: 18px;
  margin: 8px 0 0;
  color: #0b6e2f;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
}

.form-status.is-error {
  color: #b00020;
}

.submit-btn {
  width: min(285px, 100%);
  min-height: 53px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin: 0 auto;
  border: 0;
  border-radius: 6px;
  color: var(--black);
  background: var(--yellow);
  cursor: pointer;
  font-size: 18px;
  font-weight: 900;
  text-transform: uppercase;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.submit-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(255, 196, 0, 0.3);
}

.submit-btn svg {
  width: 28px;
  height: 28px;
  color: var(--black);
}

.contact-bar {
  display: grid;
  grid-template-columns: 1fr 1fr 1.35fr;
  align-items: center;
  gap: 18px;
  padding: 30px 58px;
  background: #fff;
}

.contact-item {
  display: grid;
  grid-template-columns: 55px auto;
  gap: 18px;
  align-items: center;
  min-height: 54px;
}

.contact-item:not(:last-child) {
  border-right: 1px solid #d8d8d8;
}

.contact-item span {
  width: 55px;
  height: 55px;
  display: grid;
  place-items: center;
  border-radius: 7px;
  background: var(--yellow);
}

.contact-item svg {
  width: 31px;
  height: 31px;
  color: var(--black);
  stroke-width: 2.5;
}

.contact-item p {
  margin: 0;
  color: var(--black);
  font-size: 16px;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-item strong {
  display: block;
  margin-top: 5px;
  font-size: 17px;
  font-weight: 800;
  text-transform: none;
}

@media (max-width: 980px) {
  .hero {
    min-height: auto;
    background: #fff;
  }

  .hero__content {
    width: min(760px, calc(100% - 48px));
    padding: 28px 0 34px;
  }

  .trust-row {
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }

  .quote-section {
    grid-template-columns: 1fr;
  }

  .quote-copy {
    width: min(540px, 100%);
  }

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

  .contact-bar {
    grid-template-columns: 1fr;
    padding: 28px 24px;
  }

  .contact-item:not(:last-child) {
    padding-bottom: 16px;
    border-right: 0;
    border-bottom: 1px solid #d8d8d8;
  }
}

@media (max-width: 640px) {
  .logo {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 30px;
  }

  .hero__content {
    text-align: center;
  }

  .eyebrow {
    justify-content: center;
  }

  .hero__lead,
  .short-rule {
    margin-left: auto;
    margin-right: auto;
  }

  .eyebrow {
    font-size: 12px;
  }

  .eyebrow span {
    width: 34px;
  }

  .hero h1 {
    font-size: 62px;
  }

  .hero__lead {
    font-size: 18px;
  }

  .trust-row {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .quote-section {
    padding: 24px 16px;
  }

  .quote-info h2 {
    font-size: 36px;
  }

  .benefits,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .quote-form {
    padding: 17px 14px 18px;
  }

  .upload-box {
    align-items: center;
    justify-content: flex-start;
  }

  .contact-item {
    grid-template-columns: 50px auto;
    gap: 14px;
  }

  .contact-item span {
    width: 50px;
    height: 50px;
  }
}

@media (max-width: 390px) {
  .hero h1 {
    font-size: 52px;
  }

}
