:root {
  --bg: #fbfbfc;
  --white: #ffffff;
  --text: #333539;
  --muted: #797c7f;
  --muted-light: #d9d9d9;
  --dark: #303234;
  --accent: #e3fd5e;
  --light-btn: #f5f5f6;
  --lang-bg: #fafafa;
  --shadow: 0 12px 30px rgba(30, 32, 36, 0.08);
  --shadow-soft: 0 18px 50px rgba(30, 32, 36, 0.06);
  --radius-btn: 18px;
  --radius-card: 15px;
  --container: 1200px;
  --focus: #d99a59;
  --dark-hover: #27292b;
  --light-hover: #ececef;
  --accent-hover: #d9f34f;
}

* {
  box-sizing: border-box;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
}

img, svg {
  max-width: none;
  height: auto;
  display: block;
}

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

button, select {
  font: inherit;
}

:where(a, button, select, input, textarea):focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 4px;
}

.container {
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(30px) saturate(175%);
  -webkit-backdrop-filter: blur(30px) saturate(175%);
  display: flex;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 52px 0;
  transition: padding 0.22s ease, background-color 0.22s ease;
}

.site-header.is-scrolled {
  padding: 15px 0;
  background: rgba(255, 255, 255, 0.92);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.logo {
  width: 161px;
  flex: 0 0 auto;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 48px;
  margin-left: auto;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 17px;
  border-radius: 999px;
  font-size: 18px;
  line-height: 1;
  font-weight: 600;
  transition: background-color 0.18s ease, color 0.18s ease;
}

.nav-link:hover {
  background: var(--accent);
  color: var(--text);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 35px;
  border-radius: var(--radius-btn);
  background: var(--dark);
  color: var(--accent);
  font-size: 18px;
  font-weight: 700;
  box-shadow: 0 8px 18px rgba(48, 50, 52, 0.12);
  transition: background-color 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
}

.nav-cta:hover {
  background: var(--dark-hover);
  color: #f0ff88;
  box-shadow: 0 10px 24px rgba(48, 50, 52, 0.16);
}

.language-select {
  width: 56px;
  height: 46px;
  border: none;
  border-radius: 18px;
  background: var(--lang-bg);
  color: var(--text);
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  text-align-last: center;
  cursor: pointer;
  appearance: none;
  background-image: none;
  transition: background-color 0.18s ease;
}

.language-select:hover {
  background: var(--light-hover);
}

.language-select option {
  text-align: center;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 16px;
  background: var(--light-btn);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
}

.hero {
  padding: 38px 0 68px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 0px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 27px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--text);
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 36px;
}

.hero-title {
  margin: 0;
  font-size: clamp(56px, 6vw, 104px);
  line-height: 1.08;
  letter-spacing: -0.055em;
  font-weight: 800;
  max-width: 570px;
}

.hero-text {
  margin: 37px 0 48px;
  max-width: 465px;
  font-size: 21px;
  font-weight: 400;
  color: var(--text);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 35px;
  border-radius: var(--radius-btn);
  font-size: 17px;
  font-weight: 700;
  transition: background-color 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
}

.btn-dark {
  background: var(--dark);
  color: var(--accent);
  box-shadow: 0 10px 22px rgba(48, 50, 52, 0.12);
}

.btn-dark:hover {
  background: var(--dark-hover);
  color: #f0ff88;
  box-shadow: 0 12px 28px rgba(48, 50, 52, 0.16);
}

.btn-light {
  background: var(--light-btn);
  color: var(--text);
}

.btn-light:hover {
  background: var(--light-hover);
  color: #24262a;
}

.hero-visual {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  max-width: 100%;
}

.benefits {
  padding: 16px 0 80px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
}

.benefit-card {
  position: relative;
  min-height: 144px;
  padding: 49px 14px 24px 20px;
  border-radius: var(--radius-card);
  background: var(--white);
  box-shadow: var(--shadow);
}

.benefit-icon {
  position: absolute;
  top: -25px;
  left: 24px;
  width: 59px;
  height: 59px;
  border-radius: 24px;
  display: grid;
  place-items: center;
  background: var(--accent);
}

