* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  scrollbar-color: #f1f0ee #f1f0ee;
}

body {
  min-height: 100vh;
  background: #f1f0ee;
  color: #615d5c;
  font-family: "Avenir LT Pro", Avenir, "Avenir Next", Helvetica, Arial, sans-serif;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
  width: 10px;
}

html::-webkit-scrollbar-track,
html::-webkit-scrollbar-thumb,
html::-webkit-scrollbar-corner,
html::-webkit-scrollbar-button,
body::-webkit-scrollbar-track,
body::-webkit-scrollbar-thumb,
body::-webkit-scrollbar-corner,
body::-webkit-scrollbar-button {
  background: #f1f0ee;
}

.page {
  position: relative;
  min-height: 100vh;
  background: #f1f0ee;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 30px;
}

.site-header__brand {
  display: inline-flex;
  align-items: center;
}

.site-header__logo {
  width: 92px;
  height: auto;
  display: block;
}

.site-header__nav {
  display: flex;
  align-items: center;
  gap: 34px;
}

.site-header__nav a,
.site-footer a,
.locale-toggle {
  color: #615d5c;
  text-decoration: none;
}

.site-header__nav a {
  font-size: 13px;
  font-weight: 400;
  line-height: 1;
}

.hero,
.content-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 30px;
}

.hero {
  justify-content: center;
}

.hero__content,
.content-page__text {
  color: #615d5c;
}

.hero__content {
  width: min(440px, calc(100vw - 60px));
}

.services-hero__content {
  width: min(620px, calc(100vw - 60px));
}

.pricing-hero__content {
  width: min(620px, calc(100vw - 60px));
}

.process-hero__content {
  width: min(620px, calc(100vw - 60px));
}

.contact-hero__content {
  width: min(620px, calc(100vw - 60px));
}

.thank-you-hero__content {
  width: min(440px, calc(100vw - 60px));
}

.services-title,
.pricing-title,
.process-title,
.contact-title,
.thank-you-title {
  max-width: 570px;
}

.section-label {
  margin: 0 0 16px;
  color: #615d5c;
  font-size: 12px;
  line-height: 1;
}

.contact-hero .section-label {
  font-size: 12px;
  line-height: 1;
}

.content-page__text {
  width: min(680px, 100%);
  margin-left: clamp(96px, 16vw, 240px);
}

.content-page h1 {
  max-width: 620px;
  margin: 0;
  font-size: clamp(42px, 6vw, 86px);
  font-weight: 400;
  line-height: 0.98;
}

.hero__content > h1,
.hero__content > p:not(.section-label) {
  max-width: 440px;
  margin: 0;
  font-size: clamp(14px, 1.45vw, 20px);
  font-weight: 400;
  line-height: 1.18;
}

.hero__content > p:not(.section-label) {
  margin-top: 6px;
}

.content-page p {
  max-width: 510px;
  margin: 24px 0 0;
  font-size: clamp(17px, 1.55vw, 24px);
  font-weight: 400;
  line-height: 1.25;
}

.hero__actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 11px;
  margin-top: 26px;
}

.hero__actions a {
  color: #615d5c;
  font-size: 12px;
  letter-spacing: 0;
  line-height: 1;
  text-decoration: none;
  transition:
    color 220ms ease,
    letter-spacing 220ms ease;
}

.hero__actions a:hover {
  color: #8b8785;
  letter-spacing: 0.05em;
}

.service-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 7px;
  margin-top: 24px;
}

.services-summary {
  max-width: 430px;
  margin-top: 34px;
  color: #615d5c;
}

.starter-plan {
  width: min(430px, 100%);
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 22px;
  align-items: baseline;
  margin-top: 20px;
}

.services-summary p {
  margin: 0;
  font-size: 12px;
  line-height: 1.3;
}

.services-summary p + p {
  margin-top: 12px;
  color: #8b8785;
}

