/* =========================================================
   ран — стили сайта
   Макет: 1440 (контейнер 1300, поля 70, колонка 310, гэп 20)
   Все размеры заданы в rem: 1rem = 10px на макете 1440
   ========================================================= */

/* ---------- ШРИФТЫ ----------
   Фирменные Benzin и SF Pro Display поставляются локально в WOFF2.
   Unbounded и Inter остаются запасными, если основной файл не загрузился.
--------------------------------- */

@font-face{font-family:'Benzin';src:url('../fonts/Benzin-Medium.woff2') format('woff2');font-weight:500;font-style:normal;font-display:swap}
@font-face{font-family:'Benzin';src:url('../fonts/Benzin-Semibold.woff2') format('woff2');font-weight:600;font-style:normal;font-display:swap}
@font-face{font-family:'Benzin';src:url('../fonts/Benzin-Bold.woff2') format('woff2');font-weight:700;font-style:normal;font-display:swap}

@font-face{font-family:'SF Pro Display';src:url('../fonts/SFProDisplay-Regular.woff2') format('woff2');font-weight:400;font-style:normal;font-display:swap}
@font-face{font-family:'SF Pro Display';src:url('../fonts/SFProDisplay-Medium.woff2') format('woff2');font-weight:500;font-style:normal;font-display:swap}
@font-face{font-family:'SF Pro Display';src:url('../fonts/SFProDisplay-Semibold.woff2') format('woff2');font-weight:600;font-style:normal;font-display:swap}

/* — запасные (свободные лицензии OFL) — */
@font-face{font-family:'BenzinFallback';src:url('../fonts/unbounded-500-cyrillic.woff2') format('woff2');font-weight:500;font-display:swap;size-adjust:86%;unicode-range:U+0301,U+0400-045F,U+0490-0491,U+04B0-04B1,U+2116}
@font-face{font-family:'BenzinFallback';src:url('../fonts/unbounded-500-latin.woff2') format('woff2');font-weight:500;font-display:swap;size-adjust:86%}
@font-face{font-family:'BenzinFallback';src:url('../fonts/unbounded-600-cyrillic.woff2') format('woff2');font-weight:600;font-display:swap;size-adjust:86%;unicode-range:U+0301,U+0400-045F,U+0490-0491,U+04B0-04B1,U+2116}
@font-face{font-family:'BenzinFallback';src:url('../fonts/unbounded-600-latin.woff2') format('woff2');font-weight:600;font-display:swap;size-adjust:86%}
@font-face{font-family:'BenzinFallback';src:url('../fonts/unbounded-700-cyrillic.woff2') format('woff2');font-weight:700;font-display:swap;size-adjust:86%;unicode-range:U+0301,U+0400-045F,U+0490-0491,U+04B0-04B1,U+2116}
@font-face{font-family:'BenzinFallback';src:url('../fonts/unbounded-700-latin.woff2') format('woff2');font-weight:700;font-display:swap;size-adjust:86%}

@font-face{font-family:'SFFallback';src:url('../fonts/inter-400-cyrillic.woff2') format('woff2');font-weight:400;font-display:swap;unicode-range:U+0301,U+0400-045F,U+0490-0491,U+04B0-04B1,U+2116}
@font-face{font-family:'SFFallback';src:url('../fonts/inter-400-latin.woff2') format('woff2');font-weight:400;font-display:swap}
@font-face{font-family:'SFFallback';src:url('../fonts/inter-500-cyrillic.woff2') format('woff2');font-weight:500;font-display:swap;unicode-range:U+0301,U+0400-045F,U+0490-0491,U+04B0-04B1,U+2116}
@font-face{font-family:'SFFallback';src:url('../fonts/inter-500-latin.woff2') format('woff2');font-weight:500;font-display:swap}
@font-face{font-family:'SFFallback';src:url('../fonts/inter-600-cyrillic.woff2') format('woff2');font-weight:600;font-display:swap;unicode-range:U+0301,U+0400-045F,U+0490-0491,U+04B0-04B1,U+2116}
@font-face{font-family:'SFFallback';src:url('../fonts/inter-600-latin.woff2') format('woff2');font-weight:600;font-display:swap}
@font-face{font-family:'SFFallback';src:url('../fonts/inter-700-cyrillic.woff2') format('woff2');font-weight:700;font-display:swap;unicode-range:U+0301,U+0400-045F,U+0490-0491,U+04B0-04B1,U+2116}
@font-face{font-family:'SFFallback';src:url('../fonts/inter-700-latin.woff2') format('woff2');font-weight:700;font-display:swap}