.benefit-icon img {
  width: 55px;
  height: 55px;
  max-width: none;
}

.benefit-title {
  margin: 10px 0 14px;
  font-size: 18px;
  line-height: 1.25;
  font-weight: 800;
}

.benefit-text {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  color: var(--text);
}

.summary {
  padding: 34px 0 93px;
}

.summary-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
  gap: 42px;
}

.section-title {
  margin: 0 0 45px;
  font-size: clamp(34px, 3.4vw, 42px);
  line-height: 1.1;
  letter-spacing: -0.04em;
  font-weight: 800;
  max-width: 490px;
}

.feature-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 17px;
  margin-left: 20px;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 18px;
  font-weight: 500;
}

.feature-list img {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.language-note {
  margin: 60px 0 0;
  max-width: 420px;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.45;
  color: var(--muted);
}

.summary-visual {
  display: flex;
  justify-content: flex-end;
}


.download {
  background: var(--accent);
  overflow: hidden;
}

.download-inner {
  min-height: 282px;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) 270px minmax(0, 0.92fr);
  align-items: center;
  gap: 24px;
}

.download-title {
  margin: 0 0 20px;
  font-size: clamp(32px, 3.2vw, 40px);
  line-height: 1.1;
  letter-spacing: -0.04em;
  font-weight: 800;
  max-width: 465px;
}

.download-text {
  margin: 0;
  max-width: 510px;
  font-size: 18px;
  font-weight: 400;
}

.croc {
  align-self: end;
  max-width: none;
  margin-bottom: -10px;
}

.store-title {
  margin: 0 0 20px;
  font-size: 21px;
  font-weight: 800;
}

.store-buttons {
  display: flex;
  align-items: flex-start;
  gap: 22px;
  flex-wrap: wrap;
}

.store-buttons img {
  width: 200px;
}

.site-footer {
  background: var(--white);
  padding: 68px 0 28px;
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr 1.4fr 0.35fr 1fr;
  gap: 58px;
  align-items: start;
}

.footer-logo {
  width: 161px;
}

.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 58px;
}

.footer-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 11px;
  align-content: start;
}

.footer-list a {
  font-size: 16px;
  font-weight: 500;
}

.footer-social img {
  width: 34px;
  height: 34px;
}

.footer-stores {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-stores img {
  width: 132px;
}

.footer-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 88px;
  color: var(--muted-light);
  font-size: 15px;
  font-weight: 500;
}

.footer-bottom p {
  margin: 0;
}

.footer-copy {
  text-align: right;
}

.footer-bottom a:hover,
.footer-list a:hover {
  text-decoration: underline;
}

.store-buttons a,
.footer-stores a,
.footer-social {
  transition: opacity 0.18s ease;
}

.store-buttons a:hover,
.footer-stores a:hover,
.footer-social:hover {
  opacity: 0.82;
}

@media (max-width: 1180px) {
  .benefits-grid {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 48px;
  }

  .footer-main {
    grid-template-columns: 1fr 1.2fr;
  }

  .footer-stores {
    justify-content: flex-start;
  }
}

@media (max-width: 980px) {
  .site-header {
    padding: 25px 0;
  }

  .site-header.is-scrolled {
    padding: 15px 0;
  }

  .menu-toggle {
    display: flex;
  }

  .main-nav {
    position: fixed;
    top: var(--mobile-menu-top, 96px);
    left: 0;
    right: 0;
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin: 0;
    padding: 20px 24px 28px;
    border-radius: 0 0 26px 26px;
    background: #ffffff;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
    text-align: center;
  }

  .main-nav.is-open {
    display: flex;
  }

  .nav-link, .nav-cta {
    justify-content: center;
    width: min(100%, 360px);
    min-height: 50px;
  }

  .language-select {
    width: min(100%, 360px);
    height: 50px;
    text-align: center;
    text-align-last: center;
  }

  .hero {
    padding-top: 42px;
  }

  .hero-grid,
  .summary-grid,
  .download-inner {
    grid-template-columns: 1fr;
  }

  .hero-visual,
  .summary-visual {
    justify-content: center;
  }

  .hero-title, .hero-text, .section-title {
    max-width: none;
  }

  .hero-title br{
    display: none;
  }

  .download-inner {
    padding: 58px 0 0;
    text-align: center;
  }

  .download-title, .download-text {
    max-width: none;
  }

  .croc {
    justify-self: center;
    order: 3;
    margin-top: 10px;
  }

  .download-stores {
    order: 2;
  }

  .store-buttons {
    justify-content: center;
  }
  img, svg {
  max-width: 90%;
}
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 32px, var(--container));
  }

  .logo, .footer-logo {
    width: 132px;
  }

  .hero-title {
    font-size: clamp(52px, 16vw, 72px);
    letter-spacing: -0.06em;
  }

  .hero-text {
    font-size: 18px;
  }

  .hero-actions {
    gap: 14px;
  }

  .btn {
    width: 100%;
  }

  .benefits {
    padding-bottom: 48px;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
    row-gap: 44px;
  }

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

