:root {
  --yellow: #f7e64b;
  --gold: #f4c33d;
  --ink: #2f2d33;
  --muted: #67636f;
  --violet: #c9c6e7;
  --violet-deep: #5b3869;
  --panel: #ffffff;
  --soft: #f6f6f1;
  --line: #dddbe8;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Montserrat", Arial, sans-serif;
  color: var(--ink);
  background: var(--soft);
  letter-spacing: 0;
}

a {
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px clamp(18px, 4vw, 56px);
  background: rgba(255, 255, 255, .88);
  border-bottom: 1px solid rgba(221, 219, 232, .7);
  backdrop-filter: blur(14px);
}

.brand {
  width: clamp(138px, 16vw, 210px);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 28px);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.site-nav a {
  text-decoration: none;
}

.site-nav a:hover {
  color: var(--violet-deep);
}

.nav-login {
  padding: 11px 18px;
  border-radius: 999px;
  background: var(--yellow);
  box-shadow: 0 8px 0 rgba(47, 45, 51, .16);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: var(--ink);
  padding: 13px;
}

.menu-toggle span {
  display: block;
  height: 3px;
  margin: 4px 0;
  background: var(--yellow);
  border-radius: 999px;
}

.hero {
  position: relative;
  min-height: 720px;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 140px 24px 48px;
}

.hero-art {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(242, 240, 255, .12);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
  text-align: center;
  margin-top: -70px;
}

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

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

h1 {
  margin-bottom: 22px;
  color: #fff;
  font-size: clamp(46px, 8vw, 86px);
  line-height: .98;
  font-weight: 900;
  text-shadow: 0 6px 0 rgba(47, 45, 51, .16), 0 18px 30px rgba(47, 45, 51, .22);
}

.hero-copy {
  max-width: 690px;
  margin: 0 auto 30px;
  color: #4f4a58;
  font-size: clamp(17px, 2.2vw, 24px);
  line-height: 1.45;
  font-weight: 700;
}

.hero-actions,
.center-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  min-width: 178px;
  padding: 13px 22px;
  border: 0;
  border-radius: 999px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
}

.button.primary {
  background: var(--yellow);
  color: var(--ink);
  box-shadow: 0 9px 0 rgba(47, 45, 51, .16);
}

.button.secondary {
  background: #fff;
  color: var(--ink);
  box-shadow: inset 0 0 0 2px rgba(47, 45, 51, .12);
}

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

.section {
  padding: clamp(72px, 8vw, 118px) clamp(20px, 5vw, 70px);
}

.section-heading {
  width: min(900px, 100%);
  margin: 0 auto 44px;
  text-align: center;
}

.section-heading.align-left {
  margin-left: 0;
  text-align: left;
}

.section-heading h2 {
  display: inline-block;
  margin: 0;
  border-bottom: 4px solid currentColor;
  font-size: clamp(30px, 5vw, 48px);
  line-height: 1.05;
  font-weight: 900;
  text-transform: uppercase;
}

.intro-section {
  background: #fff url("assets/section-pattern.svg") center / 360px auto;
}

.trust-layout {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: stretch;
}

.people-illustration {
  grid-column: 1 / -1;
  position: relative;
  width: min(520px, 100%);
  height: 270px;
  margin: 0 auto 12px;
}

.gear {
  position: absolute;
  top: 10px;
  width: 96px;
  height: 96px;
  border: 18px dashed var(--gold);
  border-radius: 50%;
}

.gear-one {
  left: 138px;
}

.gear-two {
  right: 138px;
  border-color: #9b9ba0;
}

.person {
  position: absolute;
  bottom: 0;
  width: 106px;
  height: 182px;
  border-radius: 48px 48px 20px 20px;
  background: var(--yellow);
  border: 7px solid #fff;
  box-shadow: 0 10px 0 rgba(47, 45, 51, .1);
}

.person::before {
  content: "";
  position: absolute;
  top: -58px;
  left: 18px;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: #ffc982;
  box-shadow: inset 0 -7px rgba(47, 45, 51, .08);
}

.p1 {
  left: 100px;
  background: #7f86ba;
}

.p2 {
  left: 210px;
  background: #c43d39;
}

.p3 {
  right: 100px;
  background: #eba83d;
}

.feature,
.audience-grid article,
.process-panel,
.faq-grid details {
  background: rgba(255, 255, 255, .94);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 38px rgba(47, 45, 51, .08);
}

.feature {
  padding: clamp(24px, 3vw, 34px);
}

.feature-icon {
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 18px;
  border-radius: 50%;
  color: var(--yellow);
  background: var(--ink);
  font-weight: 900;
}

.feature h3,
.audience-grid h3,
.mode-grid h3 {
  margin-bottom: 12px;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 900;
  text-transform: uppercase;
}