/* ---------- ПЕРЕМЕННЫЕ ---------- */
:root{
  --orange:#FC4C01;
  --orange-hover:#FF6120;
  --orange-light:#FF611E;
  --black:#000;
  --white:#fff;
  --muted:#4A4A4A;

  --font-display:'Benzin','BenzinFallback','Arial Black',sans-serif;
  --font-text:'SF Pro Display',-apple-system,BlinkMacSystemFont,'SFFallback','Segoe UI',Roboto,sans-serif;

  --container:130rem;   /* 1300px */
  --gap:2rem;           /* 20px  */
  --col:31rem;          /* 310px */
  --ease:cubic-bezier(.22,.61,.36,1);
}

/* ---------- БАЗА ---------- */
*,*::before,*::after{box-sizing:border-box}

html{font-size:10px;scroll-behavior:smooth;-webkit-text-size-adjust:100%}
@media (max-width:1439px) and (min-width:1024px){html{font-size:.6944vw}}

body{
  margin:0;
  background:var(--black);
  color:var(--white);
  font-family:var(--font-text);
  font-size:1.6rem;
  line-height:1.45;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  overflow-x:hidden;
}

img{display:block;max-width:100%;height:auto}
a{color:inherit;text-decoration:none}
h1,h2,h3,p{margin:0}
button{font:inherit;color:inherit;background:none;border:0;cursor:pointer}

h1,h2,h3{text-wrap:balance}
p{text-wrap:pretty}

.container{width:100%;max-width:var(--container);margin:0 auto;padding:0 2rem}
@media (min-width:1024px){.container{padding:0}}

/* появление блоков при скролле */
.reveal{opacity:0;transform:translateY(2.4rem);transition:opacity .7s var(--ease),transform .7s var(--ease)}
.reveal.is-visible{opacity:1;transform:none}
@media (prefers-reduced-motion:reduce){
  html{scroll-behavior:auto}
  .reveal{opacity:1;transform:none;transition:none}
}

/* ---------- КНОПКИ ---------- */
.btn{
  display:inline-flex;align-items:center;justify-content:center;
  height:4.6rem;padding:0 3.2rem;
  border-radius:10rem;
  font-family:var(--font-text);
  font-size:1.6rem;font-weight:500;line-height:1;
  white-space:nowrap;
  transition:background-color .25s var(--ease),color .25s var(--ease),transform .25s var(--ease);
}
.btn:active{transform:scale(.97)}

.btn--orange{background:var(--orange);color:var(--white)}
.btn--orange:hover{background:var(--orange-hover)}

.btn--ghost{
  height:5.4rem;padding:0 3.1rem;
  border:1px solid rgba(255,255,255,.85);
  color:var(--white);
}
.btn--ghost:hover{background:var(--white);color:var(--black)}

/* стрелка в кружке */
.arrow{
  position:absolute;top:1.4rem;right:1.5rem;
  width:3.8rem;height:3.8rem;border-radius:50%;
  display:grid;place-items:center;
  transition:transform .3s var(--ease);
}
.arrow::before{
  content:'';width:1.4rem;height:1.4rem;
  background:currentColor;
  -webkit-mask:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6.4 17.6 17.6 6.4M8.2 6.4h9.4v9.4' fill='none' stroke='%23000' stroke-width='2.6' stroke-linecap='square'/%3E%3C/svg%3E") center/contain no-repeat;
  mask:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6.4 17.6 17.6 6.4M8.2 6.4h9.4v9.4' fill='none' stroke='%23000' stroke-width='2.6' stroke-linecap='square'/%3E%3C/svg%3E") center/contain no-repeat;
}
.arrow--light{background:var(--white);color:var(--orange)}
.arrow--dark{background:var(--black);color:var(--white)}
.arrow:hover{transform:translate(.3rem,-.3rem)}