.benefit-title {
  margin: 10px 0 14px;
  font-size: 22px;
}
  .summary {
    padding-bottom: 64px;
  }

  .feature-list li {
    font-size: 17px;
  }

  .language-note {
    margin-top: 38px;
  }

  .footer-main,
  .footer-links,
  .footer-bottom {
    grid-template-columns: 1fr;
  }

  .footer-main {
    gap: 36px;
  }

  .footer-bottom {
    margin-top: 54px;
  }

  .footer-copy {
    text-align: left;
  }
}

@media (max-width: 460px) {
  .hero-title {
    font-size: 48px;
  }

  .eyebrow {
    margin-bottom: 28px;
  }

  .download-title {
    font-size: 31px;
  }

  .store-buttons img {
    width: 154px;
  }

  .croc {
    width: 220px;
  }
}


/* About page */
.about-hero {
  padding: 72px 0 96px;
}

.about-hero-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: center;
  gap: 56px;
}

.about-hero-title {
  margin: 0;
  max-width: 600px;
  font-size: clamp(42px, 4.4vw, 56px);
  line-height: 1.1;
  letter-spacing: -0.045em;
  font-weight: 800;
}

.about-hero-text {
  margin: 40px 0 60px;
  max-width: 610px;
  font-size: 21px;
  line-height: 1.58;
  font-weight: 400;
}

.about-hero-visual {
  display: flex;
  justify-content: flex-end;
}

.about-hero-visual img {
  width: min(100%, 650px);
}

.about-story {
  padding: 6px 0 92px;
}

.about-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 86px;
  margin-bottom: 104px;
}

.about-row:last-child {
  margin-bottom: 0;
}

.about-row.reverse .about-copy {
  order: 2;
}

.about-row.reverse .about-visual {
  order: 1;
}

.about-copy h2 {
  margin: 0 0 24px;
  font-size: clamp(30px, 3.1vw, 36px);
  line-height: 1.15;
  letter-spacing: -0.035em;
  font-weight: 800;
}

.about-copy p {
  margin: 0;
  max-width: 520px;
  font-size: 18px;
  line-height: 1.72;
  font-weight: 400;
}

.about-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}




.about-lists {
  padding: 12px 0 76px;
}

.about-lists-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 38px;
}

.about-list-card {
  background: var(--white);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 34px 38px 38px;
}

.about-list-head {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
}

.about-list-head img {
  width: 62px;
  height: 62px;
  flex: 0 0 auto;
}

.about-list-head h2 {
  margin: 0;
  font-size: clamp(24px, 2.45vw, 30px);
  line-height: 1.15;
  letter-spacing: -0.03em;
  font-weight: 800;
}

.about-card-list {
  margin: 0;
  padding: 0 0 0 18px;
  list-style: none;
  display: grid;
  gap: 13px;
}

.about-card-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 18px;
  line-height: 1.35;
  font-weight: 500;
}

.about-card-list img {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  margin-top: 2px;
}

.about-feedback {
  padding: 24px 0 96px;
}

.about-feedback-inner {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 32px;
  align-items: start;
  max-width: 1200px;
}

.about-feedback-icon {
  width: 76px;
  height: 76px;
}

