/* ChistoPro — plain CSS, BEM, longhand, class selectors only */

.main-wrapper {
  font-family: Inter, system-ui, Arial, sans-serif;
  color: #0f172a;
  background-color: #ffffff;
  font-size: 16px;
  line-height: 1.5;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0;
  padding-top: 0;
  padding-right: 0;
  padding-bottom: 0;
  padding-left: 0;
  -webkit-font-smoothing: antialiased;
}

.reset-list {
  list-style-type: none;
  padding-top: 0;
  padding-right: 0;
  padding-bottom: 0;
  padding-left: 0;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0;
}

.reset-heading {
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 700;
}

.reset-paragraph {
  margin-top: 0;
  margin-bottom: 0;
}

.link-reset {
  color: inherit;
  text-decoration-line: none;
}

/* Container */
.container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  width: 100%;
  box-sizing: border-box;
}

.container--narrow {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  width: 100%;
  box-sizing: border-box;
}

/* HEADER */
.header {
  position: sticky;
  top: 0;
  z-index: 40;
  background-color: rgba(255, 255, 255, 0.95);
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: #e2e8f0;
  backdrop-filter: blur(8px);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 14px;
  padding-bottom: 14px;
}

.header__logo {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #0f172a;
  text-decoration-line: none;
  flex-shrink: 0;
}

.header__logo-accent {
  color: #0891b2;
}

.header__nav {
  display: none;
  align-items: center;
  gap: 24px;
}

.header__nav-link {
  font-size: 14px;
  font-weight: 600;
  color: #334155;
  text-decoration-line: none;
  cursor: pointer;
  background-color: transparent;
  border-width: 0;
  padding-top: 6px;
  padding-bottom: 6px;
  padding-left: 0;
  padding-right: 0;
  font-family: inherit;
}

.header__nav-link--active {
  color: #0891b2;
}

.header__nav-link--hover {
  color: #0891b2;
}

.header__cta {
  display: none;
  align-items: center;
  gap: 8px;
  background-color: #0891b2;
  color: #ffffff;
  font-weight: 700;
  font-size: 14px;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 18px;
  padding-right: 18px;
  border-radius: 999px;
  text-decoration-line: none;
  border-width: 0;
  cursor: pointer;
  flex-shrink: 0;
}

.header__cta--hover {
  background-color: #0e7490;
}

.header__burger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background-color: transparent;
  border-width: 1px;
  border-style: solid;
  border-color: #e2e8f0;
  border-radius: 10px;
  cursor: pointer;
  flex-shrink: 0;
}

.header__burger-icon {
  width: 22px;
  height: 2px;
  background-color: #0f172a;
  display: block;
  position: relative;
}

.header__burger-icon-top {
  width: 22px;
  height: 2px;
  background-color: #0f172a;
  margin-bottom: 5px;
}

.header__burger-icon-bottom {
  width: 22px;
  height: 2px;
  background-color: #0f172a;
  margin-top: 5px;
}

@media (min-width: 900px) {
  .header__nav {
    display: flex;
  }
  .header__cta {
    display: inline-flex;
  }
  .header__burger {
    display: none;
  }
}

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 60;
  background-color: rgba(15, 23, 42, 0.55);
}

.mobile-menu--open {
  display: block;
}

.mobile-menu__panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 88%;
  max-width: 360px;
  background-color: #ffffff;
  padding-top: 20px;
  padding-bottom: 20px;
  padding-left: 20px;
  padding-right: 20px;
  box-sizing: border-box;
  overflow-y: auto;
}

.mobile-menu__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.mobile-menu__close {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background-color: #f1f5f9;
  border-width: 0;
  font-size: 22px;
  cursor: pointer;
  color: #0f172a;
  line-height: 1;
}

