@font-face {
  font-family: 'Ubuntu';
  src: url('../fonts/Ubuntu-R.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Ubuntu';
  src: url('../fonts/Ubuntu-M.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Ubuntu';
  src: url('../fonts/Ubuntu-B.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Ubuntu';
  src: url('../fonts/Ubuntu-RI.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

:root {
  --primary: #2B59FF;
  --primary-light: #EAF0FF;
  --primary-dark: #1F3DB8;
  --primary-deep: #0F172A;
  --accent: #14B8A6;
  --info: #0EA5E9;
  --backdrop-lilac: #F8FAFD;
  --backdrop-warm: #F5F8FC;
  --backdrop-sky: #EFF4FB;
  --backdrop-mist: #F9FBFD;
  --surface: #FFFFFF;
  --surface-raised: #F7FAFC;
  --surface-tint: #F1F5F9;
  --border: #D7DFEA;
  --card-border: #E6ECF3;
  --text-primary: #0F172A;
  --text-secondary: #66758A;
  --text-muted: #8895A7;
  --shadow: 0 22px 70px rgba(11, 21, 38, .12);
  --shadow-soft: 0 14px 36px rgba(11, 21, 38, .08);
  --radius: 8px;
  --radius-sm: 6px;
  --max-w: 1180px;
  --ease: cubic-bezier(.4, 0, .2, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  width: 100%;
  max-width: 100%;
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--text-primary);
  background:
    linear-gradient(180deg, var(--backdrop-lilac) 0%, var(--backdrop-warm) 30%, var(--backdrop-sky) 74%, var(--backdrop-mist) 100%);
  font-family: 'Ubuntu', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

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

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

.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.section__intro {
  max-width: 680px;
}

.section__label {
  margin-bottom: 14px;
  color: var(--primary-dark);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section__label--center {
  text-align: center;
}

.section__title {
  max-width: 720px;
  margin-bottom: 18px;
  color: var(--text-primary);
  font-size: 44px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.12;
}

.section__desc {
  max-width: 570px;
  margin-bottom: 44px;
  color: var(--text-secondary);
  font-size: 17px;
  line-height: 1.7;
}

.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: 72px;
  display: flex;
  align-items: center;
  background: rgba(248, 250, 253, .76);
  transition: background .25s var(--ease), box-shadow .25s var(--ease);
}

.nav--scrolled {
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 1px 0 rgba(215, 223, 234, .78);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}

.nav__logo {
  display: inline-flex;
  align-items: center;
  color: var(--primary-dark);
  font-family: 'Ubuntu', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
  width: 76px;
  height: 36px;
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.language-toggle {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 3px;
  background: rgba(255, 255, 255, .74);
  border: 1px solid rgba(215, 223, 234, .9);
  border-radius: var(--radius-sm);
}

.language-toggle__button {
  min-width: 32px;
  min-height: 28px;
  padding: 4px 7px;
  color: var(--text-secondary);
  background: transparent;
  border: 0;
  border-radius: 4px;
  cursor: pointer;
  font-family: inherit;
  font-size: 12px;
  font-weight: 700;
  transition: background .2s var(--ease), color .2s var(--ease), box-shadow .2s var(--ease);
}

.language-toggle__button--active {
  color: var(--primary-dark);
  background: var(--primary-light);
  box-shadow: 0 1px 0 rgba(43, 89, 255, .08);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 34px;
  list-style: none;
}

.nav__links a {
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 600;
  transition: color .2s var(--ease);
}

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

.nav__cta {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 16px;
  color: #fff;
  background: var(--text-primary);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 700;
  transition: transform .2s var(--ease), background .2s var(--ease), box-shadow .2s var(--ease);
}

.nav__cta:hover {
  background: var(--primary-dark);
  box-shadow: 0 10px 28px rgba(43, 89, 255, .18);
  transform: translateY(-1px);
}

.nav__burger {
  position: relative;
  z-index: 101;
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.nav__burger span {
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: opacity .2s var(--ease), transform .2s var(--ease);
}

.nav__burger--open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav__burger--open span:nth-child(2) {
  opacity: 0;
}

.nav__burger--open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.hero {
  position: relative;
  min-height: 760px;
  padding: 148px 0 96px;
  overflow: hidden;
}

.hero__backdrop {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero__backdrop::before,
.hero__backdrop::after {
  position: absolute;
  content: '';
  transform: skewY(-8deg);
  transform-origin: left center;
}

.hero__backdrop::before {
  top: 118px;
  left: -10vw;
  width: 120vw;
  height: 230px;
  background:
    linear-gradient(90deg, rgba(43, 89, 255, .16), rgba(20, 184, 166, .16), rgba(14, 165, 233, .12));
}

.hero__backdrop::after {
  top: 294px;
  right: -16vw;
  width: 72vw;
  height: 150px;
  background: linear-gradient(90deg, rgba(241, 245, 249, .08), rgba(43, 89, 255, .12), rgba(14, 165, 233, .14));
}

.hero__content {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(420px, 1.05fr);
  align-items: center;
  gap: 64px;
}

.hero__copy {
  max-width: 620px;
}

.hero__title {
  margin-bottom: 24px;
  color: var(--text-primary);
  font-size: 64px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.03;
}

.hero__subtitle {
  max-width: 560px;
  margin-bottom: 34px;
  color: var(--text-secondary);
  font-size: 19px;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.hero__proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 30px;
  color: var(--text-secondary);
  font-size: 13px;
  font-weight: 600;
}

.hero__proof span {
  position: relative;
  padding-left: 18px;
}

.hero__proof span::before {
  position: absolute;
  top: 8px;
  left: 0;
  width: 7px;
  height: 7px;
  content: '';
  background: var(--accent);
  border-radius: 50%;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 20px;
  border: 0;
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: transform .2s var(--ease), background .2s var(--ease), color .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease);
}

.btn--hero,
.btn--primary {
  color: #fff;
  background: var(--primary);
  box-shadow: 0 14px 30px rgba(43, 89, 255, .2);
}

.btn--hero:hover,
.btn--primary:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}

.btn--hero-ghost,
.btn--outline {
  color: var(--text-primary);
  background: rgba(255, 255, 255, .78);
  border: 1px solid rgba(215, 223, 234, .92);
}

.btn--hero-ghost:hover,
.btn--outline:hover {
  border-color: rgba(43, 89, 255, .28);
  color: var(--primary-dark);
  box-shadow: 0 12px 28px rgba(11, 21, 38, .08);
  transform: translateY(-1px);
}

.hero__visual {
  position: relative;
  min-height: 520px;
}

.product-shell {
  position: absolute;
  top: 24px;
  right: 0;
  width: 520px;
  overflow: hidden;
  background: rgba(255, 255, 255, .88);
  border: 1px solid rgba(230, 236, 243, .92);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.product-shell__topbar {
  display: flex;
  gap: 7px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--card-border);
  background: rgba(247, 250, 252, .74);
}

.product-shell__topbar span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #CBD5E1;
}

.product-shell__topbar span:first-child {
  background: #EF4444;
}

.product-shell__topbar span:nth-child(2) {
  background: #F59E0B;
}

.product-shell__topbar span:nth-child(3) {
  background: #16A34A;
}

.product-shell__content {
  display: grid;
  grid-template-columns: 178px 1fr;
  gap: 16px;
  padding: 18px;
}

.metric-panel {
  min-height: 210px;
  padding: 18px;
  color: #fff;
  background:
    linear-gradient(145deg, var(--primary), var(--primary-dark) 58%, var(--accent));
  border-radius: var(--radius);
}

.metric-panel__label,
.metric-panel small {
  display: block;
  color: rgba(255, 255, 255, .78);
  font-size: 12px;
  font-weight: 600;
}

.metric-panel strong {
  display: block;
  margin: 42px 0 8px;
  font-size: 58px;
  line-height: 1;
}

.service-list {
  padding: 16px;
  background: var(--surface-raised);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
}

.service-list__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  font-size: 13px;
  font-weight: 700;
}

.service-list__header strong {
  color: var(--primary-dark);
}

.service-row {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  padding: 12px 0;
  border-top: 1px solid var(--card-border);
}

.service-row__icon {
  width: 34px;
  height: 34px;
  background: var(--primary-light);
  border-radius: var(--radius-sm);
}

.service-row__icon--teal {
  background: rgba(20, 184, 166, .16);
}

.service-row__icon--sky {
  background: rgba(14, 165, 233, .16);
}

.service-row strong,
.phone-preview strong,
.floating-card strong,
.providers__schedule strong {
  display: block;
  color: var(--text-primary);
  font-size: 13px;
  line-height: 1.25;
}

.service-row small,
.phone-preview small,
.providers__schedule small {
  display: block;
  color: var(--text-muted);
  font-size: 11px;
  line-height: 1.35;
}

.service-row b {
  color: var(--text-primary);
  font-size: 13px;
}

.phone-preview {
  position: absolute;
  right: 332px;
  bottom: 0;
  width: 214px;
  padding: 10px;
  background: var(--text-primary);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.phone-preview__speaker {
  width: 58px;
  height: 5px;
  margin: 4px auto 10px;
  background: rgba(255, 255, 255, .22);
  border-radius: 999px;
}

.phone-preview__screen {
  min-height: 376px;
  padding: 16px;
  background:
    linear-gradient(180deg, var(--backdrop-lilac), var(--backdrop-sky));
  border-radius: 18px;
}

.phone-preview__header,
.phone-preview__booking {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.phone-preview__header {
  margin-bottom: 22px;
  color: var(--text-primary);
  font-size: 13px;
  font-weight: 700;
}

.phone-preview__header b {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  color: var(--primary-dark);
  background: var(--surface);
  border-radius: 50%;
  font-size: 11px;
}

.phone-preview__search {
  margin-bottom: 16px;
  padding: 12px;
  color: var(--text-muted);
  background: var(--surface);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  font-size: 12px;
}

.phone-preview__booking {
  margin-bottom: 18px;
  padding: 12px;
  background: rgba(255, 255, 255, .84);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
}

.phone-preview__avatar {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  background: linear-gradient(135deg, var(--accent), var(--info));
  border-radius: 50%;
}

.phone-preview__booking b {
  color: var(--primary-dark);
  font-size: 12px;
}

.phone-preview__progress {
  height: 8px;
  margin: 112px 0 14px;
  overflow: hidden;
  background: rgba(43, 89, 255, .12);
  border-radius: 999px;
}

.phone-preview__progress span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: inherit;
}

.phone-preview__cta {
  padding: 11px;
  color: #fff;
  background: var(--primary);
  border-radius: var(--radius);
  font-size: 12px;
  font-weight: 700;
  text-align: center;
}

.floating-card {
  position: absolute;
  min-width: 178px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, .92);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.floating-card span {
  display: block;
  margin-bottom: 3px;
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 600;
}

.floating-card--pay {
  right: 24px;
  bottom: 74px;
}

.floating-card--chat {
  top: 340px;
  left: 18px;
}

.trust,
.features,
.providers,
.download,
.contact,
.footer {
  position: relative;
}

.trust {
  padding: 44px 0 86px;
}

.trust__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  background: var(--card-border);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  box-shadow: 0 14px 44px rgba(11, 21, 38, .06);
}

.trust__card {
  min-height: 210px;
  padding: 28px;
  background: rgba(255, 255, 255, .82);
}

.trust__card-icon,
.feature-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  color: var(--primary);
  background: var(--primary-light);
  border-radius: var(--radius);
}

.trust__card-value {
  margin-bottom: 8px;
  color: var(--text-primary);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
}

.trust__card-label {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.55;
}

.features {
  padding: 96px 0;
  overflow: hidden;
  background: rgba(255, 255, 255, .48);
}

.features::before {
  position: absolute;
  top: 0;
  left: -8vw;
  width: 116vw;
  height: 100%;
  content: '';
  background: linear-gradient(100deg, rgba(241, 245, 249, .62), rgba(234, 240, 255, .5), rgba(239, 244, 251, .62));
  transform: skewY(-4deg);
  transform-origin: top left;
}

.features > .container {
  position: relative;
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.feature-card {
  min-height: 250px;
  padding: 30px;
  background: rgba(255, 255, 255, .86);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  box-shadow: 0 12px 32px rgba(11, 21, 38, .05);
  transition: transform .22s var(--ease), box-shadow .22s var(--ease), border-color .22s var(--ease);
}

.feature-card:hover {
  border-color: rgba(43, 89, 255, .2);
  box-shadow: var(--shadow-soft);
  transform: translateY(-3px);
}

.feature-card h3 {
  margin-bottom: 10px;
  color: var(--text-primary);
  font-size: 18px;
  font-weight: 700;
}

.feature-card p {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.65;
}

.providers {
  padding: 104px 0;
  overflow: hidden;
}

.providers > .container {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(360px, .8fr);
  align-items: center;
  gap: 74px;
}

.providers__text {
  max-width: 540px;
  margin-bottom: 30px;
  color: var(--text-secondary);
  font-size: 17px;
  line-height: 1.7;
}

.providers__list {
  display: grid;
  gap: 14px;
  margin-bottom: 34px;
  list-style: none;
}

.providers__list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-primary);
  font-size: 15px;
  font-weight: 500;
}

.providers__check {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  color: var(--accent);
  background: rgba(20, 184, 166, .12);
  border-radius: 50%;
}

.providers__visual {
  position: relative;
}

.providers__visual::before {
  position: absolute;
  inset: -42px -36px auto auto;
  width: 290px;
  height: 180px;
  content: '';
  background: linear-gradient(115deg, rgba(43, 89, 255, .14), rgba(20, 184, 166, .12));
  border-radius: var(--radius);
  transform: skewY(-8deg);
}

.providers__card {
  position: relative;
  max-width: 430px;
  padding: 28px;
  background: rgba(255, 255, 255, .88);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.providers__card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 26px;
}

.providers__card-avatar {
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 50%;
}

.providers__card-name {
  color: var(--text-primary);
  font-size: 15px;
  font-weight: 700;
}

.providers__card-role {
  color: var(--text-muted);
  font-size: 13px;
}

.providers__card-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 18px;
}

.providers__stat {
  padding: 14px 10px;
  background: var(--surface-raised);
  border-radius: var(--radius);
}

.providers__stat-value {
  display: block;
  color: var(--text-primary);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.15;
}

.providers__stat-label {
  display: block;
  margin-top: 5px;
  color: var(--text-muted);
  font-size: 11px;
  line-height: 1.35;
}

.providers__card-earnings {
  margin-bottom: 14px;
  padding: 18px;
  background: var(--text-primary);
  border-radius: var(--radius);
}

.providers__card-earnings-label {
  margin-bottom: 4px;
  color: rgba(255, 255, 255, .66);
  font-size: 12px;
}

.providers__card-earnings-value {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.15;
}

.providers__schedule {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 14px;
  background: var(--surface-raised);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
}

.providers__schedule span {
  width: 36px;
  height: 36px;
  background: rgba(14, 165, 233, .14);
  border-radius: var(--radius-sm);
}

.download {
  padding: 96px 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, .56), rgba(234, 240, 255, .45));
}