.services-summary a {
  display: inline-block;
  color: #615d5c;
  font-size: 12px;
  line-height: 1;
  text-decoration: none;
  transition:
    color 220ms ease,
    letter-spacing 220ms ease;
}

.services-summary a:hover {
  color: #8b8785;
  letter-spacing: 0.05em;
}

.explore-plans {
  margin-top: 18px;
}

.service-toggle {
  width: fit-content;
  padding: 0;
  border: 0;
  background: transparent;
  color: #615d5c;
  font: inherit;
  font-size: 12px;
  line-height: 1.15;
  letter-spacing: 0;
  text-align: left;
  cursor: pointer;
  transition:
    color 220ms ease,
    letter-spacing 220ms ease;
}

.service-toggle:hover {
  color: #8b8785;
  letter-spacing: 0.08em;
}

.services-hero .service-detail {
  max-width: 430px;
  max-height: 0;
  margin: 0;
  overflow: hidden;
  color: #8b8785;
  font-size: 12px;
  line-height: 1.35;
  letter-spacing: 0.055em;
  opacity: 0;
  transform: translateY(-4px);
  transition:
    max-height 320ms ease,
    margin 320ms ease,
    opacity 240ms ease,
    transform 320ms ease;
}

.service-item.is-open .service-detail {
  max-height: 90px;
  margin: 6px 0 3px;
  opacity: 1;
  transform: translateY(0);
}

.pricing-plan {
  max-width: 500px;
  margin-top: 0;
  color: #615d5c;
}

.pricing-list {
  display: grid;
  gap: 18px;
  margin-top: 34px;
}

.pricing-note {
  max-width: 430px;
  margin-top: 18px;
  color: #8b8785;
}

.pricing-note p {
  margin: 0;
  font-size: 12px;
  line-height: 1.35;
}

.pricing-toggle {
  width: min(500px, 100%);
  display: grid;
  grid-template-columns: max-content max-content auto;
  align-items: baseline;
  gap: 18px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #615d5c;
  font: inherit;
  font-size: 12px;
  line-height: 1;
  text-align: left;
  cursor: pointer;
  transition:
    color 220ms ease,
    letter-spacing 220ms ease;
}

.pricing-toggle:hover {
  color: #8b8785;
  letter-spacing: 0.04em;
}

.pricing-tagline {
  margin: 6px 0 0;
  color: #8b8785;
  font-size: 12px;
  line-height: 1.35;
}

.pricing-detail {
  max-width: 500px;
  max-height: 0;
  margin: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-4px);
  transition:
    max-height 360ms ease,
    margin 320ms ease,
    opacity 240ms ease,
    transform 320ms ease;
}

.pricing-plan.is-open .pricing-detail {
  max-height: 1200px;
  margin-top: 20px;
  opacity: 1;
  transform: translateY(0);
}

.pricing-detail p,
.pricing-plan li {
  margin: 0;
  font-size: 12px;
  line-height: 1.35;
}

.pricing-detail ul {
  margin: 8px 0 22px;
  padding: 0;
  list-style: none;
  color: #8b8785;
}

.pricing-detail p + p,
.pricing-detail ul + p {
  margin-top: 22px;
}

.pricing-detail > p:first-child,
.pricing-detail p:nth-of-type(even) {
  color: #8b8785;
}

.process-list {
  display: grid;
  gap: 7px;
  margin-top: 28px;
}

.process-toggle {
  width: fit-content;
  display: grid;
  grid-template-columns: auto auto;
  gap: 8px;
  align-items: baseline;
  padding: 0;
  border: 0;
  background: transparent;
  color: #615d5c;
  font: inherit;
  font-size: 12px;
  line-height: 1.15;
  text-align: left;
  cursor: pointer;
  transition:
    color 220ms ease,
    letter-spacing 220ms ease;
}

.process-toggle:hover {
  color: #8b8785;
  letter-spacing: 0.04em;
}