.mobile-menu__list {
  list-style-type: none;
  margin-top: 0;
  margin-bottom: 20px;
  padding-top: 0;
  padding-right: 0;
  padding-bottom: 0;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-menu__link {
  display: block;
  padding-top: 12px;
  padding-bottom: 12px;
  padding-left: 14px;
  padding-right: 14px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  color: #0f172a;
  background-color: transparent;
  border-width: 0;
  width: 100%;
  text-align: left;
  cursor: pointer;
  font-family: inherit;
}

.mobile-menu__link--active {
  background-color: #ecfeff;
  color: #0891b2;
}

.mobile-menu__cta {
  display: block;
  text-align: center;
  background-color: #0891b2;
  color: #ffffff;
  font-weight: 700;
  padding-top: 14px;
  padding-bottom: 14px;
  padding-left: 20px;
  padding-right: 20px;
  border-radius: 12px;
  text-decoration-line: none;
}

/* HERO */
.hero {
  position: relative;
  background-color: #f5f8fb;
  overflow: hidden;
  padding-top: 56px;
  padding-bottom: 56px;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

.hero__content {
  text-align: center;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #ffffff;
  border-width: 1px;
  border-style: solid;
  border-color: #cffafe;
  color: #0891b2;
  font-size: 13px;
  font-weight: 700;
  padding-top: 6px;
  padding-bottom: 6px;
  padding-left: 14px;
  padding-right: 14px;
  border-radius: 999px;
  margin-bottom: 20px;
}

.hero__badge-dot {
  width: 8px;
  height: 8px;
  background-color: #0891b2;
  border-radius: 999px;
}

.hero__title {
  font-size: 36px;
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-weight: 900;
  margin-top: 0;
  margin-bottom: 20px;
  color: #0f172a;
}

.hero__title-accent {
  color: #0891b2;
  position: relative;
}

.hero__subtitle {
  font-size: 17px;
  line-height: 1.6;
  color: #475569;
  margin-top: 0;
  margin-bottom: 28px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.hero__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.button-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: #0f172a;
  color: #ffffff;
  font-weight: 700;
  font-size: 15px;
  padding-top: 16px;
  padding-bottom: 16px;
  padding-left: 28px;
  padding-right: 28px;
  border-radius: 999px;
  text-decoration-line: none;
  border-width: 0;
  cursor: pointer;
  font-family: inherit;
}

.button-primary--hover {
  background-color: #1e293b;
}

.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: #ffffff;
  color: #0f172a;
  font-weight: 700;
  font-size: 15px;
  padding-top: 16px;
  padding-bottom: 16px;
  padding-left: 28px;
  padding-right: 28px;
  border-radius: 999px;
  text-decoration-line: none;
  border-width: 1px;
  border-style: solid;
  border-color: #cbd5e1;
  cursor: pointer;
  font-family: inherit;
}

.button-secondary--hover {
  border-color: #0891b2;
  color: #0891b2;
}

.button-accent {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: #0891b2;
  color: #ffffff;
  font-weight: 700;
  font-size: 15px;
  padding-top: 14px;
  padding-bottom: 14px;
  padding-left: 26px;
  padding-right: 26px;
  border-radius: 12px;
  text-decoration-line: none;
  border-width: 0;
  cursor: pointer;
  font-family: inherit;
}

.button-accent--hover {
  background-color: #0e7490;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 40px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.hero__stat {
  text-align: center;
}

.hero__stat-value {
  font-size: 32px;
  font-weight: 900;
  color: #0f172a;
  letter-spacing: -0.02em;
  line-height: 1;
}

.hero__stat-accent {
  color: #0891b2;
}

.hero__stat-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #64748b;
  margin-top: 8px;
}

.hero__stat--divided {
  border-left-width: 1px;
  border-left-style: solid;
  border-left-color: #e2e8f0;
  border-right-width: 1px;
  border-right-style: solid;
  border-right-color: #e2e8f0;
  padding-left: 8px;
  padding-right: 8px;
}

.hero__media {
  position: relative;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

.hero__image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 24px;
  object-fit: cover;
  aspect-ratio: 4 / 3;
  box-shadow: 0 30px 60px -20px rgba(15, 23, 42, 0.25);
}

.hero__badge-float {
  display: none;
  position: absolute;
  bottom: -20px;
  left: -20px;
  align-items: center;
  gap: 12px;
  background-color: #ffffff;
  padding-top: 12px;
  padding-bottom: 12px;
  padding-left: 18px;
  padding-right: 18px;
  border-radius: 16px;
  box-shadow: 0 12px 30px -10px rgba(15, 23, 42, 0.2);
}

.hero__badge-float-icon {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background-color: #ecfeff;
  color: #0891b2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  flex-shrink: 0;
}

.hero__badge-float-title {
  font-weight: 700;
  font-size: 14px;
  color: #0f172a;
}

.hero__badge-float-sub {
  font-size: 12px;
  color: #64748b;
}

.hero__badge-pill {
  display: none;
  position: absolute;
  top: -14px;
  right: -14px;
  align-items: center;
  gap: 8px;
  background-color: #0f172a;
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  padding-top: 8px;
  padding-bottom: 8px;
  padding-left: 14px;
  padding-right: 14px;
  border-radius: 999px;
}

.hero__badge-pill-dot {
  width: 8px;
  height: 8px;
  background-color: #0891b2;
  border-radius: 999px;
}