.about-feedback h2 {
  margin: 0 0 18px;
  font-size: clamp(30px, 3.1vw, 36px);
  line-height: 1.15;
  letter-spacing: -0.035em;
  font-weight: 800;
}

.about-feedback p {
  margin: 0 0 30px;
  max-width: 820px;
  font-size: 18px;
  line-height: 1.72;
}

@media (max-width: 980px) {
  .about-hero-grid,
  .about-row,
  .about-lists-grid {
    grid-template-columns: 1fr;
  }

  .about-row,
  .about-row.reverse {
    gap: 34px;
    margin-bottom: 72px;
  }

  .about-row.reverse .about-copy,
  .about-row.reverse .about-visual {
    order: initial;
  }

  .about-hero-visual {
    justify-content: center;
  }

  .about-copy p,
  .about-hero-text {
    max-width: none;
  }
}

@media (max-width: 760px) {
  .about-hero {
    padding: 46px 0 62px;
  }

  .about-story {
    padding-bottom: 64px;
  }

  .about-copy h2,
  .about-feedback h2 {
    font-size: 30px;
  }

  .about-list-card {
    padding: 28px 24px 30px;
  }

  .about-list-head {
    align-items: flex-start;
  }

  .about-list-head img {
    width: 54px;
    height: 54px;
  }

  .about-card-list li,
  .about-copy p,
  .about-feedback p {
    font-size: 16px;
  }

  .about-feedback-inner {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}


/* Support page */
.support-hero {
  padding: 72px 0 72px;
}

.support-hero-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 64px;
}

.support-title {
  margin: 0;
  font-size: clamp(42px, 4.4vw, 56px);
  line-height: 1.1;
  letter-spacing: -0.045em;
  font-weight: 800;
}

.support-intro {
  margin: 32px 0 42px;
  max-width: 590px;
  font-size: 18px;
  line-height: 1.76;
  font-weight: 500;
}

.support-hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}



.support-options {
  padding: 18px 0 96px;
}

.support-options-inner {
  max-width: 1200px;
  display: grid;
  gap: 28px;
}

.support-card {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 42px;
  align-items: start;
  background: var(--white);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 42px 52px;
}

.support-card-icon {
  width: 76px;
  height: 76px;
}

.support-card h2 {
  margin: 0 0 22px;
  font-size: 21px;
  line-height: 1.3;
  letter-spacing: -0.02em;
  font-weight: 800;
}

.support-card p {
  margin: 0 0 28px;
  font-size: 18px;
  line-height: 1.7;
  font-weight: 500;
}

.support-card p:last-child {
  margin-bottom: 0;
}

.btn-small {
  min-height: 43px;
  padding: 0 28px;
  font-size: 15px;
  border-radius: 14px;
}

.support-card-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
}

@media (max-width: 980px) {
  .support-hero-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .support-hero-visual {
    justify-content: center;
  }
}

@media (max-width: 760px) {
  .support-hero {
    padding: 46px 0 54px;
  }

  .support-options {
    padding-bottom: 64px;
  }

  .support-card {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 30px 24px;
  }

  .support-card-icon {
    width: 68px;
    height: 68px;
  }

  .support-card p,
  .support-intro {
    font-size: 16px;
  }

  .support-card-actions .btn-small,
  .support-card .btn-small {
    width: 100%;
  }
}


/* What's new page */
.news-page {
  padding: 72px 0 190px;
  min-height: 760px;
}

.news-inner {
  max-width: 1200px;
}

.news-title {
  margin: 0 0 46px;
  font-size: clamp(42px, 4.4vw, 56px);
  line-height: 1.1;
  letter-spacing: -0.045em;
  font-weight: 800;
}

.news-list {
  display: grid;
  gap: 30px;
}

.news-card {
  background: var(--white);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 39px 42px 42px;
}

.news-date {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 0 24px;
  border-radius: 16px;
  background: var(--accent);
  color: var(--text);
  font-size: 18px;
  line-height: 1;
  font-weight: 600;
  margin-bottom: 34px;
}

.news-card h2 {
  margin: 0 0 25px;
  font-size: 21px;
  line-height: 1.35;
  letter-spacing: -0.02em;
  font-weight: 800;
}