.process-hero .process-detail {
  max-width: 430px;
  max-height: 0;
  margin: 0;
  overflow: hidden;
  color: #8b8785;
  font-size: 12px;
  line-height: 1.35;
  letter-spacing: 0.035em;
  opacity: 0;
  transform: translateY(-4px);
  transition:
    max-height 320ms ease,
    margin 320ms ease,
    opacity 240ms ease,
    transform 320ms ease;
}

.process-hero .process-detail p {
  margin: 0;
  max-width: 430px;
  font-size: 12px;
  line-height: 1.35;
}

.process-hero .process-detail p + p {
  margin-top: 10px;
}

.process-step.is-open .process-detail {
  max-height: 280px;
  margin: 8px 0 4px;
  opacity: 1;
  transform: translateY(0);
}

.process-summary {
  max-width: 430px;
  margin-top: 34px;
  padding-top: 18px;
  border-top: 1px solid rgba(97, 93, 92, 0.2);
}

.process-summary p {
  margin: 0;
  color: #8b8785;
  font-size: 12px;
  line-height: 1.35;
}

.process-summary a {
  display: inline-block;
  margin-top: 18px;
  color: #615d5c;
  font-size: 12px;
  line-height: 1;
  text-decoration: none;
  transition:
    color 220ms ease,
    letter-spacing 220ms ease;
}

.process-summary a:hover {
  color: #8b8785;
  letter-spacing: 0.05em;
}

.plan-start {
  display: inline-block;
  margin-top: 22px;
  color: #615d5c;
  font-size: 12px;
  line-height: 1;
  text-decoration: none;
  transition:
    color 220ms ease,
    letter-spacing 220ms ease;
}

.plan-start:hover {
  color: #8b8785;
  letter-spacing: 0.05em;
}

.contact-intro,
.contact-form-intro,
.contact-submit-note {
  max-width: 430px;
  margin: 12px 0 0;
  color: #8b8785;
  font-size: 12px;
  line-height: 1.35;
}

.contact-hero .hero__content > p.contact-intro {
  font-size: 12px;
  line-height: 1.35;
}

.contact-actions {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-top: 20px;
}

.contact-actions a,
.contact-submit {
  color: #615d5c;
  font-size: 12px;
  line-height: 1;
  text-decoration: none;
  transition:
    color 220ms ease,
    letter-spacing 220ms ease;
}

.contact-actions a:hover,
.contact-submit:hover {
  color: #8b8785;
  letter-spacing: 0.05em;
}

.contact-email-group {
  display: inline-grid;
  gap: 6px;
  justify-items: start;
}

.contact-email-copy {
  margin: 0;
  color: #8b8785;
  font-size: 12px;
  line-height: 1.35;
}

.contact-hero .contact-email-copy {
  font-size: 12px;
  line-height: 1.35;
}

.contact-form-intro {
  margin-top: 48px;
  color: #615d5c;
}

.contact-form {
  width: min(430px, 100%);
  display: grid;
  gap: 16px;
  margin-top: 22px;
}

.contact-bot-field {
  display: none;
}

.contact-field {
  display: grid;
  gap: 2px;
  color: #615d5c;
  font-size: 12px;
  line-height: 1;
}

.contact-field > span:first-child {
  transition: color 180ms ease;
}

.contact-field.is-invalid > span:first-child {
  color: #b24b45;
}

.contact-field input,
.contact-field select,
.contact-field textarea {
  width: 100%;
  border: 0;
  border-radius: 0;
  padding: 2px 0 5px;
  background: transparent;
  color: #615d5c;
  font: inherit;
  font-size: 12px;
  line-height: 1.3;
  outline: 0;
}

.contact-field textarea {
  resize: none;
  min-height: 30px;
  overflow: hidden;
}

.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
  outline: 0;
}

.contact-field input::placeholder {
  color: #8b8785;
}

.contact-options {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 4px;
}

.contact-option {
  position: relative;
  display: inline-flex;
  color: #615d5c;
  cursor: pointer;
}

.contact-option input {
  position: absolute;
  width: auto;
  opacity: 0;
  pointer-events: none;
}