@media (min-width: 900px) {
  .hero {
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .hero__grid {
    grid-template-columns: 1.05fr 1fr;
    gap: 60px;
  }
  .hero__content {
    text-align: left;
  }
  .hero__subtitle {
    margin-left: 0;
    margin-right: 0;
  }
  .hero__buttons {
    justify-content: flex-start;
  }
  .hero__stats {
    margin-left: 0;
    margin-right: 0;
  }
  .hero__title {
    font-size: 60px;
  }
  .hero__badge-float {
    display: inline-flex;
  }
  .hero__badge-pill {
    display: inline-flex;
  }
}

/* SECTION common */
.section {
  padding-top: 64px;
  padding-bottom: 64px;
}

.section--surface {
  background-color: #f5f8fb;
}

.section--primary {
  background-color: #0f172a;
  color: #ffffff;
}

.section__head {
  text-align: center;
  margin-bottom: 40px;
}

.section__eyebrow {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #0891b2;
  margin-bottom: 12px;
}

.section__title {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #0f172a;
  margin-top: 0;
  margin-bottom: 12px;
}

.section__title--light {
  color: #ffffff;
}

.section__underline {
  width: 80px;
  height: 4px;
  background-color: #0891b2;
  margin-top: 16px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 2px;
}

.section__lead {
  max-width: 640px;
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
  color: #64748b;
  font-size: 16px;
  line-height: 1.6;
}

.section__lead--light {
  color: rgba(255, 255, 255, 0.7);
}

@media (min-width: 900px) {
  .section {
    padding-top: 96px;
    padding-bottom: 96px;
  }
  .section__title {
    font-size: 40px;
  }
}

/* Segments cards */
.segments {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 800px) {
  .segments {
    grid-template-columns: 1fr 1fr;
  }
}

.segment-card {
  background-color: #ffffff;
  border-radius: 20px;
  padding-top: 32px;
  padding-bottom: 32px;
  padding-left: 28px;
  padding-right: 28px;
  border-width: 1px;
  border-style: solid;
  border-color: #eef2f7;
  box-shadow: 0 2px 6px rgba(15, 23, 42, 0.04);
}

.segment-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background-color: #ecfeff;
  color: #0891b2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  font-weight: 900;
  margin-bottom: 20px;
}

.segment-card__title {
  font-size: 22px;
  font-weight: 700;
  color: #0f172a;
  margin-top: 0;
  margin-bottom: 12px;
}

.segment-card__desc {
  color: #475569;
  line-height: 1.65;
  margin-top: 0;
  margin-bottom: 24px;
}

.segment-card__list {
  list-style-type: none;
  padding-top: 0;
  padding-right: 0;
  padding-bottom: 0;
  padding-left: 0;
  margin-top: 0;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.segment-card__item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: #334155;
}

.segment-card__check {
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background-color: #ecfeff;
  color: #0891b2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 900;
  flex-shrink: 0;
  margin-top: 2px;
}

.segment-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #0891b2;
  font-weight: 700;
  text-decoration-line: none;
  cursor: pointer;
  background-color: transparent;
  border-width: 0;
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  font-family: inherit;
  font-size: 15px;
}

/* Services grid */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 700px) {
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1000px) {
  .services-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.service-card {
  background-color: #f5f8fb;
  border-radius: 20px;
  padding-top: 28px;
  padding-bottom: 28px;
  padding-left: 28px;
  padding-right: 28px;
  transition-property: box-shadow, transform;
  transition-duration: 200ms;
}

.service-card--hover {
  box-shadow: 0 12px 30px -10px rgba(15, 23, 42, 0.15);
  transform: translateY(-2px);
}

.service-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background-color: #ecfeff;
  color: #0891b2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 22px;
  font-weight: 900;
}

.service-card__title {
  font-size: 18px;
  font-weight: 700;
  color: #0f172a;
  margin-top: 0;
  margin-bottom: 8px;
}

.service-card__desc {
  font-size: 14px;
  color: #475569;
  line-height: 1.6;
  margin-top: 0;
  margin-bottom: 0;
}

/* Reviews */
.reviews {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 800px) {
  .reviews {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.review {
  background-color: #ffffff;
  padding-top: 28px;
  padding-bottom: 28px;
  padding-left: 28px;
  padding-right: 28px;
  border-radius: 20px;
  border-width: 1px;
  border-style: solid;
  border-color: #eef2f7;
  box-shadow: 0 2px 6px rgba(15, 23, 42, 0.04);
  display: flex;
  flex-direction: column;
}

.review__stars {
  color: #0891b2;
  font-size: 18px;
  margin-bottom: 14px;
  letter-spacing: 2px;
}

.review__quote {
  font-size: 15px;
  color: #334155;
  line-height: 1.65;
  margin-top: 0;
  margin-bottom: 20px;
  flex-grow: 1;
  font-style: normal;
}

.review__foot {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: #e2e8f0;
}

.review__photo {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  object-fit: cover;
  flex-shrink: 0;
}

.review__name {
  font-weight: 700;
  font-size: 14px;
  color: #0f172a;
}

.review__role {
  font-size: 12px;
  color: #64748b;
}

/* Feature cards (Why us) */
.features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 640px) {
  .features {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1000px) {
  .features {
    grid-template-columns: repeat(4, 1fr);
  }
}

.feature {
  background-color: #f5f8fb;
  padding-top: 28px;
  padding-bottom: 28px;
  padding-left: 24px;
  padding-right: 24px;
  border-radius: 20px;
  text-align: center;
}

.feature__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background-color: #ecfeff;
  color: #0891b2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-weight: 900;
}

.feature__title {
  font-size: 16px;
  font-weight: 700;
  color: #0f172a;
  margin-top: 0;
  margin-bottom: 8px;
}

.feature__desc {
  font-size: 14px;
  color: #475569;
  line-height: 1.6;
  margin-top: 0;
  margin-bottom: 0;
}

/* Process steps */
.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 700px) {
  .process-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1100px) {
  .process-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

.step {
  position: relative;
  background-color: #ffffff;
  border-radius: 20px;
  padding-top: 24px;
  padding-bottom: 24px;
  padding-left: 24px;
  padding-right: 24px;
  border-width: 1px;
  border-style: solid;
  border-color: #eef2f7;
}

.step__num {
  position: absolute;
  top: -12px;
  right: -12px;
  width: 44px;
  height: 44px;
  background-color: #0891b2;
  color: #ffffff;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 8px 16px rgba(8, 145, 178, 0.35);
}

.step__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background-color: #ecfeff;
  color: #0891b2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  font-weight: 900;
}