.news-card p {
  margin: 0;
  font-size: 18px;
  line-height: 1.72;
  font-weight: 500;
}

@media (max-width: 760px) {
  .news-page {
    padding: 46px 0 90px;
    min-height: auto;
  }

  .news-card {
    padding: 30px 24px 32px;
  }

  .news-date,
  .news-card p {
    font-size: 16px;
  }
}


/* Contact page */
.contact-page {
  padding: 72px 0 128px;
  min-height: 770px;
}

.contact-inner {
  max-width: 1200px;
}

.contact-title {
  margin: 0 0 42px;
  font-size: clamp(42px, 4.4vw, 56px);
  line-height: 1.1;
  letter-spacing: -0.045em;
  font-weight: 800;
}

.contact-intro {
  margin: 0 0 72px;
  max-width: 1180px;
  font-size: 18px;
  line-height: 1.72;
  font-weight: 500;
}

.contact-intro a {
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-form-card {
  position: relative;
  max-width: 850px;
  min-height: 380px;
  padding: 36px 40px 14px;
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.contact-croc {
  position: absolute;
  top: 0;
  right: 0;
  width: 150px;
  height: 191px;
  max-width: none;
  pointer-events: none;
  user-select: none;
}

.contact-textarea {
  width: 100%;
  min-height: 210px;
  padding: 0 185px 22px 0;
  border: 0;
  outline: none;
  resize: none;
  background: transparent;
  color: var(--text);
  font-size: 21px;
  line-height: 1.55;
  font-weight: 500;
}

.contact-textarea::placeholder {
  color: #989ca6;
  opacity: 1;
}

.contact-textarea:focus-visible {
  outline: none;
}

.contact-form-bottom {
  position: relative;
  z-index: 2;
}

.contact-privacy {
  margin: 22px 0 0;
  max-width: 760px;
  color: #3d4045;
  font-size: 11px;
  line-height: 1.45;
  font-weight: 500;
}

.contact-status {
  min-height: 20px;
  margin: 14px 0 0;
  padding: 9px 12px;
  border-radius: 10px;
  color: #3d4045;
  background: #f1f2f4;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
}

.contact-status:empty {
  padding: 0;
  background: transparent;
}

.contact-status.is-success {
  color: #245c2a;
  background: #e9f7e8;
}

.contact-status.is-error {
  color: #9f2d24;
  background: #fdeceb;
}

.contact-status.is-neutral {
  color: #3d4045;
  background: #f1f2f4;
}

.contact-hp {
  position: absolute;
  left: -10000px;
  opacity: 0;
  width: 1px;
  height: 1px;
  pointer-events: none;
}

@media (max-width: 760px) {
  .contact-page {
    padding: 46px 0 82px;
    min-height: auto;
  }

  .contact-title {
    margin-bottom: 28px;
  }

  .contact-intro {
    margin-bottom: 42px;
    font-size: 16px;
  }

  .contact-form-card {
    min-height: 430px;
    padding: 30px 24px 28px;
  }

  .contact-croc {
    width: 120px;
    height: auto;
  }

  .contact-textarea {
    min-height: 240px;
    padding-right: 130px;
    font-size: 18px;
  }

  .contact-form-card .btn {
    width: 100%;
  }
}

@media (max-width: 460px) {
  .contact-textarea {
    padding-right: 0;
    padding-top: 130px;
  }
}


/* FAQ page */
.faq-page {
  padding: 72px 0 120px;
  min-height: 900px;
}

.faq-container {
  max-width: 1200px;
}

.faq-title {
  margin: 0 0 42px;
  font-size: clamp(42px, 4.4vw, 56px);
  line-height: 1.08;
  letter-spacing: -0.045em;
  font-weight: 800;
}

.faq-groups {
  display: grid;
  gap: 50px;
}

.faq-category {
  margin: 0 0 28px;
  padding-left: 10px;
  font-size: clamp(24px, 2.4vw, 30px);
  line-height: 1.18;
  letter-spacing: -0.03em;
  font-weight: 800;
}

.faq-list {
  display: grid;
  gap: 16px;
}

.faq-item {
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: grid;
  grid-template-columns: 56px 1fr;
  align-items: center;
  gap: 20px;
  min-height: 90px;
  padding: 21px 34px 21px 21px;
  border: 0;
  background: transparent;
  color: var(--text);
  text-align: left;
  cursor: pointer;
}

.faq-number {
  width: 50px;
  min-width: 50px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 17px;
  background: var(--accent);
  font-size: 19px;
  line-height: 1;
  font-weight: 600;
}

.faq-question-text {
  font-size: 21px;
  line-height: 1.35;
  font-weight: 800;
}

.faq-answer {
  padding: 0 44px 39px 97px;
}

.faq-answer p {
  margin: 0;
  color: #3d4045;
  font-size: 18px;
  line-height: 1.72;
  font-weight: 500;
}

.faq-answer a {
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 760px) {
  .faq-page {
    padding: 46px 0 120px;
    min-height: auto;
  }

  .faq-title {
    margin-bottom: 32px;
  }

  .faq-groups {
    gap: 42px;
  }

  .faq-question {
    grid-template-columns: 48px 1fr;
    gap: 16px;
    min-height: 82px;
    padding: 19px 20px 19px 19px;
  }

  .faq-number {
    width: 44px;
    min-width: 44px;
    height: 44px;
    border-radius: 15px;
    font-size: 17px;
  }

  .faq-question-text {
    font-size: 18px;
  }

  .faq-answer {
    padding: 0 22px 31px 83px;
  }

  .faq-answer p {
    font-size: 16px;
  }
}

@media (max-width: 460px) {
  .faq-question {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .faq-answer {
    padding: 0 20px 26px;
  }
}


/* Notifications page */
.notifications-page {
  padding: 72px 0 92px;
}

.notifications-inner {
  max-width: 1200px;
}

.notifications-hero {
  display: grid;
  grid-template-columns: 1fr 325px;
  align-items: start;
  gap: 72px;
  margin-bottom: 64px;
}

.notifications-title {
  margin: 0 0 34px;
  font-size: clamp(42px, 4.4vw, 56px);
  line-height: 1.08;
  letter-spacing: -0.045em;
  font-weight: 800;
}

.notifications-intro {
  margin: 0;
  max-width: 650px;
  font-size: 18px;
  line-height: 1.72;
  font-weight: 500;
}

.notifications-croc {
  max-width: none;
  margin-top: 56px;
}

.notification-section {
  margin-top: 58px;
}

.notification-section-title {
  margin: 0 0 28px 15px;
  font-size: clamp(24px, 2.4vw, 30px);
  line-height: 1.18;
  letter-spacing: -0.03em;
  font-weight: 800;
}

.notification-card {
  background: var(--white);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 37px 40px 40px;
}

.notification-card p {
  margin: 0 0 30px;
  color: #3d4045;
  font-size: 18px;
  line-height: 1.72;
  font-weight: 500;
}

.notification-card p:last-child {
  margin-bottom: 0;
}

.notification-check-list {
  display: grid;
  gap: 13px;
  margin: 0 0 32px;
  padding: 0;
  list-style: none;
}

.notification-check-list li {
  position: relative;
  min-height: 25px;
  padding-left: 38px;
  color: #3d4045;
  font-size: 18px;
  line-height: 1.55;
  font-weight: 500;
}

.notification-check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 1px;
  width: 22px;
  height: 22px;
  border: 2px solid var(--text);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  font-size: 14px;
  line-height: 1;
  font-weight: 800;
}

@media (max-width: 980px) {
  .notifications-hero {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .notifications-croc {
    margin-top: 0;
    justify-self: center;
  }
}

@media (max-width: 760px) {
  .notifications-page {
    padding: 46px 0 74px;
  }

  .notifications-hero {
    margin-bottom: 42px;
  }

  .notifications-title {
    margin-bottom: 24px;
  }

  .notifications-intro,
  .notification-card p,
  .notification-check-list li {
    font-size: 16px;
  }

  .notification-section {
    margin-top: 42px;
  }

  .notification-card {
    padding: 30px 24px 32px;
  }

  .notifications-croc {
    width: min(100%, 325px);
    height: auto;
  }
}


/* Privacy page */
.privacy-page {
  padding: 72px 0 92px;
}

.privacy-inner {
  max-width: 1200px;
}

.privacy-title {
  margin: 0 0 28px;
  font-size: clamp(42px, 4.4vw, 56px);
  line-height: 1.08;
  letter-spacing: -0.045em;
  font-weight: 800;
}

.privacy-lead {
  margin: 0;
  max-width: 880px;
  color: #3d4045;
  font-size: 18px;
  line-height: 1.72;
  font-weight: 500;
}

.privacy-updated {
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
  font-weight: 600;
}

.privacy-card {
  margin-top: 54px;
  background: var(--white);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 38px 42px 42px;
}

.privacy-section + .privacy-section {
  margin-top: 38px;
  padding-top: 34px;
  border-top: 1px solid #eceef2;
}

.privacy-section h2 {
  margin: 0 0 14px;
  color: var(--text);
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.22;
  letter-spacing: -0.03em;
  font-weight: 800;
}

.privacy-section p {
  margin: 0;
  color: #3d4045;
  font-size: 18px;
  line-height: 1.72;
  font-weight: 500;
}

.contact-privacy a {
  color: inherit;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

@media (max-width: 760px) {
  .privacy-page {
    padding: 46px 0 74px;
  }

  .privacy-title {
    margin-bottom: 22px;
  }

  .privacy-lead,
  .privacy-section p {
    font-size: 16px;
  }

  .privacy-card {
    margin-top: 38px;
    padding: 30px 24px 32px;
  }

  .privacy-section + .privacy-section {
    margin-top: 30px;
    padding-top: 28px;
  }
}


/* iOS availability: coming soon */
.store-coming-soon {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  flex: 0 0 auto;
  cursor: default;
}

.store-coming-soon img {
  filter: grayscale(1);
  opacity: 0.42;
}

.store-coming-soon-label {
  margin-top: 6px;
  color: #777b82;
  font-size: 11px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: .015em;
  text-align: center;
  white-space: nowrap;
}


/* Display headings: Unbounded SemiBold */
.hero-title,
.section-title,
.download-title,
.about-hero-title,
.about-copy h2,
.about-feedback h2,
.faq-title,
.faq-category,
.contact-title,
.news-title,
.support-title,
.privacy-title,
.notifications-title {
  font-family: "Unbounded", "Manrope", system-ui, sans-serif;
  font-weight: 600;
  text-wrap: balance;
  overflow-wrap: normal;
  hyphens: none;
}

.hero-title {
  font-size: clamp(48px, 5.2vw, 88px);
  line-height: 1.04;
  letter-spacing: -0.035em;
  max-width: 620px;
}

.section-title {
  font-size: clamp(30px, 3vw, 36px);
  line-height: 1.14;
  letter-spacing: -0.025em;
  max-width: 540px;
}

.download-title {
  font-size: clamp(28px, 2.75vw, 34px);
  line-height: 1.14;
  letter-spacing: -0.025em;
  max-width: 520px;
}

.about-hero-title,
.faq-title,
.contact-title,
.news-title,
.support-title,
.privacy-title,
.notifications-title {
  font-size: clamp(36px, 3.8vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.about-hero-title {
  max-width: 650px;
}

.about-copy h2,
.about-feedback h2 {
  font-size: clamp(25px, 2.55vw, 31px);
  line-height: 1.15;
  letter-spacing: -0.025em;
}

.faq-category {
  font-size: clamp(21px, 2.05vw, 26px);
  line-height: 1.18;
  letter-spacing: -0.02em;
}

/* Slight reductions for the longest localized headings. */
html:lang(de) .notifications-title,
html:lang(fr) .notifications-title,
html:lang(es) .notifications-title,
html:lang(sv) .notifications-title,
html:lang(no) .notifications-title,
html:lang(uk) .notifications-title {
  font-size: clamp(33px, 3.45vw, 44px);
}

html:lang(fr) .download-title,
html:lang(it) .download-title {
  font-size: clamp(26px, 2.5vw, 32px);
}

html:lang(de) .about-feedback h2,
html:lang(sv) .about-feedback h2 {
  font-size: clamp(24px, 2.35vw, 29px);
}