/* =========================================================
   ШАПКА
   ========================================================= */
.header{
  position:absolute;top:0;left:0;right:0;z-index:50;
  padding:3.3rem 0;
}
.header__inner{display:flex;align-items:center;justify-content:space-between}

.logo{display:flex;align-items:center;height:2.4rem}
.logo__mark{display:none}
.logo__word{
  display:block;width:10.8rem;height:2.4rem;
  background:url('../img/logo-lockup-white.svg') left center/contain no-repeat;
}

.nav{display:flex;align-items:center;gap:3.6rem}
.nav a{
  font-size:1.6rem;font-weight:400;
  position:relative;padding-bottom:.2rem;
}
.nav a::after{
  content:'';position:absolute;left:0;right:0;bottom:0;height:1px;
  background:currentColor;transform:scaleX(0);transform-origin:left;
  transition:transform .3s var(--ease);
}
.nav a:hover::after{transform:scaleX(1)}

.header__cta{margin-left:1rem}

.burger{display:none;width:3.2rem;height:2.4rem;flex-direction:column;justify-content:space-between}
.burger span{display:block;height:2px;background:#fff;border-radius:2px;transition:transform .3s var(--ease),opacity .2s}
.burger[aria-expanded="true"] span:nth-child(1){transform:translateY(1.1rem) rotate(45deg)}
.burger[aria-expanded="true"] span:nth-child(2){opacity:0}
.burger[aria-expanded="true"] span:nth-child(3){transform:translateY(-1.1rem) rotate(-45deg)}

.mobile-menu{
  position:fixed;inset:0;z-index:49;
  background:#0a0a0a;
  display:flex;flex-direction:column;align-items:flex-start;justify-content:center;gap:2.4rem;
  padding:0 2.4rem;
}
.mobile-menu[hidden]{display:none}
.mobile-menu nav{display:flex;flex-direction:column;gap:2rem}
.mobile-menu a{font-size:2.4rem}

/* =========================================================
   ГЕРОЙ
   ========================================================= */
.hero{
  position:relative;
  padding-top:10.1rem;      /* верх баннера на макете = 101px */
  padding-bottom:16rem;
  background:
    radial-gradient(120rem 62rem at -6rem 10rem, #FF5A0E 0%, rgba(214,64,0,.92) 26%, rgba(120,36,0,.55) 52%, rgba(0,0,0,0) 78%),
    radial-gradient(70rem 46rem at 46rem -6rem, rgba(255,110,40,.42) 0%, rgba(0,0,0,0) 70%),
    var(--black);
}

.hero__banner{
  position:relative;
  height:24rem;                 /* 101 → 341 */
  border-radius:2.4rem;
  padding:0 2.8rem 2.2rem;
  display:flex;align-items:flex-end;justify-content:space-between;
  background:linear-gradient(103deg,rgba(255,255,255,.13) 0%,rgba(255,255,255,.06) 42%,rgba(255,255,255,.02) 100%);
  overflow:hidden;
}
.hero__title{
  font-family:var(--font-display);
  font-weight:700;
  font-size:9.7rem;
  line-height:.72;
  letter-spacing:-.01em;
}
.hero__tagline{
  font-size:1.3rem;line-height:1.45;font-weight:400;
  text-align:right;padding-bottom:.4rem;
}

.hero__grid{
  display:grid;
  grid-template-columns:var(--col) var(--col) 1fr;
  gap:var(--gap);
  margin-top:var(--gap);
}

.hero-card{
  position:relative;
  min-height:48rem;
  border-radius:1.6rem;
  padding:0 2.6rem 4.9rem;
  display:flex;flex-direction:column;justify-content:flex-end;
}
.hero-card--orange{background:var(--orange);color:var(--white)}
.hero-card--white{background:var(--white);color:var(--black)}

.hero-card__title{
  font-family:var(--font-display);
  font-weight:700;font-size:1.7rem;line-height:1.1;
  text-transform:uppercase;letter-spacing:.005em;
  margin-bottom:6.4rem;
}
.hero-card__text{font-size:1.35rem;line-height:1.4;font-weight:400;max-width:24rem}

.hero__side{display:flex;flex-direction:column}
.hero__photo{width:100%;height:24rem;object-fit:cover;border-radius:1.6rem}
.hero__lead{
  margin-top:6.2rem;
  font-size:1.8rem;line-height:1.42;font-weight:400;
}
.hero__cta{align-self:flex-end;margin-top:auto}

/* =========================================================
   ДЛЯ КОГО / ПРОБЛЕМЫ
   ========================================================= */
.problems{background:var(--black);padding:9rem 0 24rem}

.problems__title{
  font-family:var(--font-display);
  font-weight:700;font-size:4.3rem;line-height:.93;
  text-transform:uppercase;letter-spacing:-.005em;
  margin-bottom:4.7rem;
}

.problems__grid{
  display:grid;grid-template-columns:repeat(3,var(--col));
  gap:var(--gap);
  justify-content:end;
  margin-top:36.6rem;
}
.prob{border-top:2px solid var(--white);padding-top:2.4rem}
.prob__title{
  font-family:var(--font-display);
  font-weight:700;font-size:1.65rem;line-height:1.1;
  text-transform:uppercase;
  margin-bottom:3.6rem;
}
.prob__text{font-size:1.35rem;line-height:1.42;font-weight:400}

/* =========================================================
   БЕЛАЯ СЕКЦИЯ / О НАС
   ========================================================= */
.habit{background:var(--white);color:var(--black);padding:20.3rem 0 20rem}

.habit__title{
  font-family:var(--font-display);
  font-weight:700;font-size:5rem;line-height:.88;
  text-transform:uppercase;letter-spacing:-.01em;
  text-align:center;padding-right:6rem;
  margin-bottom:13.3rem;
}
.habit__line{display:block}
.habit__line--accent{color:var(--orange);text-align:right}

.collage{
  display:grid;
  grid-template-columns:31.2rem 20.2rem 53.2rem 20.2rem;
  gap:1.8rem;
  align-items:start;
}
.collage__col{display:flex;flex-direction:column}
.collage img{width:100%;border-radius:1.2rem;object-fit:cover}

.collage__intro{font-size:1.4rem;line-height:1.45;margin-bottom:1.2rem;max-width:28rem}
.collage__intro b{font-family:var(--font-display);font-weight:700;font-size:1.6rem}
.collage__caption{font-size:1.4rem;line-height:1.45;margin-top:1.3rem;font-weight:400}

.collage__col--1 img{height:21.1rem}
.collage__col--2{padding-top:8.6rem}
.collage__col--2 img{height:27.9rem}
.collage__col--3 img{height:73.9rem}
.collage__col--3 .collage__caption{padding-left:.2rem}
.collage__col--4 img{height:25.7rem}

/* =========================================================
   ЧТО ВНУТРИ / КРУПНЫЙ ТЕКСТ
   ========================================================= */
.inside{background:var(--black);padding:26rem 0 0}
.inside__text{
  font-family:var(--font-display);
  font-weight:700;font-size:3.6rem;line-height:1.28;
  color:var(--muted);
  max-width:127rem;
  letter-spacing:-.005em;
}
.inside__text b{font-weight:700;color:var(--white)}

/* =========================================================
   ЦИФРЫ
   ========================================================= */
.stats{background:var(--black);padding:34.3rem 0 45rem}
.stats__head{display:flex;align-items:flex-start;justify-content:space-between;gap:4rem}
.stats__title{
  font-family:var(--font-display);
  font-weight:700;font-size:2.45rem;line-height:1.06;
  text-transform:uppercase;
  max-width:96rem;
}
.stats__head .btn{flex:none;margin-top:.6rem}

.stats__grid{
  display:grid;grid-template-columns:repeat(3,var(--col));
  gap:var(--gap);
  margin-top:9.4rem;
}
.stat{border-top:2px solid var(--white);padding-top:2.1rem}
.stat__num{
  font-family:var(--font-display);
  font-weight:700;font-size:2.5rem;line-height:1.1;
  margin-bottom:2.8rem;
}
.stat__cap{font-size:1.3rem;line-height:1.4;font-weight:400}

/* =========================================================
   ПРИЛОЖЕНИЕ
   ========================================================= */
.app{
  position:relative;
  margin-top:-5.6rem;
  padding:21.4rem 0 0;
  border-radius:50% 50% 0 0 / 5.6rem 5.6rem 0 0;
  background:linear-gradient(180deg,#E84600 0%,#C43B00 22%,#8B2A00 42%,#4E1700 62%,#1C0800 80%,#000 100%) top center/100% 81rem no-repeat,var(--black);
  overflow:hidden;
}
.app__inner{display:grid;grid-template-columns:64rem 1fr;align-items:start}
.app__phone{padding-left:14.8rem}
.app__phone img{width:25.2rem;filter:drop-shadow(0 3rem 6rem rgba(0,0,0,.35))}

.app__content{padding-top:6.2rem;max-width:66rem}
.app__title{
  font-family:var(--font-display);
  font-weight:700;font-size:3rem;line-height:1.1;
  margin-bottom:1.1rem;
}
.app__subtitle{
  font-family:var(--font-display);
  font-weight:700;font-size:2.4rem;line-height:1.1;
  margin:7.7rem 0 2.2rem;
}
.app__text{font-size:1.5rem;line-height:1.72;font-weight:400;max-width:53.5rem}
.app__text .muted{color:rgba(255,255,255,.5)}
.app__cta{margin-top:6.2rem}
.app{padding-bottom:49.6rem}

/* =========================================================
   МАНИФЕСТ
   ========================================================= */
.manifesto{
  position:relative;
  background:var(--black);
  height:80.3rem;
  overflow:hidden;
  line-height:0;
}
.manifesto__img{
  position:absolute;
  left:50%;top:-13%;
  transform:translateX(-50%);
  width:129.6%;max-width:none;height:auto;
}

/* =========================================================
   FAQ
   ========================================================= */
.faq{background:var(--black);padding:25.2rem 0 24.6rem}
.faq__title{
  font-family:var(--font-display);
  font-weight:700;font-size:4rem;line-height:1.1;
  margin-bottom:15.9rem;
}
.faq__list{margin-left:auto;width:53rem}

.faq-item{border-bottom:2px solid rgba(255,255,255,.9)}
.faq-item__q{
  width:100%;
  display:flex;align-items:center;justify-content:space-between;gap:2rem;
  padding:1.7rem 0 1.6rem;
  text-align:left;
  font-size:1.5rem;font-weight:400;line-height:1.3;
  transition:opacity .2s}
.faq-item__q:hover{opacity:.72}

.arrow-icon{
  flex:none;width:1.6rem;height:1.6rem;background:currentColor;
  -webkit-mask:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6.4 17.6 17.6 6.4M8.2 6.4h9.4v9.4' fill='none' stroke='%23000' stroke-width='2.8' stroke-linecap='square'/%3E%3C/svg%3E") center/contain no-repeat;
  mask:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6.4 17.6 17.6 6.4M8.2 6.4h9.4v9.4' fill='none' stroke='%23000' stroke-width='2.8' stroke-linecap='square'/%3E%3C/svg%3E") center/contain no-repeat;
  transition:transform .3s var(--ease);
}
.faq-item__q[aria-expanded="true"] .arrow-icon{transform:rotate(135deg)}

.faq-item__a{padding:0 0 1.8rem}
.faq-item__a[hidden]{display:none}
.faq-item__a p{font-size:1.4rem;line-height:1.55;color:rgba(255,255,255,.66);max-width:46rem}

/* =========================================================
   ФУТЕР
   ========================================================= */
.footer{
  position:relative;
  background:var(--orange) url('../img/footer-pattern.png') right top/auto 100% no-repeat;
  padding:8.3rem 0 2.9rem;
  min-height:38rem;
}
.footer__inner{position:relative;z-index:1}
.footer__logo{
  font-family:var(--font-display);
  font-weight:700;font-size:9.7rem;line-height:.72;
  letter-spacing:-.01em;color:var(--white);
  margin-bottom:8.5rem;
}
.footer__nav{display:flex;flex-direction:column;gap:.9rem}
.footer__nav a{font-size:1.5rem;font-weight:400;width:fit-content}
.footer__nav a:hover{text-decoration:underline}
.footer__legal{
  position:absolute;right:0;bottom:0;
  display:flex;flex-wrap:wrap;justify-content:flex-end;gap:.9rem 2rem;
  max-width:62rem;
}
.footer__legal a{font-size:1.3rem;color:rgba(255,255,255,.78)}
.footer__legal a:hover{color:var(--white);text-decoration:underline}

/* =========================================================
   ПЛАНШЕТ / МОБИЛЬНЫЕ
   ========================================================= */
@media (max-width:1023px){
  .container{max-width:72rem;padding:0 2.4rem}

  .nav,.header__cta{display:none}
  .logo{min-height:4.4rem}
  .burger{display:flex;width:4.4rem;height:4.4rem;padding:.9rem .6rem}
  .arrow{width:4.4rem;height:4.4rem}
  .header{padding:2rem 0}

  .hero{padding-top:8.4rem;padding-bottom:7.2rem}
  .hero__banner{height:auto;min-height:0;flex-direction:column;align-items:flex-start;justify-content:flex-start;gap:2.8rem;padding:3.2rem 2.4rem 3rem}
  .hero__title{font-size:7.2rem;line-height:.82}
  .hero__tagline{max-width:34rem;padding-bottom:0;font-size:1.6rem;line-height:1.45;text-align:left}
  .hero__grid{grid-template-columns:1fr;gap:1.4rem}
  .hero-card{min-height:0;padding:7.2rem 2.4rem 3rem}
  .hero__tagline br,.hero__lead br{display:none}
  .hero-card__title{margin-bottom:1.6rem}
  .hero-card__text{max-width:52rem;font-size:1.5rem}
  .hero__photo{height:22rem}
  .hero__lead{margin-top:2.4rem;font-size:1.7rem}
  .hero__cta{align-self:flex-start;margin-top:2.8rem}

  .problems{padding:7.2rem 0}
  .problems__title{font-size:3.4rem}
  .problems__grid{grid-template-columns:1fr;gap:4.8rem;margin-top:5.6rem;justify-content:stretch}
  .prob__title{margin-bottom:1.4rem}
  .prob__text{font-size:1.5rem}

  .habit{padding:7rem 0}
  .habit__title{font-size:3.2rem;padding-right:0;text-align:left;margin-bottom:4rem}
  .habit__line--accent{text-align:left}
  .collage{grid-template-columns:1fr 1fr;gap:1.6rem}
  .collage__col--2{padding-top:0}
  .collage__col--3{grid-column:1/-1}
  .collage__col--1 img,.collage__col--2 img,.collage__col--4 img{height:24rem}
  .collage__col--3 img{height:46rem}
  .collage__intro{max-width:none;font-size:1.5rem}
  .collage__caption{font-size:1.5rem}

  .inside{padding:7.2rem 0 0}
  .inside__text{font-size:2.2rem;line-height:1.28}

  .stats{padding:8rem 0 10rem}
  .stats__head{flex-direction:column;gap:3.2rem}
  .stats__title{font-size:2rem;line-height:1.12;max-width:62rem}
  .stats__grid{grid-template-columns:1fr;gap:4.8rem;margin-top:5.6rem}
  .stat__num{margin-bottom:1.2rem}
  .stat__cap{font-size:1.5rem}

  .app{margin-top:-3rem;padding:8rem 0 10rem;border-radius:50% 50% 0 0/3rem 3rem 0 0}
  .app__inner{grid-template-columns:1fr;gap:4rem;justify-items:center}
  .app__phone{padding-left:0}
  .app__phone img{width:22rem}
  .app__content{padding-top:0;max-width:none}
  .app__title{font-size:2.6rem}
  .app__subtitle{margin:5rem 0 1.6rem;font-size:2.2rem}
  .app__text{font-size:1.55rem;max-width:none;line-height:1.6}
  .app__cta{margin-top:4rem}

  .faq{padding:8rem 0}
  .faq__title{font-size:3rem;margin-bottom:4rem}
  .faq__list{width:100%;margin-left:0}
  .faq-item__q{font-size:1.6rem}
  .faq-item__a p{font-size:1.5rem;max-width:none}

  .manifesto{height:auto}
  .manifesto__img{position:static;transform:none;width:100%;top:auto}
  .footer{padding:6rem 0 5rem;min-height:0;background-size:cover}
  .footer__logo{font-size:6rem;margin-bottom:4rem}
  .footer__nav a{font-size:1.6rem}
  .footer__legal{position:static;justify-content:flex-start;margin-top:3rem;max-width:50rem}
}

@media (max-width:600px){
  .container{padding-left:2rem;padding-right:2rem}
  .header{padding:1.8rem 0}
  .hero{padding-top:8.2rem;padding-bottom:6.4rem}
  .hero__banner{gap:3rem;padding:2.8rem 2.4rem 2.8rem}
  .hero__title{font-size:5.2rem;line-height:.84}
  .hero__tagline{max-width:30rem;font-size:1.55rem;line-height:1.42}
  .hero__grid{gap:1.2rem;margin-top:1.2rem}
  .hero-card{padding:6.8rem 2.4rem 2.8rem}
  .hero-card__title{font-size:1.75rem;line-height:1.08}
  .hero-card__text{font-size:1.5rem;line-height:1.48}
  .hero__photo{height:20rem}
  .hero__lead{font-size:1.6rem;line-height:1.5}

  .problems{padding:6.4rem 0}
  .problems__title{font-size:2.55rem;line-height:1.04}
  .problems__title br{display:none}
  .problems__grid{gap:4rem;margin-top:5rem}

  .habit{padding:6.4rem 0}
  .habit__title{font-size:2.35rem;line-height:1.06;margin-bottom:3.6rem}
  .collage{grid-template-columns:1fr}
  .collage__col--3 img{height:38rem}
  .inside{padding-top:6.4rem}
  .inside__text{font-size:1.75rem;line-height:1.32}
  .stats{padding:7.2rem 0 9rem}
  .stats__title{font-size:1.75rem;line-height:1.14}
  .stats__grid{gap:4rem;margin-top:5rem}
  .app{padding-top:7.2rem;padding-bottom:8.4rem}
  .app__title{font-size:2.2rem;line-height:1.12}
  .app__subtitle{margin-top:4.4rem;font-size:1.9rem}
  .faq{padding:7.2rem 0}
  .faq__title{font-size:2.2rem;line-height:1.1;margin-bottom:3.2rem}
  .footer{padding:5.6rem 0 4rem}
  .footer__logo{font-size:5.2rem;margin-bottom:3.6rem}
  .footer__legal{gap:1rem 1.6rem}
}

@media (max-width:359px){
  .container{padding-left:1.8rem;padding-right:1.8rem}
  .hero__banner{padding-left:2.2rem;padding-right:2.2rem}
  .hero__title{font-size:4.7rem}
  .hero__tagline{font-size:1.45rem}
  .hero-card{padding-left:2.2rem;padding-right:2.2rem}
  .problems__title,.habit__title{font-size:2.2rem}
  .inside__text{font-size:1.65rem}
  .stats__title{font-size:1.65rem}
}