.step__title {
  font-size: 16px;
  font-weight: 700;
  color: #0f172a;
  margin-top: 0;
  margin-bottom: 8px;
}

.step__desc {
  font-size: 14px;
  color: #475569;
  line-height: 1.6;
  margin-top: 0;
  margin-bottom: 0;
}

/* Pricing preview */
.pricing-preview {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}

@media (min-width: 1000px) {
  .pricing-preview {
    grid-template-columns: 1fr 1.4fr;
  }
}

.pricing-preview__title {
  font-size: 32px;
  font-weight: 700;
  color: #0f172a;
  margin-top: 0;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}

.pricing-preview__text {
  color: #475569;
  line-height: 1.65;
  font-size: 16px;
  margin-top: 0;
  margin-bottom: 20px;
}

.table-wrap {
  border-width: 1px;
  border-style: solid;
  border-color: #e2e8f0;
  border-radius: 20px;
  overflow: hidden;
  overflow-x: auto;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}

.price-table__head {
  background-color: #f5f8fb;
}

.price-table__th {
  text-align: left;
  padding-top: 14px;
  padding-bottom: 14px;
  padding-left: 16px;
  padding-right: 16px;
  font-weight: 700;
  color: #0f172a;
}

.price-table__th--right {
  text-align: right;
  padding-top: 14px;
  padding-bottom: 14px;
  padding-left: 16px;
  padding-right: 16px;
  font-weight: 700;
  color: #0f172a;
}

.price-table__tr {
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: #e2e8f0;
}

.price-table__td {
  padding-top: 14px;
  padding-bottom: 14px;
  padding-left: 16px;
  padding-right: 16px;
  color: #334155;
}

.price-table__td--right {
  padding-top: 14px;
  padding-bottom: 14px;
  padding-left: 16px;
  padding-right: 16px;
  text-align: right;
  color: #0891b2;
  font-weight: 700;
  white-space: nowrap;
}

.price-table__td--muted {
  padding-top: 14px;
  padding-bottom: 14px;
  padding-left: 16px;
  padding-right: 16px;
  color: #64748b;
}

