:root {
  --quote-navy: #071c2c;
  --quote-blue: #168ab5;
  --quote-cyan: #55d8e6;
  --quote-paper: #f4f8fb;
}

* {
  box-sizing: border-box;
}

body.quote-page {
  min-height: 100vh;
  margin: 0;
  background:
    radial-gradient(circle at 12% 10%, rgba(85, 216, 230, 0.22), transparent 30rem),
    linear-gradient(135deg, #061724 0%, #0c3450 48%, #168ab5 100%);
  color: var(--quote-navy);
  font-family: "Poppins", sans-serif;
}

.quote-page-shell {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.quote-page-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 86px;
  gap: 24px;
}

.quote-page-logo img {
  display: block;
  width: min(220px, 52vw);
  height: auto;
}

.quote-page-back {
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}

.quote-page-main {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  align-items: center;
  gap: clamp(40px, 7vw, 90px);
  padding: 54px 0 86px;
}

.quote-page-intro {
  color: #fff;
}

.quote-page-kicker {
  margin: 0 0 14px;
  color: var(--quote-cyan);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.quote-page-intro h1 {
  max-width: 700px;
  margin: 0;
  font-size: clamp(2.7rem, 7vw, 5.8rem);
  line-height: 0.94;
  letter-spacing: -0.055em;
}

.quote-page-lede {
  max-width: 580px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1rem, 2vw, 1.16rem);
  line-height: 1.7;
}

.quote-page-points {
  display: grid;
  gap: 12px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.quote-page-points li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
}

.quote-page-points li::before {
  content: "✓";
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  background: var(--quote-cyan);
  color: var(--quote-navy);
}

.quote-page-mascot {
  display: block;
  width: clamp(230px, 28vw, 340px);
  height: auto;
  margin: 22px 0 -58px auto;
  filter: drop-shadow(0 22px 20px rgba(0, 0, 0, 0.28));
  transform: rotate(-2deg);
}

.quote-page-card {
  position: relative;
  padding: clamp(26px, 5vw, 44px);
  overflow: visible;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.32);
}

.quote-page-card h2 {
  margin: 0;
  font-size: clamp(1.65rem, 3vw, 2.25rem);
  letter-spacing: -0.035em;
}

.quote-page-card > p {
  margin: 8px 0 0;
  color: #526474;
}

.quote-page-card .h2w-quote-form {
  margin-top: 26px;
}

.quote-page-card .h2w-quote-submit {
  border: 0;
  background: linear-gradient(135deg, var(--quote-blue), #0d658c);
  box-shadow: 0 14px 30px rgba(22, 138, 181, 0.26);
}

.quote-page-card .h2w-quote-submit:hover {
  transform: translateY(-2px);
}

@media (max-width: 860px) {
  .quote-page-main {
    grid-template-columns: 1fr;
    padding-top: 28px;
  }

  .quote-page-intro h1 {
    max-width: 620px;
  }

  .quote-page-mascot {
    width: clamp(190px, 42vw, 280px);
    margin: 20px 0 -36px auto;
  }
}

@media (max-width: 560px) {
  .quote-page-header {
    min-height: 74px;
  }

  .quote-page-back {
    font-size: 0.84rem;
  }

  .quote-page-main {
    gap: 34px;
    padding-bottom: 40px;
  }

  .quote-page-mascot {
    width: 190px;
    margin-bottom: -26px;
  }

  .quote-page-card {
    border-radius: 22px;
  }
}