.download__inner {
  max-width: 650px;
  margin: 0 auto;
  text-align: center;
}

.download__title {
  margin-bottom: 16px;
  color: var(--text-primary);
  font-size: 42px;
  font-weight: 700;
  line-height: 1.12;
}

.download__text {
  max-width: 520px;
  margin: 0 auto 34px;
  color: var(--text-secondary);
  font-size: 17px;
  line-height: 1.7;
}

.download__buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  min-width: 192px;
  padding: 12px 18px;
  color: var(--text-primary);
  background: rgba(255, 255, 255, .9);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  box-shadow: 0 10px 26px rgba(11, 21, 38, .07);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease);
}

.store-badge:hover {
  border-color: rgba(43, 89, 255, .24);
  box-shadow: var(--shadow-soft);
  transform: translateY(-2px);
}

.store-badge__icon {
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
}

.store-badge__text {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.store-badge__text span {
  color: var(--text-muted);
  font-size: 11px;
  line-height: 1.2;
}

.store-badge__text strong {
  color: var(--text-primary);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.2;
}

.contact {
  padding: 78px 0;
  background: rgba(255, 255, 255, .74);
  border-top: 1px solid var(--card-border);
}

.contact__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}

.contact__inner .section__title {
  margin-bottom: 8px;
}