/* Partners */
.partners {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (min-width: 700px) {
  .partners {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1000px) {
  .partners {
    grid-template-columns: repeat(6, 1fr);
  }
}

.partner {
  height: 64px;
  border-radius: 14px;
  background-color: #ffffff;
  border-width: 1px;
  border-style: solid;
  border-color: #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #334155;
  font-weight: 700;
  font-size: 15px;
  padding-left: 12px;
  padding-right: 12px;
  text-align: center;
}

/* Guarantees */
.guarantees {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 640px) {
  .guarantees {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1000px) {
  .guarantees {
    grid-template-columns: repeat(4, 1fr);
  }
}

.guarantee {
  border-width: 1px;
  border-style: solid;
  border-color: #e2e8f0;
  border-radius: 20px;
  padding-top: 28px;
  padding-bottom: 28px;
  padding-left: 24px;
  padding-right: 24px;
  text-align: center;
  background-color: #ffffff;
}

.guarantee__value {
  font-size: 30px;
  font-weight: 700;
  color: #0891b2;
  margin-bottom: 10px;
}

.guarantee__desc {
  font-size: 14px;
  color: #475569;
  line-height: 1.6;
  margin-top: 0;
  margin-bottom: 0;
}

/* FAQ */
.faq-list {
  list-style-type: none;
  padding-top: 0;
  padding-right: 0;
  padding-bottom: 0;
  padding-left: 0;
  margin-top: 0;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border-width: 1px;
  border-style: solid;
  border-color: #e2e8f0;
  border-radius: 14px;
  background-color: #ffffff;
  overflow: hidden;
}

.faq-item__button {
  width: 100%;
  text-align: left;
  background-color: transparent;
  border-width: 0;
  padding-top: 18px;
  padding-bottom: 18px;
  padding-left: 20px;
  padding-right: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: inherit;
  color: #0f172a;
  font-weight: 700;
  font-size: 16px;
}

.faq-item__plus {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background-color: #ecfeff;
  color: #0891b2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  transition-property: transform;
  transition-duration: 200ms;
}

.faq-item__plus--rotated {
  transform: rotate(45deg);
}

.faq-item__body {
  display: none;
  padding-top: 0;
  padding-bottom: 20px;
  padding-left: 20px;
  padding-right: 20px;
  color: #475569;
  font-size: 15px;
  line-height: 1.65;
}

.faq-item__body--open {
  display: block;
}

.faq-more {
  text-align: center;
  margin-top: 28px;
}

/* CTA */
.cta {
  background-color: #0f172a;
  color: #ffffff;
  padding-top: 64px;
  padding-bottom: 64px;
}

.cta__inner {
  text-align: center;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}

.cta__title {
  font-size: 30px;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.cta__text {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 0;
  margin-bottom: 28px;
}

.cta__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.button-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: transparent;
  color: #ffffff;
  font-weight: 700;
  font-size: 15px;
  padding-top: 14px;
  padding-bottom: 14px;
  padding-left: 26px;
  padding-right: 26px;
  border-radius: 12px;
  text-decoration-line: none;
  border-width: 1px;
  border-style: solid;
  border-color: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  font-family: inherit;
}

.button-outline--hover {
  background-color: rgba(255, 255, 255, 0.1);
}

@media (min-width: 900px) {
  .cta__title {
    font-size: 40px;
  }
}

/* Services page cards */
.service-block {
  background-color: #f5f8fb;
  border-radius: 20px;
  padding-top: 32px;
  padding-bottom: 32px;
  padding-left: 32px;
  padding-right: 32px;
  border-width: 1px;
  border-style: solid;
  border-color: #eef2f7;
  margin-bottom: 24px;
}

.service-block__head {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 18px;
}

.service-block__icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background-color: #ecfeff;
  color: #0891b2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-weight: 900;
  font-size: 24px;
}

.service-block__eyebrow {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #64748b;
  margin-bottom: 4px;
}

.service-block__title {
  font-size: 22px;
  font-weight: 700;
  color: #0f172a;
  margin-top: 0;
  margin-bottom: 4px;
  line-height: 1.25;
}

.service-block__price {
  font-size: 14px;
  font-weight: 700;
  color: #0891b2;
}

.service-block__desc {
  color: #475569;
  line-height: 1.65;
  margin-top: 0;
  margin-bottom: 20px;
}

.service-block__list {
  list-style-type: none;
  padding-top: 0;
  padding-right: 0;
  padding-bottom: 0;
  padding-left: 0;
  margin-top: 0;
  margin-bottom: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

@media (min-width: 700px) {
  .service-block__list {
    grid-template-columns: 1fr 1fr;
  }
}

.service-block__li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: #334155;
}

.service-block__dot {
  width: 7px;
  height: 7px;
  background-color: #0891b2;
  border-radius: 999px;
  margin-top: 8px;
  flex-shrink: 0;
}

/* About stats */
.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (min-width: 900px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-card {
  background-color: #f5f8fb;
  border-radius: 20px;
  padding-top: 28px;
  padding-bottom: 28px;
  padding-left: 24px;
  padding-right: 24px;
  text-align: center;
}

.stat-card__icon {
  color: #0891b2;
  font-size: 26px;
  font-weight: 900;
  margin-bottom: 10px;
}

.stat-card__value {
  font-size: 28px;
  font-weight: 700;
  color: #0891b2;
  margin-bottom: 6px;
}

.stat-card__label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #64748b;
}

/* Timeline */
.timeline {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.timeline__item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.timeline__year {
  font-size: 24px;
  font-weight: 700;
  color: #0891b2;
  width: 80px;
  flex-shrink: 0;
}

.timeline__body {
  border-left-width: 2px;
  border-left-style: solid;
  border-left-color: #cffafe;
  padding-left: 20px;
  padding-top: 4px;
  padding-bottom: 16px;
  color: #334155;
  line-height: 1.65;
  flex-grow: 1;
}

/* Requisites */
.requisites {
  background-color: #ffffff;
  border-radius: 20px;
  padding-top: 28px;
  padding-bottom: 28px;
  padding-left: 28px;
  padding-right: 28px;
  border-width: 1px;
  border-style: solid;
  border-color: #eef2f7;
}

.requisites__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 700px) {
  .requisites__grid {
    grid-template-columns: 1fr 1fr;
  }
}

.requisites__item {
  font-size: 14px;
}

.requisites__item--wide {
  grid-column-start: 1;
  grid-column-end: -1;
  font-size: 14px;
}

.requisites__label {
  font-weight: 700;
  color: #64748b;
  margin-bottom: 4px;
}

.requisites__value {
  color: #0f172a;
}

/* Portfolio */
.projects {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 700px) {
  .projects {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1000px) {
  .projects {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.project-card {
  border-width: 1px;
  border-style: solid;
  border-color: #e2e8f0;
  border-radius: 20px;
  overflow: hidden;
  background-color: #ffffff;
}

.project-card__cover {
  aspect-ratio: 16 / 10;
  background-color: #0f172a;
  background-image: linear-gradient(135deg, #0f172a 0%, #0891b2 100%);
  position: relative;
  display: flex;
  align-items: flex-end;
  padding-top: 20px;
  padding-bottom: 20px;
  padding-left: 20px;
  padding-right: 20px;
}

.project-card__tag {
  display: inline-block;
  background-color: rgba(255, 255, 255, 0.18);
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  padding-top: 4px;
  padding-bottom: 4px;
  padding-left: 10px;
  padding-right: 10px;
  border-radius: 999px;
  margin-bottom: 8px;
}

.project-card__cover-title {
  color: #ffffff;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.25;
}

.project-card__body {
  padding-top: 22px;
  padding-bottom: 22px;
  padding-left: 22px;
  padding-right: 22px;
}

.project-card__desc {
  color: #475569;
  font-size: 14px;
  line-height: 1.65;
  margin-top: 0;
  margin-bottom: 18px;
}

.project-card__meta {
  list-style-type: none;
  padding-top: 0;
  padding-right: 0;
  padding-bottom: 0;
  padding-left: 0;
  margin-top: 0;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
  color: #334155;
}

.project-card__meta-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.project-card__meta-dot {
  width: 8px;
  height: 8px;
  background-color: #0891b2;
  border-radius: 999px;
  flex-shrink: 0;
}

/* Packages */
.packages {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 900px) {
  .packages {
    grid-template-columns: repeat(3, 1fr);
  }
}

.package {
  background-color: #ffffff;
  border-radius: 20px;
  padding-top: 28px;
  padding-bottom: 28px;
  padding-left: 28px;
  padding-right: 28px;
  border-width: 1px;
  border-style: solid;
  border-color: #e2e8f0;
}

.package--highlight {
  background-color: #0f172a;
  border-color: #0f172a;
  color: #ffffff;
  box-shadow: 0 20px 40px -20px rgba(15, 23, 42, 0.3);
}

.package__label {
  font-size: 13px;
  font-weight: 700;
  color: #64748b;
  margin-bottom: 8px;
}

.package__label--light {
  font-size: 13px;
  font-weight: 700;
  color: #0891b2;
  margin-bottom: 8px;
}

.package__price {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 24px;
  color: #0f172a;
}

.package__price--light {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 24px;
  color: #ffffff;
}

.package__list {
  list-style-type: none;
  padding-top: 0;
  padding-right: 0;
  padding-bottom: 0;
  padding-left: 0;
  margin-top: 0;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.package__item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: #334155;
}

.package__item--light {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
}

.package__check {
  width: 20px;
  height: 20px;
  color: #0891b2;
  flex-shrink: 0;
  margin-top: 2px;
  font-weight: 900;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media (min-width: 1000px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
  }
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-info__title {
  font-size: 22px;
  font-weight: 700;
  color: #0f172a;
  margin-top: 0;
  margin-bottom: 20px;
}

.contact-info__row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  text-decoration-line: none;
  color: inherit;
}

.contact-info__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background-color: #ecfeff;
  color: #0891b2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-weight: 900;
}

.contact-info__label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #64748b;
  margin-bottom: 4px;
}

.contact-info__value {
  font-size: 17px;
  font-weight: 700;
  color: #0f172a;
  word-break: break-word;
}

.contact-info__sub {
  font-size: 12px;
  color: #64748b;
  margin-top: 2px;
}

.contact-form-card {
  background-color: #f5f8fb;
  border-radius: 20px;
  padding-top: 28px;
  padding-bottom: 28px;
  padding-left: 28px;
  padding-right: 28px;
}

.contact-form-card__title {
  font-size: 22px;
  font-weight: 700;
  color: #0f172a;
  margin-top: 0;
  margin-bottom: 20px;
}

.form-field {
  margin-bottom: 16px;
}

.form-field__label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #475569;
  margin-bottom: 6px;
}

.form-field__input {
  width: 100%;
  border-width: 1px;
  border-style: solid;
  border-color: #e2e8f0;
  background-color: #ffffff;
  border-radius: 10px;
  padding-top: 12px;
  padding-bottom: 12px;
  padding-left: 14px;
  padding-right: 14px;
  font-size: 15px;
  color: #0f172a;
  font-family: inherit;
  box-sizing: border-box;
  outline-style: none;
}

.form-field__input--textarea {
  width: 100%;
  border-width: 1px;
  border-style: solid;
  border-color: #e2e8f0;
  background-color: #ffffff;
  border-radius: 10px;
  padding-top: 12px;
  padding-bottom: 12px;
  padding-left: 14px;
  padding-right: 14px;
  font-size: 15px;
  color: #0f172a;
  font-family: inherit;
  box-sizing: border-box;
  outline-style: none;
  resize: vertical;
  min-height: 100px;
}

.form-field__error {
  color: #dc2626;
  font-size: 12px;
  margin-top: 6px;
}

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 12px;
  color: #475569;
  margin-bottom: 16px;
  cursor: pointer;
}

.form-consent__box {
  margin-top: 3px;
  flex-shrink: 0;
}

.form-consent__link {
  color: #0891b2;
  text-decoration-line: underline;
}

.form-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: #0891b2;
  color: #ffffff;
  font-weight: 700;
  font-size: 15px;
  padding-top: 14px;
  padding-bottom: 14px;
  padding-left: 26px;
  padding-right: 26px;
  border-radius: 12px;
  text-decoration-line: none;
  border-width: 0;
  cursor: pointer;
  font-family: inherit;
  width: 100%;
}

.form-success {
  background-color: #ecfeff;
  border-radius: 14px;
  padding-top: 28px;
  padding-bottom: 28px;
  padding-left: 24px;
  padding-right: 24px;
  text-align: center;
}

.form-success__title {
  font-size: 18px;
  font-weight: 700;
  color: #0f172a;
  margin-top: 12px;
  margin-bottom: 8px;
}

.form-success__text {
  color: #475569;
}

/* Map */
.map-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border-width: 1px;
  border-style: solid;
  border-color: #e2e8f0;
  box-shadow: 0 10px 30px -12px rgba(15, 23, 42, 0.15);
  background-color: #ffffff;
}

