:root {
  --bg: #fff8ef;
  --bg-soft: #fff1dd;
  --text: #1f1f1f;
  --muted: #6f675d;
  --accent: #ff8a00;
  --accent-dark: #e46f00;
  --card: #ffffff;
  --line: rgba(31, 31, 31, 0.1);
  --shadow: 0 24px 70px rgba(74, 45, 13, 0.14);
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}
@media (max-width: 920px) {
  html {
    scroll-padding-top: 150px;
  }
}

body {
  margin: 0;
  font-family:
    Inter,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  background:
    radial-gradient(
      circle at top left,
      rgba(255, 138, 0, 0.18),
      transparent 36rem
    ),
    linear-gradient(180deg, var(--bg), #fff);
  color: var(--text);
}

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

button,
.button {
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  padding: 14px 22px;
  background: var(--accent);
  color: #fff;
  font-weight: 800;
  box-shadow: 0 14px 30px rgba(255, 138, 0, 0.28);
  transition: 0.2s ease;
}

button:hover,
.button:hover {
  transform: translateY(-2px);
  background: var(--accent-dark);
}

header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100vw;
  margin: 0 auto;
  padding: 18px 64px;
  backdrop-filter: blur(18px);
}

.brand {
  font-size: 28px;
  font-weight: 950;
  letter-spacing: -0.04em;
  white-space: nowrap;
}

.brand__two {
  color: var(--accent);
}

.navigation {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 15px;
  color: var(--muted);
}

.navigation a:hover {
  color: var(--text);
}

main section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 43px 24px;
}

#hero {
  min-height: 78vh;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 48px;
}

.hero__title__slogan {
  font-size: clamp(48px, 8vw, 104px);
  line-height: 0.95;
  font-weight: 950;
  letter-spacing: -0.07em;
}

#hero .brand {
  margin-top: 10px;
  font-size: clamp(64px, 10vw, 132px);
  line-height: 0.9;
}

.hero__description {
  margin: 26px 0 30px;
  max-width: 620px;
  font-size: clamp(20px, 2.5vw, 30px);
  line-height: 1.25;
  color: var(--muted);
}

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.badge {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.75);
  color: var(--muted);
  font-size: 14px;
}

.hero__preview {
  position: relative;
}

.map-card {
  min-height: 520px;
  border-radius: 38px;
  background:
    linear-gradient(135deg, rgba(255, 138, 0, 0.2), rgba(255, 255, 255, 0.65)),
    repeating-linear-gradient(
      45deg,
      transparent 0 36px,
      rgba(31, 31, 31, 0.035) 36px 38px
    ),
    #fff;
  box-shadow: var(--shadow);
  padding: 24px;
  overflow: hidden;
}

.place-card {
  width: min(330px, 100%);
  padding: 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 20px 50px rgba(31, 31, 31, 0.12);
  backdrop-filter: blur(14px);
}

.place-card + .place-card {
  margin-top: 14px;
  margin-left: auto;
}

.place-card__tag {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--bg-soft);
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 800;
}

.place-card__title {
  margin-top: 12px;
  font-size: 21px;
  font-weight: 900;
}

.place-card__text {
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.4;
}

#demo {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

#demo article {
  padding: 18px;
  border-radius: 36px;
  background: linear-gradient(180deg, #fff, var(--bg-soft));
  box-shadow: var(--shadow);
}

.screen {
  min-height: 560px;
  display: flex;
  flex-direction: column;
  border-radius: 28px;
  overflow: hidden;
  background: #101010;
  color: #fff;
}

.screen__header {
  padding: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.screen__header .brand {
  font-size: 22px;
}

.screen__header__secondline {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 14px;
}

.screen__chat {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 18px;
}

.screen__chat__user,
.screen__chat__tuda {
  max-width: 88%;
  padding: 13px 15px;
  border-radius: 18px;
  font-size: 15px;
  line-height: 1.35;
}

.screen__chat__user {
  margin-left: auto;
  background: var(--accent);
}

.screen__chat__tuda {
  background: rgba(255, 255, 255, 0.1);
}

.recommendation {
  margin-top: 8px;
  padding: 12px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
}

.recommendation strong {
  display: block;
  margin-bottom: 4px;
}

.screen__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 14px;
  padding: 12px 12px 12px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.48);
  font-size: 14px;
}

.send {
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  border-radius: 50%;
  background: var(--accent);
  position: relative;
}

.send::before {
  content: "→";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 900;
}

.section-header,
.utp__header,
.business__headerWrap,
.users__wrap,
.cta__wrap {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 36px;
}