.contact__text {
  max-width: 430px;
  color: var(--text-secondary);
  font-size: 16px;
}

.footer {
  padding: 58px 0;
  background: var(--backdrop-mist);
  border-top: 1px solid var(--card-border);
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
}

.footer__brand {
  max-width: 280px;
}

.footer__logo {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--primary-dark);
  font-family: 'Ubuntu', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
}

.footer__copy {
  color: var(--text-muted);
  font-size: 13px;
}

.footer__links {
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
}

.footer__col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__col h4 {
  margin-bottom: 2px;
  color: var(--text-primary);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.footer__col a {
  color: var(--text-secondary);
  font-size: 14px;
  transition: color .2s var(--ease);
}

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

@media (max-width: 1080px) {
  .hero__content {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .hero__copy {
    max-width: 760px;
  }

  .hero__visual {
    min-height: 500px;
  }

  .product-shell {
    left: 160px;
    right: auto;
  }

  .phone-preview {
    left: 0;
    right: auto;
  }

  .floating-card--chat {
    left: 84px;
  }

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

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

  .providers > .container {
    grid-template-columns: 1fr;
    gap: 56px;
  }
}

@media (max-width: 780px) {
  .container {
    padding: 0 20px;
  }

  .section__title {
    font-size: 34px;
  }

  .nav__links {
    position: fixed;
    top: 0;
    right: 0;
    width: min(82vw, 320px);
    max-width: 100vw;
    height: 100vh;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    padding: 92px 30px 30px;
    background: rgba(255, 255, 255, .96);
    box-shadow: -16px 0 50px rgba(11, 21, 38, .12);
    transform: translateX(calc(100% + 24px));
    transition: transform .25s var(--ease);
  }

  .nav__links--open {
    transform: translateX(0);
  }

  .nav__links a {
    color: var(--text-primary);
    font-size: 16px;
  }

  .nav__cta {
    display: none;
  }

  .nav__actions {
    margin-left: auto;
  }

  .nav__burger {
    display: flex;
  }

  .hero {
    min-height: auto;
    padding: 124px 0 72px;
  }

  .hero__title {
    font-size: 44px;
  }

  .hero__subtitle {
    font-size: 17px;
  }

  .hero__visual {
    display: grid;
    gap: 20px;
    justify-items: center;
    min-height: auto;
  }

  .product-shell {
    position: relative;
    top: auto;
    left: auto;
    order: 2;
    width: 100%;
  }

  .product-shell__content {
    grid-template-columns: 1fr;
  }

  .metric-panel {
    min-height: 150px;
  }

  .metric-panel strong {
    margin: 24px 0 8px;
    font-size: 46px;
  }

  .phone-preview {
    position: relative;
    top: auto;
    left: auto;
    bottom: auto;
    order: 1;
    transform: none;
    width: 206px;
  }

  .floating-card {
    display: none;
  }

  .trust__grid,
  .features__grid {
    grid-template-columns: 1fr;
  }

  .trust__card,
  .feature-card {
    min-height: auto;
  }

  .providers__card {
    max-width: none;
  }

  .providers__visual::before {
    right: 0;
    width: min(290px, calc(100vw - 40px));
  }

  .contact__inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer__inner {
    flex-direction: column;
    gap: 34px;
  }
}

@media (max-width: 520px) {
  .container {
    padding: 0 16px;
  }

  .hero__title {
    font-size: 38px;
    line-height: 1.08;
  }

  .hero__actions,
  .download__buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .hero__actions .btn,
  .store-badge {
    width: 100%;
  }

  .hero__proof {
    flex-direction: column;
    gap: 8px;
  }

  .phone-preview {
    width: 198px;
  }

  .providers__card-stats {
    grid-template-columns: 1fr;
  }

  .download__title {
    font-size: 34px;
  }

  .footer__links {
    gap: 36px;
  }
}