.map-frame {
  display: block;
  width: 100%;
  height: 380px;
  border-width: 0;
}

@media (min-width: 700px) {
  .map-frame {
    height: 500px;
  }
}

.map-open {
  position: absolute;
  right: 16px;
  bottom: 16px;
  background-color: rgba(255, 255, 255, 0.95);
  color: #0f172a;
  font-weight: 700;
  font-size: 13px;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 14px;
  padding-right: 14px;
  border-radius: 10px;
  text-decoration-line: none;
  box-shadow: 0 8px 20px -6px rgba(15, 23, 42, 0.2);
}

/* Legal doc */
.doc {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 56px;
  padding-bottom: 56px;
  padding-left: 20px;
  padding-right: 20px;
  color: #1e293b;
}

.doc__title {
  font-size: 32px;
  font-weight: 700;
  color: #0f172a;
  margin-top: 0;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.doc__meta {
  font-size: 14px;
  color: #64748b;
  margin-bottom: 32px;
}

.doc__section {
  margin-bottom: 24px;
}

.doc__h2 {
  font-size: 20px;
  font-weight: 700;
  color: #0f172a;
  margin-top: 0;
  margin-bottom: 12px;
}

.doc__p {
  margin-top: 0;
  margin-bottom: 12px;
  line-height: 1.65;
  color: #334155;
}

.doc__ul {
  padding-left: 24px;
  margin-top: 10px;
  margin-bottom: 10px;
  color: #334155;
  line-height: 1.7;
}

/* Page hero (subpage) */
.page-hero {
  background-color: #f5f8fb;
  padding-top: 56px;
  padding-bottom: 56px;
}

.page-hero__title {
  font-size: 32px;
  font-weight: 700;
  color: #0f172a;
  margin-top: 0;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  text-align: center;
}

.page-hero__text {
  color: #475569;
  font-size: 17px;
  line-height: 1.6;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0;
  margin-bottom: 0;
  text-align: center;
}

@media (min-width: 900px) {
  .page-hero__title {
    font-size: 48px;
    text-align: left;
  }
  .page-hero__text {
    text-align: left;
    margin-left: 0;
  }
}

/* Footer */
.footer {
  background-color: #0f172a;
  color: #cbd5e1;
  padding-top: 56px;
  padding-bottom: 24px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 700px) {
  .footer__grid {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
  }
}

.footer__brand {
  font-size: 22px;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 12px;
}

.footer__brand-accent {
  color: #0891b2;
}

.footer__about {
  font-size: 14px;
  line-height: 1.65;
  margin-top: 0;
  margin-bottom: 16px;
  color: #94a3b8;
}

.footer__title {
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0;
  margin-bottom: 16px;
}

.footer__list {
  list-style-type: none;
  padding-top: 0;
  padding-right: 0;
  padding-bottom: 0;
  padding-left: 0;
  margin-top: 0;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__link {
  color: #cbd5e1;
  text-decoration-line: none;
  font-size: 14px;
  background-color: transparent;
  border-width: 0;
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  cursor: pointer;
  font-family: inherit;
  text-align: left;
}

.footer__link--hover {
  color: #67e8f9;
}

.footer__bottom {
  margin-top: 40px;
  padding-top: 20px;
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 12px;
  color: #94a3b8;
}

@media (min-width: 700px) {
  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

/* Chat widget */
.chat-button {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 45;
  width: 60px;
  height: 60px;
  border-radius: 999px;
  background-color: #0891b2;
  color: #ffffff;
  border-width: 0;
  cursor: pointer;
  box-shadow: 0 12px 30px -8px rgba(8, 145, 178, 0.6);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  font-family: inherit;
}

.chat-button--hover {
  background-color: #0e7490;
}

.chat-panel {
  display: none;
  position: fixed;
  right: 20px;
  bottom: 90px;
  z-index: 45;
  width: 340px;
  max-width: calc(100vw - 40px);
  background-color: #ffffff;
  border-radius: 18px;
  box-shadow: 0 24px 50px -12px rgba(15, 23, 42, 0.3);
  overflow: hidden;
}

.chat-panel--open {
  display: block;
}

.chat-panel__head {
  background-color: #0f172a;
  color: #ffffff;
  padding-top: 16px;
  padding-bottom: 16px;
  padding-left: 18px;
  padding-right: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.chat-panel__avatar {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  object-fit: cover;
  flex-shrink: 0;
}

.chat-panel__title {
  font-weight: 700;
  font-size: 15px;
  color: #ffffff;
}

.chat-panel__status {
  font-size: 12px;
  color: #67e8f9;
  display: flex;
  align-items: center;
  gap: 6px;
}

.chat-panel__status-dot {
  width: 8px;
  height: 8px;
  background-color: #22c55e;
  border-radius: 999px;
}

.chat-panel__head-fill {
  flex-grow: 1;
}

.chat-panel__close {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border-width: 0;
  cursor: pointer;
  font-size: 18px;
  font-family: inherit;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.chat-panel__body {
  padding-top: 18px;
  padding-bottom: 18px;
  padding-left: 18px;
  padding-right: 18px;
  max-height: 320px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.chat-msg {
  background-color: #f1f5f9;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 14px;
  padding-right: 14px;
  border-radius: 14px;
  font-size: 14px;
  color: #0f172a;
  max-width: 85%;
  line-height: 1.5;
}

.chat-msg--me {
  background-color: #0891b2;
  color: #ffffff;
  align-self: flex-end;
}

.chat-panel__foot {
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: #e2e8f0;
  padding-top: 12px;
  padding-bottom: 12px;
  padding-left: 12px;
  padding-right: 12px;
  display: flex;
  gap: 8px;
}

.chat-input {
  flex-grow: 1;
  border-width: 1px;
  border-style: solid;
  border-color: #e2e8f0;
  border-radius: 10px;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 12px;
  padding-right: 12px;
  font-size: 14px;
  font-family: inherit;
  outline-style: none;
  color: #0f172a;
}

.chat-send {
  background-color: #0891b2;
  color: #ffffff;
  border-width: 0;
  border-radius: 10px;
  padding-left: 14px;
  padding-right: 14px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
}

/* Cookie banner */
.cookie {
  display: none;
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 50;
  background-color: #ffffff;
  border-radius: 18px;
  box-shadow: 0 24px 50px -12px rgba(15, 23, 42, 0.3);
  padding-top: 20px;
  padding-bottom: 20px;
  padding-left: 24px;
  padding-right: 24px;
  border-width: 1px;
  border-style: solid;
  border-color: #e2e8f0;
}

.cookie--open {
  display: block;
}

.cookie__inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 800px) {
  .cookie__inner {
    flex-direction: row;
    align-items: center;
    gap: 24px;
  }
}

.cookie__text {
  color: #334155;
  font-size: 14px;
  line-height: 1.6;
  flex-grow: 1;
  margin-top: 0;
  margin-bottom: 0;
}

.cookie__link {
  color: #0891b2;
  text-decoration-line: underline;
}

.cookie__btn {
  background-color: #0891b2;
  color: #ffffff;
  border-width: 0;
  padding-top: 12px;
  padding-bottom: 12px;
  padding-left: 20px;
  padding-right: 20px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  font-family: inherit;
  flex-shrink: 0;
}

/* View toggle */
.view {
  display: none;
}

.view--active {
  display: block;
}

/* Scroll-to-top */
.scroll-top {
  display: none;
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 40;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background-color: #0f172a;
  color: #ffffff;
  border-width: 0;
  font-size: 20px;
  cursor: pointer;
  font-family: inherit;
  box-shadow: 0 12px 20px -8px rgba(15, 23, 42, 0.4);
  align-items: center;
  justify-content: center;
}

.scroll-top--visible {
  display: inline-flex;
}
