@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: #0d2235;
  background: radial-gradient(circle at top center, rgba(134, 215, 47, 0.08), transparent 24%), radial-gradient(circle at left top, rgba(30, 182, 255, 0.06), transparent 22%), linear-gradient(180deg, #fdfefd 0%, #f7fbf8 100%);
}

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

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

main {
  overflow: clip;
}

.container {
  width: min(100% - 2rem, 1280px);
  margin: 0 auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 2rem;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  background: rgba(143, 220, 37, 0.1);
  border: 1px solid rgba(143, 220, 37, 0.18);
  color: #69be12;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow--light {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.22);
  color: #ffffff;
}

.inner-hero {
  padding: 4.8rem 0;
  background: linear-gradient(180deg, rgba(243, 248, 244, 0.9), rgba(255, 255, 255, 0.4));
}

.inner-hero h1 {
  margin: 0.7rem 0 0;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.inner-hero p,
.site-footer__text,
.feature-card p,
.soft-card p,
.step-card p,
.pricing-card p {
  color: #365063;
  line-height: 1.75;
}

.feature-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card,
.soft-card,
.step-card,
.pricing-card {
  padding: 1.8rem;
}

.pricing-grid,
.contact-card,
.split-section {
  display: grid;
  gap: 1.25rem;
}

.pricing-grid,
.contact-card {
  grid-template-columns: minmax(0, 420px);
  justify-content: center;
}

.split-section {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (max-width: 1024px) {
  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .split-section {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 720px) {
  .inner-hero {
    padding: 4rem 0;
  }
  .feature-grid,
  .pricing-grid,
  .contact-card {
    grid-template-columns: 1fr;
  }
}
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.btn::after {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 999px;
  font-size: 0.8rem;
  flex: 0 0 auto;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--primary {
  color: #ffffff;
  background: linear-gradient(135deg, #8fdc25 0%, #1eb6ff 100%);
  box-shadow: 0 20px 40px rgba(30, 182, 255, 0.22);
}

.btn--primary::after {
  content: "›";
  background: rgba(255, 255, 255, 0.2);
}

.btn--secondary {
  color: #ffffff;
  background: #0d2235;
}

.btn--ghost {
  color: #0d2235;
  background: rgba(255, 255, 255, 0.82);
  border-color: rgba(13, 34, 53, 0.1);
}

.btn--light {
  color: #0d2235;
  background: #ffffff;
  box-shadow: 0 18px 40px rgba(13, 34, 53, 0.14);
}

.btn--light::after {
  content: "›";
  background: rgba(13, 34, 53, 0.08);
}

.btn--link {
  min-height: auto;
  padding: 0;
  border: 0;
  color: #0d2235;
  background: transparent;
  box-shadow: none;
  font-weight: 700;
}

.btn--link::after {
  content: "›";
  color: #1eb6ff;
  background: rgba(30, 182, 255, 0.12);
}

.home-card,
.feature-card,
.soft-card,
.step-card,
.pricing-card {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(13, 34, 53, 0.06);
  border-radius: 28px;
  box-shadow: 0 18px 50px rgba(13, 34, 53, 0.06);
}

.home-card {
  padding: 1.6rem;
  text-align: center;
}
.home-card img {
  width: 48px;
  height: auto;
}

.home-card h3,
.feature-card h3,
.step-card h3 {
  margin: 0 0 0.7rem;
  font-size: 1.2rem;
}

.home-card p,
.feature-card p,
.step-card p,
.pricing-card p,
.soft-card p {
  margin: 0;
  color: #365063;
  line-height: 1.7;
}

.home-card--feature,
.home-card--soft,
.home-card--testimonial {
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.home-card--feature:hover,
.home-card--soft:hover,
.home-card--testimonial:hover {
  transform: translateY(-4px);
  border-color: rgba(30, 182, 255, 0.14);
  box-shadow: 0 28px 60px rgba(13, 34, 53, 0.1);
}

.home-card--feature .home-card__icon {
  width: 5rem;
  height: 5rem;
}
.home-card--feature img {
  width: 128px;
}

.home-card__icon {
  display: inline-grid;
  place-items: center;
  width: 4rem;
  height: 4rem;
  margin-bottom: 1.2rem;
  border-radius: 50%;
  font-size: 1.5rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
  padding: 0.3rem;
}

.home-card__icon--green {
  background: linear-gradient(180deg, rgba(134, 215, 47, 0.18), rgba(134, 215, 47, 0.08));
  color: #63b90d;
}

.home-card__icon--blue {
  background: linear-gradient(180deg, rgba(30, 182, 255, 0.16), rgba(30, 182, 255, 0.08));
  color: #1eb6ff;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  padding: 1.1rem 0;
  backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, 0.74);
  border-bottom: 1px solid transparent;
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.site-logo__image {
  width: 64px;
  height: auto;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(13, 34, 53, 0.1);
  box-shadow: 0 10px 30px rgba(13, 34, 53, 0.06);
}

.site-header__inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  position: relative;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  margin-right: auto;
  font-weight: 800;
  font-size: 1.1rem;
}

.site-logo__mark {
  position: relative;
  display: inline-grid;
  align-content: center;
  width: 2.9rem;
  height: 2.9rem;
  padding: 0.55rem;
  border-radius: 18px;
  background: linear-gradient(135deg, #8fdc25, #1eb6ff);
  box-shadow: 0 14px 28px rgba(30, 182, 255, 0.18);
}

.site-logo__line {
  display: block;
  height: 0.24rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
}

.site-logo__line + .site-logo__line {
  margin-top: 0.3rem;
  width: 70%;
}

.site-logo__leaf {
  position: absolute;
  right: 0.45rem;
  bottom: 0.42rem;
  width: 0.72rem;
  height: 0.92rem;
  border-radius: 100% 0 100% 0;
  background: rgba(255, 255, 255, 0.95);
  transform: rotate(28deg);
}

.site-logo__text {
  font-size: 1.85rem;
  letter-spacing: -0.06em;
}

.site-logo__word--accent {
  color: #1eb6ff;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.main-nav a {
  color: rgba(13, 34, 53, 0.74);
  font-weight: 700;
  font-size: 0.95rem;
  transition: color 180ms ease, opacity 180ms ease;
}

.main-nav a:hover,
.main-nav a.is-active {
  color: #0d2235;
}

.main-nav__cta {
  display: none;
}

.nav-toggle {
  display: none;
  width: 3rem;
  height: 3rem;
  border: 0;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.8);
  padding: 0.8rem;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 4px 0;
  border-radius: 99px;
  background: #0d2235;
}

@media (max-width: 960px) {
  .nav-toggle {
    display: inline-block;
    margin-left: auto;
  }
  .site-header__cta {
    display: none;
  }
  .main-nav {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 1rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0.8rem;
    padding: 1rem;
    border: 1px solid rgba(13, 34, 53, 0.1);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 20px 50px rgba(13, 34, 53, 0.08);
  }
  .main-nav__cta {
    display: flex;
    padding-top: 0.35rem;
  }
  .main-nav a {
    padding: 0.2rem 0;
  }
  .main-nav.is-open {
    display: flex;
  }
}
.site-footer {
  padding: 2rem 0 2rem;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 0.9fr;
  gap: 2rem;
  padding: 1.4rem 0 2rem;
}

.site-footer h3 {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.site-footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer__links li + li {
  margin-top: 0.7rem;
}

.site-footer__links a {
  color: #365063;
  transition: color 180ms ease;
}

.site-footer__links a:hover {
  color: #0d2235;
}

.site-footer__social-list {
  display: flex;
  gap: 0.75rem;
}

.site-footer__social-list a {
  display: inline-grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(13, 34, 53, 0.08);
  color: #0d2235;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(13, 34, 53, 0.1);
  color: #365063;
  font-size: 0.95rem;
}

@media (max-width: 980px) {
  .site-footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 720px) {
  .site-footer__grid,
  .site-footer__bottom {
    display: grid;
    grid-template-columns: 1fr;
  }
}
.home-hero,
.home-section {
  position: relative;
}

.home-hero {
  padding: 3rem 0 4.5rem;
  padding-bottom: 0;
}

.home-hero__grid,
.home-mental,
.home-how,
.home-cta {
  display: grid;
  gap: 2rem;
}

.home-hero__grid,
.home-mental,
.home-how {
  grid-template-columns: minmax(0, 1fr);
}

.home-title {
  margin: 0;
  font-size: 2.9rem;
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.home-title span {
  display: block;
}

.home-title__gradient,
.home-text-gradient {
  background: linear-gradient(135deg, #86d72f 0%, #1eb6ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.home-hero__text {
  max-width: 36rem;
  margin: 1.7rem 0 0;
  color: #365063;
  font-size: 1.12rem;
  line-height: 1.8;
}

.home-hero__actions {
  display: flex;
  gap: 1rem;
  margin: 2rem 0 2.1rem;
}
.home-hero__actions > a {
  font-size: 0.8rem;
}

.home-benefits {
  display: flex;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem 1.2rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.home-benefits li {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  color: #0d2235;
  font-size: 0.95rem;
  font-weight: 700;
  flex-direction: column;
  text-align: center;
}
.home-benefits li > img {
  width: 32px;
}

.home-benefits__icon {
  display: inline-grid;
  place-items: center;
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: #69be12;
  box-shadow: 0 14px 24px rgba(13, 34, 53, 0.06);
}

.home-benefits__icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.home-hero__visual {
  position: relative;
  padding-top: 1.6rem;
}

.home-hero__image-wrap {
  position: relative;
  z-index: 2;
}

.home-hero__image-wrap::before {
  content: "";
  position: absolute;
  inset: 8% 4%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(134, 215, 47, 0.1), rgba(30, 182, 255, 0.06), transparent 72%);
  filter: blur(10px);
  z-index: -1;
}

.home-floating-card {
  position: absolute;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 1.1rem;
  max-width: 120px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(13, 34, 53, 0.07);
  box-shadow: 0 25px 55px rgba(13, 34, 53, 0.08);
  text-align: center;
  width: 120px;
  font-size: 0.7rem;
}
.home-floating-card img {
  width: 32px;
}

.home-floating-card__icon {
  font-size: 1.3rem;
  text-align: center;
}

.home-floating-card--menu {
  animation: homeFloat 5.6s ease-in-out infinite;
  top: 40px;
  left: 30%;
}

.home-floating-card--list {
  animation: homeFloatList 5.6s ease-in-out infinite;
  top: 75px;
  right: 17%;
  animation-delay: 1s;
}

.home-floating-card--recipes {
  animation: homeFloatToque 5.6s ease-in-out infinite;
  right: 10px;
  bottom: 170px;
  animation-delay: 1.8s;
}

.home-leaf {
  position: absolute;
  width: 1.35rem;
  height: 2.35rem;
  border-radius: 100% 0 100% 0;
  background: linear-gradient(180deg, rgba(134, 215, 47, 0.95), rgba(77, 174, 17, 0.85));
  box-shadow: 0 8px 20px rgba(134, 215, 47, 0.24);
  transform: rotate(-26deg);
  z-index: 1;
}

.home-leaf::after {
  content: "";
  position: absolute;
  inset: 0.12rem 0.6rem;
  width: 1px;
  background: rgba(255, 255, 255, 0.65);
  transform: rotate(24deg);
}

.home-leaf--a {
  top: 8%;
  left: 6%;
}

.home-leaf--b {
  right: 10%;
  top: 18%;
  transform: rotate(28deg);
}

.home-leaf--c {
  right: 0;
  bottom: 12%;
}

.home-section {
  padding: 4rem 0;
  padding-bottom: 0;
}

.home-section__heading {
  margin-bottom: 2rem;
}

.home-section__heading--center {
  text-align: center;
}

.home-section__title {
  margin: 0.7rem 0 0;
  margin-bottom: 1rem;
  font-size: 2.9rem;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.home-mental__cards,
.home-features {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: minmax(0, 1fr);
}

.home-aside-card {
  display: grid;
  place-items: center;
  align-content: center;
  min-height: 22rem;
  padding: 2rem;
  text-align: center;
  border-radius: 36px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 252, 249, 0.95));
  box-shadow: 0 28px 70px rgba(13, 34, 53, 0.07);
}

.home-aside-card__badge {
  display: flex;
  gap: 1.2rem;
  margin-bottom: 1rem;
  font-size: 1.6rem;
}
.home-aside-card__badge .home-aside-card__menuflow {
  background: linear-gradient(180deg, rgba(134, 215, 47, 0.18), rgba(134, 215, 47, 0.08));
  border-radius: 50%;
}
.home-aside-card__badge .home-aside-card__menuflow img {
  width: 128px;
}

.home-aside-card__logo {
  margin-bottom: 0.8rem;
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(135deg, #86d72f, #1eb6ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.home-how__content {
  min-width: 0;
}

.home-steps {
  display: grid;
  gap: 1.2rem;
}

.home-step {
  position: relative;
  padding-right: 0;
}

.home-step__top {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1rem;
}

.home-step__number {
  display: inline-grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  color: #ffffff;
  font-weight: 800;
  background: #7dcc21;
}

.home-step__bubble {
  display: inline-grid;
  place-items: center;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: #eff8ff;
  font-size: 1.5rem;
  padding: 1rem;
}
.home-step__bubble > img {
  width: 48px;
}

.home-phone {
  position: relative;
  display: grid;
  place-items: center;
  gap: 1rem;
}

.home-phone__device {
  width: min(100%, 22rem);
  padding: 0.8rem;
  border-radius: 34px;
  background: linear-gradient(180deg, #2c3640, #0f151b);
  box-shadow: 0 34px 70px rgba(13, 34, 53, 0.22);
}

.home-phone__screen {
  display: grid;
  gap: 0;
  border-radius: 28px;
  overflow: hidden;
  background: #fff;
}

.home-phone__column {
  padding: 1.15rem;
}

.home-phone__column + .home-phone__column {
  border-top: 1px solid rgba(13, 34, 53, 0.08);
}

.home-phone__column h3 {
  margin: 0 0 0.8rem;
  font-size: 1rem;
}

.home-phone__tabs {
  display: inline-flex;
  gap: 0.35rem;
  margin-bottom: 1rem;
  padding: 0.25rem;
  border-radius: 999px;
  background: #eef4ef;
  font-size: 0.72rem;
}

.home-phone__tabs span {
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  color: #6b7d8c;
}

.home-phone__tabs .is-active {
  color: #ffffff;
  background: linear-gradient(135deg, #7dcc21, #2ad0b1);
}

.home-phone__list,
.home-phone__checklist {
  display: grid;
  gap: 0.7rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.home-phone__list li,
.home-phone__checklist li {
  display: grid;
  gap: 0.12rem;
  font-size: 0.85rem;
}

.home-phone__list strong,
.home-phone__checklist {
  color: #0d2235;
}

.home-phone__list span,
.home-phone__checklist li {
  color: #365063;
}

.home-phone__checklist li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.home-phone__checklist li span {
  width: 1rem;
  height: 1rem;
  border-radius: 0.3rem;
  border: 1px solid rgba(13, 34, 53, 0.18);
}

.home-basket {
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex;
  gap: 0.35rem;
  align-items: flex-end;
  padding: 1rem 1.1rem 0.85rem;
  border-radius: 1.2rem 1.2rem 1.8rem 1.8rem;
  background: linear-gradient(180deg, #f0b264, #d98b31);
  box-shadow: 0 18px 35px rgba(159, 100, 29, 0.25);
}

.home-basket::before {
  content: "";
  position: absolute;
  inset: -0.55rem 1.2rem auto;
  height: 0.7rem;
  border: 3px solid #c97f2b;
  border-bottom: 0;
  border-radius: 999px 999px 0 0;
}

.home-basket__emoji {
  position: relative;
  z-index: 1;
  font-size: 1.6rem;
}

.home-section--cta {
  padding-bottom: 2rem;
}

.home-cta {
  position: relative;
  align-items: center;
  padding: 2.2rem;
  overflow: hidden;
  border-radius: 34px;
  color: #ffffff;
  background: linear-gradient(90deg, #8fdc25 0%, #2fcc88 48%, #1eb6ff 100%);
  box-shadow: 0 35px 75px rgba(30, 182, 255, 0.18);
}

.home-cta__content h2 {
  margin: 0 0 0.8rem;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.04;
  letter-spacing: -0.045em;
}

.home-cta__content p,
.home-cta__action span {
  color: rgba(255, 255, 255, 0.9);
}

.home-cta__action {
  display: grid;
  gap: 0.8rem;
  align-items: center;
}

.home-cta__leaf {
  position: absolute;
  right: 1.2rem;
  bottom: 0.8rem;
  width: 6rem;
  height: 6rem;
  opacity: 0.75;
}

.home-cta__leaf::before,
.home-cta__leaf::after {
  content: "";
  position: absolute;
  border-radius: 100% 0 100% 0;
  background: rgba(134, 215, 47, 0.5);
}

.home-cta__leaf::before {
  inset: 1rem 0 auto auto;
  width: 2.8rem;
  height: 4.4rem;
  transform: rotate(26deg);
}

.home-cta__leaf::after {
  inset: 2.2rem auto auto 0.5rem;
  width: 2.6rem;
  height: 4rem;
  transform: rotate(-24deg);
}

.legal-hero {
  padding: 4.2rem 0 2rem;
}

.legal-hero__inner {
  max-width: 52rem;
  padding: 2.3rem;
  border-radius: 2rem;
  background: radial-gradient(circle at top right, rgba(134, 215, 47, 0.14), transparent 28%), linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.84));
  border: 1px solid rgba(13, 34, 53, 0.06);
  box-shadow: 0 25px 60px rgba(13, 34, 53, 0.07);
}

.legal-hero__brand {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.legal-hero h1 {
  margin: 0;
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.legal-hero p {
  max-width: 40rem;
  margin: 1rem 0 0;
  color: #365063;
  line-height: 1.8;
}

.legal-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.4rem;
}

.legal-hero__meta span {
  display: inline-flex;
  min-height: 2.25rem;
  align-items: center;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(13, 34, 53, 0.08);
  color: #365063;
  font-size: 0.9rem;
  font-weight: 700;
}

.legal-page {
  padding: 1rem 0 4rem;
}

.legal-page__grid {
  display: grid;
  gap: 1.5rem;
}

.legal-sidebar__card,
.legal-content,
.legal-notice {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(13, 34, 53, 0.06);
  border-radius: 1.75rem;
  box-shadow: 0 20px 55px rgba(13, 34, 53, 0.06);
}

.legal-sidebar__card {
  padding: 1.4rem;
}

.legal-sidebar__card h2 {
  margin: 0 0 1rem;
  font-size: 1rem;
}

.legal-sidebar__nav {
  display: grid;
  gap: 0.55rem;
}

.legal-sidebar__nav a {
  display: block;
  padding: 0.85rem 1rem;
  border-radius: 1rem;
  color: #365063;
  font-weight: 700;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.legal-sidebar__nav a:hover,
.legal-sidebar__nav a.is-active {
  color: #0d2235;
  background: rgba(134, 215, 47, 0.12);
}

.legal-content {
  padding: 1.5rem;
}

.legal-notice {
  margin-bottom: 1rem;
  padding: 1rem 1.1rem;
  color: #0d2235;
  background: linear-gradient(180deg, rgba(134, 215, 47, 0.1), rgba(30, 182, 255, 0.06));
}

.legal-section + .legal-section {
  margin-top: 1.4rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(13, 34, 53, 0.08);
}

.legal-section h2 {
  margin: 0 0 0.8rem;
  font-size: 1.3rem;
  line-height: 1.25;
}

.legal-section p,
.legal-list {
  margin: 0;
  color: #365063;
  line-height: 1.8;
}

.legal-section a {
  color: #1eb6ff;
  font-weight: 700;
}

.legal-list {
  padding-left: 1.2rem;
}

.legal-list li + li {
  margin-top: 0.45rem;
}

.account-delete {
  display: grid;
  gap: 1.5rem;
}

.account-delete__card,
.account-delete__warning,
.account-delete__panel {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(13, 34, 53, 0.06);
  border-radius: 1.75rem;
  box-shadow: 0 20px 55px rgba(13, 34, 53, 0.06);
}

.account-delete__card,
.account-delete__panel {
  padding: 1.8rem;
  border-color: rgba(13, 34, 53, 0.12);
  box-shadow: 0 24px 60px rgba(13, 34, 53, 0.09);
}

.account-delete__panel {
  width: min(100%, 42rem);
  justify-self: center;
}

.account-delete__card h2,
.account-delete__panel h2 {
  margin: 0 0 1rem;
  font-size: 1.35rem;
  line-height: 1.3;
}

.account-delete__warning {
  margin-bottom: 1.25rem;
  padding: 1.35rem 1.4rem;
  color: #7d1710;
  background: #fff5f5;
  border: 1px solid rgba(220, 38, 38, 0.22);
  border-left: 6px solid #dc2626;
  box-shadow: 0 18px 35px rgba(127, 23, 16, 0.08);
}

.account-delete__warning strong {
  display: block;
  margin-bottom: 0.6rem;
  color: #7d1710;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.account-delete__warning p,
.account-delete__panel p {
  margin: 0;
  color: #365063;
  line-height: 1.85;
}

.account-delete__form {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(13, 34, 53, 0.08);
}

.account-delete__field {
  display: grid;
  gap: 0.55rem;
}

.account-delete__field span {
  font-weight: 700;
  font-size: 0.95rem;
}

.account-delete__field input {
  height: 3.5rem;
  padding: 0 1rem;
  border: 1px solid rgba(13, 34, 53, 0.16);
  border-radius: 1rem;
  background: #f8fafc;
  color: #0d2235;
}

.account-delete__button {
  height: 3.75rem;
  border: 0;
  border-radius: 1.1rem;
  color: #fff;
  font-size: 1rem;
  font-weight: 800;
  background: linear-gradient(135deg, #ef4444, #dc2626);
  opacity: 0.7;
  margin-top: 0.35rem;
}

@keyframes homeFloat {
  0%, 100% {
    transform: translateY(0) rotateZ(-15deg);
  }
  50% {
    transform: translateY(-10px) rotateZ(-15deg);
  }
}
@keyframes homeFloatList {
  0%, 100% {
    transform: translateY(0) rotateZ(15deg);
  }
  50% {
    transform: translateY(-10px) rotateZ(15deg);
  }
}
@keyframes homeFloatToque {
  0%, 100% {
    transform: translateY(0) rotateZ(10deg);
  }
  50% {
    transform: translateY(-10px) rotateZ(10deg);
  }
}
@media (min-width: 768px) {
  .home-mental__cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .home-features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .home-phone__screen {
    grid-template-columns: 1fr 1fr;
  }
  .home-phone__column + .home-phone__column {
    border-top: 0;
    border-left: 1px solid rgba(13, 34, 53, 0.08);
  }
}
@media (min-width: 980px) {
  .home-hero {
    padding-top: 4rem;
  }
  .home-hero__grid {
    grid-template-columns: minmax(0, 3fr) minmax(0, 5fr);
    align-items: center;
    gap: 2.5rem;
  }
  .home-mental {
    grid-template-columns: minmax(0, 1.1fr) minmax(22rem, 0.9fr);
    align-items: stretch;
  }
  .home-how {
    grid-template-columns: minmax(0, 1.15fr) minmax(18rem, 0.85fr);
    align-items: center;
    gap: 2.4rem;
  }
  .home-steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem;
  }
  .home-step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 1rem;
    right: -1rem;
    width: 2rem;
    border-top: 2px dashed rgba(30, 182, 255, 0.3);
  }
  .home-features {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
  .home-cta {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 2rem 3rem;
  }
}

@media (min-width: 960px) {
  .legal-page__grid {
    grid-template-columns: minmax(15rem, 18rem) minmax(0, 1fr);
    align-items: start;
  }

  .legal-sidebar {
    position: sticky;
    top: 6.5rem;
  }

}
@media (max-width: 719px) {
  .home-hero__visual {
    order: 2;
  }
  .home-floating-card {
    position: static;
    max-width: none;
    margin-top: 1rem;
  }
  .home-basket {
    position: static;
    margin-top: -0.5rem;
  }
  .home-section {
    padding: 3.4rem 0;
  }
}/*# sourceMappingURL=app.css.map */