.contact-option span {
  transition:
    color 220ms ease,
    letter-spacing 220ms ease;
}

.contact-option:hover span,
.contact-option input:checked + span {
  color: #8b8785;
  letter-spacing: 0.05em;
}

.contact-pricing-link {
  width: fit-content;
  margin-top: 4px;
  color: #615d5c;
  font-size: 12px;
  line-height: 1;
  text-decoration: none;
  transition:
    color 220ms ease,
    letter-spacing 220ms ease;
}

.contact-pricing-link:hover {
  color: #8b8785;
  letter-spacing: 0.05em;
}

.contact-submit-note {
  margin-top: 10px;
}

.contact-submit {
  width: fit-content;
  margin-top: 2px;
  padding: 0;
  border: 0;
  background: transparent;
  font: inherit;
  font-size: 12px;
  line-height: 1;
  cursor: pointer;
}

.page-contact .hero {
  min-height: auto;
  padding-top: 156px;
  padding-bottom: 64px;
}

.page-contact .site-footer {
  position: static;
  padding: 0 30px 24px;
}

.contact-hero .hero__content > p.contact-form-intro {
  margin-top: 48px;
}

.thank-you-hero .hero__content > p.thank-you-text {
  font-size: 12px;
  line-height: 1.35;
}

.content-page__eyebrow {
  margin: 0 0 18px;
  color: #8b8785;
  font-size: 12px;
  line-height: 1;
}

.site-footer {
  position: fixed;
  right: 30px;
  bottom: 24px;
  left: 30px;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  color: #8b8785;
  font-size: 12px;
  line-height: 1.35;
}

.site-footer__links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}

.site-footer a,
.site-footer p,
.locale-toggle {
  margin: 0;
  color: #8b8785;
}

.locale-toggle {
  width: fit-content;
  padding: 0;
  border: 0;
  background: transparent;
  font: inherit;
  line-height: inherit;
  cursor: pointer;
  transition:
    color 220ms ease,
    letter-spacing 220ms ease;
}

.locale-toggle:hover {
  color: #615d5c;
  letter-spacing: 0.04em;
}

.locale-panel {
  position: fixed;
  bottom: 112px;
  left: 30px;
  z-index: 4;
  width: min(260px, calc(100vw - 40px));
  display: grid;
  gap: 14px;
  padding: 16px;
  background: rgba(241, 240, 238, 0.92);
  border: 1px solid rgba(97, 93, 92, 0.18);
  color: #615d5c;
  backdrop-filter: blur(12px);
}

.locale-panel[hidden] {
  display: none;
}

.locale-panel label {
  display: grid;
  gap: 6px;
  font-size: 11px;
  line-height: 1;
}

.locale-panel select {
  width: 100%;
  padding: 8px 6px;
  border: 1px solid rgba(97, 93, 92, 0.24);
  background: #f1f0ee;
  color: #615d5c;
  font: inherit;
}

.loader {
  position: fixed;
  inset: 0;
  z-index: 10;
  display: grid;
  place-items: center;
  background: #f1f0ee;
  opacity: 1;
  transition:
    opacity 620ms ease,
    filter 620ms ease,
    visibility 620ms ease;
}

.loader__logo {
  width: min(42vw, 360px);
  height: auto;
  display: block;
}

.loader.is-hidden {
  opacity: 0;
  filter: blur(12px);
  visibility: hidden;
  pointer-events: none;
}

.loader.is-skipped {
  transition: none;
}