.utp__header__slogan,
.users__header,
.business__header,
.cta__header,
.faq__header {
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1;
  font-weight: 950;
  letter-spacing: -0.055em;
}

.utp__header__description,
.business__description,
.cta__description,
.faq__description {
  margin-top: 16px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.45;
}

.utp__cards,
.business__pluseses {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.card:hover {
  border-color: var(--accent-dark);
  transform: translateY(-8px);
}
.card,
.business-card,
.users__info {
  transition: transform 0.1s ease-in-out;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 16px 44px rgba(74, 45, 13, 0.08);
}

.card__icon,
.business-card__icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: var(--bg-soft);
  font-size: 24px;
}

.card__header,
.business-card__header {
  margin-top: 18px;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.card__description,
.business-card__description {
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.5;
}

#users {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 28px;
  align-items: center;
}

.users__info ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 18px;
}

.users__info li {
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: 19px;

  line-height: 1.35;
}

.users__info li::before {
  content: "✓";
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-weight: 900;
}

#users_count {
  font-size: 32px;
  font-weight: 950;
  color: var(--accent-dark);
}

#business {
  border-radius: 42px;
  background: #151515;
  color: #fff;
  max-width: calc(1180px - 48px);
  margin: 70px auto;
}

#business .business__description,
#business .business-card__description {
  color: rgba(255, 255, 255, 0.65);
}

.business-card {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.1);
}

#cta {
  text-align: center;
}

.cta__box {
  padding: 54px 24px;
  border-radius: 42px;
  background:
    radial-gradient(
      circle at center top,
      rgba(255, 138, 0, 0.3),
      transparent 34rem
    ),
    #fff;
  box-shadow: var(--shadow);
}

.cta__form {
  display: flex;
  max-width: 520px;
  margin: 30px auto 0;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
}

.cta__form input {
  flex: 1;
  min-width: 0;
  border: 0;
  outline: 0;
  padding: 0 16px;
  font: inherit;
}

.faqSection {
  padding-top: 40px;
}

.faqAcc {
  max-width: 860px;
  margin: 34px auto 0;
  display: grid;
  gap: 12px;
}

.faqItem {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.78);
  overflow: hidden;
}

.faqBtn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 22px;
  border-radius: 0;
  background: transparent;
  color: var(--text);
  box-shadow: none;
  text-align: left;
}

.faqBtn:hover {
  transform: none;
  background: rgba(255, 138, 0, 0.06);
}

.faqQ {
  font-weight: 900;
  font-size: 18px;
}

.faqChevron {
  color: var(--accent);
  transition: transform 0.2s ease;
}

.faqItem.is-open .faqChevron {
  transform: rotate(180deg);
}

.faqPanel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.25s ease;
}

.faqItem.is-open .faqPanel {
  grid-template-rows: 1fr;
}

.faqInner {
  overflow: hidden;
  padding: 0 22px;
  color: var(--muted);
  line-height: 1.55;
}

.faqItem.is-open .faqInner {
  padding-bottom: 20px;
}

footer {
  max-width: 1180px;
  margin: 0 auto;
  padding: 36px 24px 46px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  color: var(--muted);
}

.footer__brand {
  font-size: 22px;
  font-weight: 950;
  color: var(--text);
}

.copyright {
  color: var(--muted);
  font-weight: 500;
}

.footer__social {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

.footer__social a:not(.footer__social__email),
.email {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--line);
}

.social,
.footer__social__email {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  height: 44px;
  min-width: 44px;
  padding: 0 16px;

  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line);

  transition: 0.2s ease;
}

.social:hover,
.footer__social__email:hover {
  transform: translateY(-2px);
  background: white;
}

.social i,
.footer__social__email i {
  font-size: 18px;
}

@media (max-width: 920px) {
  header {
    position: static;
    flex-wrap: wrap;
  }

  .navigation {
    display: none;
  }

  #hero,
  #users {
    grid-template-columns: 1fr;
  }

  #demo,
  .utp__cards,
  .business__pluseses {
    grid-template-columns: 1fr;
  }

  .map-card {
    min-height: auto;
  }

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

@media (max-width: 560px) {
  main section {
    padding: 62px 18px;
  }

  header {
    padding: 16px 18px;
  }

  .button,
  button {
    padding: 12px 16px;
  }

  .cta__form {
    flex-direction: column;
    border-radius: 26px;
    gap: 8px;
  }

  .cta__form input {
    padding: 14px 12px;
  }
}