.feature p,
.audience-grid p,
.mode-grid p,
.faq-grid p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.audience-section {
  background: var(--violet) url("assets/section-pattern.svg") center / 360px auto;
}

.audience-grid {
  width: min(1120px, 100%);
  margin: 0 auto 38px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.audience-grid article {
  min-height: 245px;
  padding: 28px 22px;
  text-align: center;
}

.audience-icon {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 88px;
  height: 88px;
  margin-bottom: 20px;
  border-radius: 50%;
  background: var(--yellow);
}

.audience-icon::before,
.audience-icon::after {
  content: "";
  position: absolute;
  background: var(--ink);
}

.monitor::before {
  width: 46px;
  height: 30px;
  border-radius: 4px;
}

.monitor::after {
  width: 34px;
  height: 8px;
  bottom: 21px;
}

.shop::before {
  width: 52px;
  height: 38px;
  bottom: 19px;
  border-radius: 4px;
}

.shop::after {
  width: 60px;
  height: 18px;
  top: 20px;
  border-radius: 10px 10px 4px 4px;
}

.seller::before {
  width: 48px;
  height: 48px;
  border-radius: 50%;
}

.seller::after {
  width: 70px;
  height: 22px;
  bottom: 17px;
  border-radius: 22px 22px 4px 4px;
}

.neighbor::before {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #ffc982;
}

.neighbor::after {
  width: 58px;
  height: 18px;
  top: 20px;
  border-radius: 20px 20px 0 0;
}

.process-section {
  position: relative;
  overflow: hidden;
  padding-bottom: 0;
  background: #efefec url("assets/section-pattern.svg") center / 360px auto;
}

.process-panel {
  position: relative;
  z-index: 1;
  width: min(980px, 100%);
  margin: 0 auto;
  padding: clamp(24px, 4vw, 46px);
}

.mode-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.checkmark {
  display: inline-block;
  width: 28px;
  height: 28px;
  margin-bottom: 12px;
  border-radius: 50%;
  background: var(--violet);
}

.checkmark::after {
  content: "";
  display: block;
  width: 13px;
  height: 7px;
  margin: 8px 0 0 7px;
  border-left: 3px solid #fff;
  border-bottom: 3px solid #fff;
  transform: rotate(-45deg);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.45;
}

.steps strong {
  color: var(--violet-deep);
}

.process-city {
  width: 100%;
  margin-top: 54px;
}

.faq-section {
  background: #e8ece6;
}

.faq-grid {
  width: min(1080px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.faq-grid details {
  padding: 22px 24px;
}

.faq-grid summary {
  cursor: pointer;
  font-weight: 900;
  line-height: 1.35;
  text-transform: uppercase;
}

.faq-grid summary::marker {
  color: var(--violet-deep);
}

.faq-grid p {
  margin: 14px 0 0;
}

.hours {
  margin: 34px auto 0;
  text-align: center;
  font-size: 15px;
  font-weight: 900;
}

.contact-section {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  padding: clamp(56px, 7vw, 94px) clamp(20px, 5vw, 70px);
  background: #fff;
}

.contact-art {
  width: 100%;
  min-height: 420px;
  object-fit: cover;
}

.contact-content {
  width: min(720px, 100%);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

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

.contact-form .full {
  grid-column: 1 / -1;
}

.contact-form span {
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 2px solid #9d99a7;
  border-radius: 0;
  padding: 12px 2px;
  font: inherit;
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--violet-deep);
}

.form-note {
  align-self: center;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 34px 20px;
  border-top: 1px solid var(--line);
  background: #fff;
  color: var(--muted);
  text-align: left;
}

.footer img {
  width: 120px;
}

.footer p {
  margin: 0 0 8px;
  font-size: 13px;
  font-weight: 700;
}

.footer-links {
  display: flex;
  gap: 16px;
}

.footer-links a {
  color: var(--ink);
  font-weight: 900;
  text-decoration: none;
}

@media (max-width: 980px) {
  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 20px 20px;
    background: #fff;
    border-bottom: 1px solid var(--line);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 14px 0;
  }

  .nav-login {
    text-align: center;
  }

  .hero {
    min-height: 650px;
  }

  .trust-layout,
  .audience-grid,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .audience-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-art {
    min-height: 0;
  }
}

@media (max-width: 680px) {
  .site-header {
    min-height: 68px;
  }

  .hero {
    min-height: 620px;
    padding-top: 116px;
  }

  .hero-content {
    margin-top: -38px;
  }

  .button {
    width: 100%;
    max-width: 320px;
  }

  .people-illustration {
    height: 220px;
  }

  .gear-one {
    left: 70px;
  }

  .gear-two {
    right: 70px;
  }

  .p1 {
    left: 22px;
  }

  .p2 {
    left: calc(50% - 53px);
  }

  .p3 {
    right: 22px;
  }

  .audience-grid,
  .mode-grid,
  .steps,
  .faq-grid,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .footer {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }
}