@media (max-width: 640px) {
  .site-header {
    align-items: flex-start;
    padding: 18px 18px;
  }

  .site-header__logo {
    width: 78px;
  }

  .site-header__nav {
    max-width: calc(100vw - 112px);
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px 16px;
    padding-top: 20px;
  }

  .site-header__nav a {
    padding: 2px 0;
    font-size: 12px;
    line-height: 1.1;
  }

  .loader__logo {
    width: min(48vw, 320px);
  }

  .hero,
  .content-page {
    min-height: 100svh;
    padding: 118px 18px 132px;
  }

  .hero__content {
    width: 100%;
  }

  .services-hero__content {
    width: 100%;
  }

  .pricing-hero__content {
    width: 100%;
  }

  .process-hero__content {
    width: 100%;
  }

  .contact-hero__content {
    width: 100%;
  }

  .thank-you-hero__content {
    width: 100%;
  }

  .services-title,
  .pricing-title,
  .process-title,
  .contact-title,
  .thank-you-title {
    max-width: 340px;
  }

  .service-grid {
    gap: 7px;
    margin-top: 22px;
  }

  .services-summary {
    max-width: 340px;
    margin-top: 28px;
  }

  .starter-plan {
    width: 100%;
    grid-template-columns: 1fr auto auto;
    gap: 12px;
    margin-bottom: 20px;
  }

  .services-summary p,
  .services-summary a {
    font-size: 11px;
  }

  .content-page__text {
    margin-left: 0;
  }

  .hero__content > h1,
  .hero__content > p:not(.section-label) {
    max-width: 340px;
    font-size: 15px;
    line-height: 1.2;
  }

  .hero__actions {
    gap: 10px;
    margin-top: 26px;
  }

  .hero__actions a,
  .service-toggle {
    font-size: 11px;
    line-height: 1.25;
  }

  .services-hero .service-detail {
    font-size: 12px;
    line-height: 1.25;
  }

  .pricing-plan {
    max-width: 340px;
    margin-top: 28px;
  }

  .pricing-list {
    gap: 16px;
    margin-top: 28px;
  }

  .process-list {
    margin-top: 24px;
  }

  .process-summary {
    max-width: 340px;
    margin-top: 28px;
  }

  .contact-intro,
  .contact-form-intro,
  .contact-submit-note,
  .contact-form {
    max-width: 340px;
  }

  .contact-form {
    gap: 15px;
    margin-top: 20px;
  }

  .pricing-note {
    max-width: 340px;
  }

  .pricing-toggle {
    width: 100%;
    grid-template-columns: 1fr auto auto;
    gap: 14px;
  }

  .starter-plan span:first-child,
  .pricing-toggle span:first-child {
    min-width: 0;
  }

  .pricing-toggle,
  .pricing-tagline,
  .pricing-note p,
  .pricing-detail p,
  .pricing-plan li,
  .plan-start,
  .process-toggle,
  .process-summary p,
  .process-summary a {
    font-size: 11px;
  }

  .process-hero .process-detail,
  .process-hero .process-detail p {
    font-size: 12px;
    line-height: 1.25;
  }

  .page-services .hero,
  .page-pricing .hero,
  .page-process .hero,
  .page-contact .hero {
    min-height: auto;
    padding-top: 138px;
    padding-bottom: 54px;
  }

  .page-services .site-footer,
  .page-pricing .site-footer,
  .page-process .site-footer,
  .page-contact .site-footer {
    position: static;
    padding: 0 18px 18px;
  }

  .site-footer {
    right: 18px;
    bottom: 18px;
    left: 18px;
    align-items: flex-end;
    gap: 18px;
    font-size: 10px;
    line-height: 1.35;
  }

  .locale-panel {
    bottom: 104px;
    left: 18px;
  }
}

@media (max-width: 390px) {
  .site-header {
    padding: 16px 15px;
  }

  .site-header__logo {
    width: 70px;
  }

  .site-header__nav {
    max-width: calc(100vw - 88px);
    gap: 8px 10px;
  }

  .site-header__nav a {
    font-size: 11px;
  }

  .hero,
  .content-page {
    padding-right: 15px;
    padding-left: 15px;
  }

  .site-footer {
    right: 15px;
    left: 15px;
  }

  .page-services .site-footer,
  .page-pricing .site-footer,
  .page-process .site-footer,
  .page-contact .site-footer {
    padding: 0 15px 18px;
  }
}
