:root{
  --bg:#f7f8fc;
  --surface:#ffffff;
  --surface-soft:#f0f3f9;
  --text:#2d2d2d;
  --muted:#5c6573;
  --line:#d8dfeb;
  --accent:#a0b2c8;
  --accent-dark:#7f95af;
  --radius:22px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  min-height:100%;
  display:flex;
  flex-direction:column;
  background:var(--bg);
  color:var(--text);
  font-family:"Onest",system-ui,-apple-system,"Segoe UI",Roboto,Arial,sans-serif;
}

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

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

.skip-link{
  position:absolute;
  left:-9999px;
}
.skip-link:focus{
  left:16px;
  top:16px;
  z-index:99;
  padding:8px 10px;
  border-radius:10px;
  background:#fff;
  border:1px solid var(--line);
}

.header{
  background:#fff;
  border-bottom:1px solid var(--line);
  position:sticky;
  top:0;
  z-index:40;
}

.header__inner{
  min-height:92px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:28px;
}

.brand{
  display:flex;
  flex-direction:column;
  gap:4px;
}
.brand__name{
  font-size:37px;
  line-height:1;
  letter-spacing:.01em;
  font-weight:500;
}
.brand__role{
  font-size:19px;
  color:#8c92a0;
}

.nav{
  display:flex;
  align-items:center;
  gap:26px;
  flex-wrap:nowrap;
  margin-left:auto;
  overflow-x:auto;
  -webkit-overflow-scrolling:touch;
  scrollbar-width:none;
  max-width: min(820px, calc(100% - 340px));
}
.nav::-webkit-scrollbar{display:none}
.nav__link{
  padding:10px 14px;
  border-radius:999px;
  color:#444;
  font-size:17px;
  line-height:1;
  white-space:nowrap;
  flex:0 0 auto;
}
.nav__link:hover{
  background:var(--surface-soft);
}
.nav__link--active{
  background:var(--surface-soft);
}
.nav__link--cta{
  background:var(--accent);
  color:#fff;
  font-size:15px;
  padding:11px 14px;
}
.nav__link--cta:hover{
  background:var(--accent-dark);
}

.hero{
  padding:72px 0 44px;
}
.hero__grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  align-items:start;
  gap:46px;
}
.hero__intro{
  margin:0;
  color:#a0a4af;
  font-size:56px;
  line-height:1.22;
  max-width:540px;
}

.hero__title{
  margin:28px 0 24px;
  font-size:clamp(72px,5.5vw,118px);
  line-height:.97;
  font-weight:400;
  letter-spacing:-.01em;
}
.hero__title-accent{
  display:block;
  color:#2a2a2a;
}
.hero__lead{
  margin:0;
  font-size:39px;
  line-height:1.45;
  color:#767f90;
  max-width:840px;
}

.hero__visual{
  position:relative;
  width:100%;
  max-width:740px;
  margin-left:auto;
}
.hero__photo{
  display:block;
  width:100%;
  height:auto;
  object-fit:cover;
  filter:grayscale(100%);
}
.hero__contact-pill{
  position:absolute;
  left:-40px;
  bottom:36px;
  width:170px;
  height:170px;
  border-radius:50%;
  background:#a0b2c8;
  color:#2f3848;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:34px;
  line-height:1;
}
.hero__line{
  position:absolute;
  right:-16px;
  bottom:-50px;
  width:270px;
  height:60px;
}

.btn{
  appearance:none;
  border:none;
  border-radius:30px;
  padding:13px 24px;
  font-size:16px;
  font-weight:500;
  cursor:pointer;
  transition:all .2s ease;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  text-decoration:none;
}
.btn--primary{
  background:var(--accent);
  color:#fff;
  border:1px solid #fff;
}
.btn--primary:hover{
  background:var(--accent-dark);
}
.btn--ghost{
  background:#fff;
  color:#3b4657;
  border:1px solid var(--line);
}
.btn--ghost:hover{
  background:#f4f6fb;
}
.btn--wide{width:100%}

.card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:26px;
}
.card__title{
  margin:0;
  font-size:26px;
  line-height:1.2;
  font-weight:500;
}
.card__text{
  margin:14px 0 18px;
  font-size:16px;
  color:var(--muted);
  line-height:1.56;
}
.card__hint{
  margin:14px 0 0;
  font-size:13px;
  color:#6d7789;
}

.section{
  padding:56px 0;
}
.section--alt{
  background:#fff;
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}

.section__head{
  margin-bottom:20px;
}
.section__title{
  margin:0;
  font-size:44px;
  line-height:1.05;
  font-weight:500;
}
.section__subtitle{
  margin:12px 0 0;
  max-width:760px;
  color:var(--muted);
  font-size:18px;
  line-height:1.52;
}

.page{
  flex:1;
  min-height:calc(100vh - 220px);
  display:flex;
  flex-direction:column;
}

.page > .section{
  flex:1;
  display:flex;
  align-items:flex-start;
}

.page__kicker{
  margin:0 0 10px;
  font-family:"JetBrains Mono",ui-monospace,monospace;
  font-size:14px;
  letter-spacing:.12em;
  color:#9aa3b1;
  text-transform:uppercase;
}
.page__title{
  margin:0 0 16px;
  max-width:900px;
  font-size:44px;
  line-height:1.06;
  font-weight:500;
  color:#2a2f3a;
}
.page__lead{
  margin:0 0 16px;
  max-width:760px;
  font-size:20px;
  line-height:1.55;
  color:#3f4654;
}
.page__text{
  margin:0 0 18px;
  max-width:760px;
  font-size:17px;
  line-height:1.64;
  color:#3f4654;
}
.page__actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:8px;
}

.contacts{
  margin:22px 0 26px;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:14px;
}
.contacts__card{
  border:1px solid var(--line);
  background:#fff;
  border-radius:var(--radius);
  padding:16px 18px;
}
.contacts__label{
  margin:0 0 8px;
  font-family:"JetBrains Mono",ui-monospace,monospace;
  font-size:13px;
  letter-spacing:.08em;
  color:#929aa8;
  text-transform:uppercase;
}
.contacts__value{
  margin:0;
  font-size:18px;
  font-weight:500;
}

.prose{
  background:#fff;
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:24px;
}
.prose p{
  margin:0 0 14px;
  line-height:1.64;
  color:#3f4856;
  font-size:17px;
}
.prose p:last-child{margin-bottom:0}

.about2{
  margin-top:18px;
}
.about2__grid{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:36px;
  align-items:start;
}
.about2__p{
  margin:0 0 18px;
  font-size:18px;
  line-height:1.7;
  color:#2f3644;
}
.about2__quote{
  margin:36px 0 0;
  font-size:34px;
  line-height:1.15;
  color:#2a2f3a;
  max-width:560px;
}
.about2__media{
  display:flex;
  justify-content:flex-end;
}
.about2__img{
  width:100%;
  max-width:560px;
  height:auto;
  border-radius:12px;
  object-fit:cover;
}

.cta{
  background:#c9d6b8;
  border-radius:10px;
  padding:42px 46px;
}
.cta__grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:34px;
  align-items:center;
}
.cta__title{
  margin:0;
  font-size:34px;
  line-height:1.15;
  font-weight:600;
  color:#12151d;
}
.cta__title strong{
  font-weight:800;
}
.cta__sub{
  margin-top:14px;
  font-size:16px;
  color:#1d2430;
}
.cta__list{
  margin:10px 0 0;
  padding-left:18px;
  font-size:16px;
  color:#1d2430;
  line-height:1.7;
}
.cta__rightTitle{
  text-align:center;
  font-size:16px;
  font-weight:600;
  color:#1a1f2a;
  margin-bottom:14px;
}

.lead{
  display:flex;
  flex-direction:column;
  gap:14px;
}
.lead__field{display:block}
.lead__input{
  width:100%;
  height:54px;
  border-radius:40px;
  border:1px solid rgba(0,0,0,.28);
  background:rgba(255,255,255,.72);
  padding:0 18px;
  font-size:16px;
  outline:none;
}
.lead__input:focus{
  background:#fff;
  border-color:rgba(0,0,0,.5);
}
.lead__btn{
  height:54px;
  border-radius:40px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:16px;
  font-weight:600;
  border:0;
  cursor:pointer;
  text-align:center;
}
.lead__btn--primary{
  background:#6c735e;
  color:#fff;
}
.lead__btn--primary:hover{filter:brightness(.98)}
.lead__btn--tg{
  background:#a0b2c8;
  color:#2f3848;
}
.lead__btn--tg:hover{filter:brightness(.98)}

.grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:12px;
}
.chip{
  background:#f4f7fc;
  border:1px solid #dbe2ee;
  border-radius:18px;
  padding:18px 16px;
  font-size:17px;
  color:#3a4454;
}

.pricing{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:14px;
}
.price-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:20px;
  position:relative;
}
.price-card--featured{
  background:#eef3fb;
}
.price-card__badge{
  position:absolute;
  top:12px;
  right:12px;
  background:var(--accent);
  color:#fff;
  border-radius:999px;
  padding:4px 10px;
  font-size:12px;
}
.price-card__head{
  display:flex;
  justify-content:space-between;
  gap:10px;
}
.price-card__title{
  margin:0;
  font-size:22px;
  line-height:1.2;
  font-weight:500;
}
.price-card__price{
  font-family:"JetBrains Mono",ui-monospace,monospace;
  font-size:23px;
  color:#2f3d54;
  white-space:nowrap;
}
.price-card__text{
  margin:12px 0 16px;
  color:var(--muted);
  font-size:16px;
  line-height:1.55;
}

.pricing2__head{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:28px;
}
.pricing2__title{
  margin:0;
  font-size:78px;
  line-height:.95;
  font-weight:400;
  color:#222;
}
.pricing2__note{
  margin-top:14px;
  font-size:26px;
  line-height:1.25;
  color:#9aa3b1;
  text-align:right;
}
.pricing2__rule{
  height:2px;
  background:#cfd6e4;
  margin:28px 0 0;
}

.pricing2__list{
  margin-top:36px;
}
.pricing2__item{
  display:grid;
  grid-template-columns: 1fr auto;
  gap:34px;
  padding:26px 0;
}
.pricing2__h{
  margin:0;
  font-size:30px;
  font-weight:400;
  color:#2a2f3a;
}
.pricing2__text{
  margin:14px 0 0;
  max-width:520px;
  color:#2a2f3a;
  line-height:1.65;
  font-size:14px;
}
.pricing2__meta{
  margin-top:28px;
}
.pricing2__metaTop{
  font-family:"JetBrains Mono",ui-monospace,monospace;
  font-size:12px;
  color:#9aa3b1;
  letter-spacing:.02em;
  text-transform:uppercase;
}
.pricing2__metaBottom{
  margin-top:6px;
  font-family:"JetBrains Mono",ui-monospace,monospace;
  font-size:13px;
  color:#2a2f3a;
  text-transform:uppercase;
  line-height:1.25;
}
.pricing2__price{
  font-size:34px;
  font-weight:400;
  color:#2a2f3a;
  align-self:end;
  padding-bottom:6px;
  white-space:nowrap;
}
.pricing2__sep{
  height:2px;
  background:#cfd6e4;
}

.pricing2__cta{
  margin-top:22px;
  background:#d6dde8;
  border-radius:14px;
  padding:22px 26px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
}
.pricing2__ctaText{
  font-size:26px;
  line-height:1.05;
  color:#2a2f3a;
}
.pricing2__ctaBtn{
  background:#86a4b8;
  color:#fff;
  border-radius:999px;
  padding:16px 44px;
  font-weight:600;
}
.pricing2__ctaBtn:hover{filter:brightness(.98)}

.signup{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:16px;
}
.signup__actions{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:16px;
}

.note{
  background:#f4f7fc;
  border:1px solid #dbe2ee;
  border-radius:var(--radius);
  padding:22px;
}
.note__title{
  margin:0;
  font-size:24px;
  font-weight:500;
}
.note__list{
  margin:12px 0 0;
  padding-left:18px;
  color:#495464;
  font-size:16px;
  line-height:1.58;
}
.note__list li{margin:8px 0}

.footer{
  border-top:1px solid var(--line);
  background:#fff;
  padding:22px 0;
}
.footer__inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
}
.footer__copy{
  margin:0;
  color:#606a7a;
}
.footer__link{
  background:#eef3fb;
  border:1px solid #dbe2ee;
  border-radius:999px;
  padding:8px 12px;
  color:#475367;
}

@media (max-width: 980px){
  .page__title{font-size:34px}
  .contacts{grid-template-columns:1fr}
  .hero__grid{grid-template-columns:1fr}
  .pricing{grid-template-columns:1fr}
  .grid{grid-template-columns:repeat(2,minmax(0,1fr))}
  .section__title{font-size:36px}
  .brand__name{font-size:24px}
  .brand__role{font-size:14px}
  .nav{gap:12px; max-width:100%}
  .nav__link{font-size:15px;padding:8px 10px}
  .nav__link--cta{font-size:13px;padding:9px 12px}
  .hero__intro{font-size:34px}
  .hero__title{font-size:64px}
  .hero__lead{font-size:24px}
  .hero__visual{max-width:100%}
  .hero__contact-pill{left:10px;bottom:10px;width:110px;height:110px;font-size:22px}
  .hero__line{display:none}
  .about2__grid{grid-template-columns:1fr}
  .about2__quote{font-size:26px}
  .cta{padding:26px}
  .cta__grid{grid-template-columns:1fr}
  .pricing2__head{flex-direction:column; align-items:flex-start}
  .pricing2__title{font-size:54px}
  .pricing2__note{text-align:left; font-size:20px; margin-top:0}
  .pricing2__item{grid-template-columns:1fr; gap:14px}
  .pricing2__price{align-self:start; font-size:28px; padding-bottom:0}
}

@media (max-width: 640px){
  .page__title{font-size:28px}
  .page__lead{font-size:17px}
  .page__actions{align-items:stretch}
  .page__actions .btn{flex:1; text-align:center; justify-content:center}
  .container{width:min(1180px, calc(100% - 28px))}
  .hero{padding:40px 0 30px}
  .hero__intro{font-size:24px}
  .hero__title{font-size:46px}
  .hero__lead{font-size:18px}
  .section{padding:44px 0}
  .section__title{font-size:30px}
  .section__subtitle{font-size:16px}
  .grid{grid-template-columns:1fr}
  .card__title{font-size:22px}
}

/* Requests bubbles (Tilda-like) */
.requests{
  padding:70px 0 86px;
  overflow:hidden;
}
.requests__kicker{
  text-align:center;
  font-family:"JetBrains Mono",ui-monospace,monospace;
  font-size:14px;
  letter-spacing:.12em;
  color:#9aa3b1;
  text-transform:uppercase;
  margin-bottom:18px;
}
.requests__title{
  margin:0;
  text-align:center;
  font-size:64px;
  line-height:1.05;
  font-weight:400;
  color:#2a2f3a;
}

.requests__row{
  margin-top:40px;
  display:flex;
  align-items:flex-end;
  justify-content:center;
  gap:26px;
  flex-wrap:nowrap;
}

.bubble{
  border-radius:999px;
  background:#eef1f6;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:18px 22px;
  box-shadow: 0 18px 40px rgba(0,0,0,.06);
  color:#434b5a;
}
.bubble__title{
  font-size:18px;
  line-height:1.12;
  font-weight:500;
}
.bubble__sub{
  margin-top:10px;
  font-size:12px;
  line-height:1.25;
  color:#7d8798;
  max-width:180px;
}

.bubble--m{width:178px; height:178px}
.bubble--l{width:206px; height:206px}
.bubble--active{
  background:#a0b2c8;
  color:#2f3848;
}
.bubble--active .bubble__sub{color:#2f3848; opacity:.8}

.requests__wave{
  position:absolute;
  right:-40px;
  bottom:16px;
  width:440px;
  height:110px;
  pointer-events:none;
}
.requests .container{
  position:relative;
}

@media (max-width: 980px){
  .requests__title{font-size:44px}
  .requests__row{flex-wrap:wrap; gap:16px}
  .bubble--m{width:160px; height:160px}
  .bubble--l{width:184px; height:184px}
  .requests__wave{right:-120px; width:380px}
}

@media (max-width: 640px){
  .requests{padding:52px 0 66px}
  .requests__title{font-size:34px}
  .bubble--m{width:150px; height:150px}
  .bubble--l{width:168px; height:168px}
  .bubble__title{font-size:16px}
  .bubble__sub{font-size:11px}
  .requests__wave{display:none}
}

/* How it works (Tilda-like) */
.how{
  padding:84px 0 110px;
  position:relative;
  overflow:hidden;
}
.how__container{
  position:relative;
}
.how__kicker{
  text-align:center;
  font-family:"JetBrains Mono",ui-monospace,monospace;
  font-size:14px;
  letter-spacing:.12em;
  color:#9aa3b1;
  text-transform:uppercase;
  margin-bottom:18px;
}
.how__title{
  margin:0;
  text-align:center;
  font-size:64px;
  line-height:1.05;
  font-weight:400;
  color:#2a2f3a;
}
.how__wave{
  position:absolute;
  left:-80px;
  top:120px;
  width:360px;
  height:110px;
  pointer-events:none;
  opacity:.95;
}

.how__steps{
  margin-top:40px;
  position:relative;
  min-height:260px;
}
.how__step{
  position:absolute;
  display:flex;
  align-items:center;
  gap:18px;
  max-width:520px;
  color:#9aa3b1;
}
.how__num{
  width:62px;
  height:62px;
  border-radius:999px;
  background:#eef1f6;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:18px;
  color:#6b7586;
  box-shadow: 0 18px 40px rgba(0,0,0,.06);
  flex:0 0 auto;
}
.how__text{
  font-size:14px;
  line-height:1.55;
}

.how__step--1{left:50%; transform:translateX(-5%); top:10px;}
.how__step--2{left:50%; transform:translateX(-25%); top:102px; max-width:430px;}
.how__step--3{left:50%; transform:translateX(-2%); top:194px;}

@media (max-width: 980px){
  .how__title{font-size:44px}
  .how__wave{left:-160px; top:96px; width:340px}
  .how__steps{min-height:320px; margin-top:26px}
  .how__step{position:relative; left:auto; top:auto; transform:none; margin:18px auto 0; padding-left:14px;}
  .how__step--1,.how__step--2,.how__step--3{max-width:640px}
}

@media (max-width: 640px){
  .how{padding:58px 0 72px}
  .how__title{font-size:34px}
  .how__wave{display:none}
  .how__num{width:54px;height:54px}
  .how__text{font-size:13px}
}

/* Feedback CTA (Tilda-like) */
.feedback{
  padding:86px 0 96px;
  overflow:hidden;
}
.feedback__container{
  position:relative;
}
.feedback__kicker{
  font-family:"JetBrains Mono",ui-monospace,monospace;
  font-size:14px;
  letter-spacing:.12em;
  color:#9aa3b1;
  text-transform:uppercase;
  margin-bottom:18px;
}
.feedback__grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:56px;
  align-items:center;
}
.feedback__title{
  margin:0;
  font-size:72px;
  line-height:.95;
  font-weight:400;
  color:#2a2f3a;
}
.feedback__text{
  margin:18px 0 0;
  max-width:520px;
  font-size:14px;
  line-height:1.6;
  color:#2a2f3a;
}
.feedback__hint{
  margin:8px 0 0;
  font-size:12px;
  color:#9aa3b1;
}
.feedback__cta{
  margin-top:26px;
  width:150px;
  height:150px;
  border-radius:50%;
  background:#a0b2c8;
  color:#2f3848;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:18px;
  font-weight:500;
}
.feedback__media{
  position:relative;
  display:flex;
  justify-content:flex-start;
}
.feedback__img{
  width:100%;
  max-width:420px;
  height:auto;
  border-radius:0;
  object-fit:cover;
}
.feedback__wave{
  position:absolute;
  right:-130px;
  bottom:-56px;
  width:520px;
  height:140px;
  pointer-events:none;
}

@media (max-width: 980px){
  .feedback__grid{grid-template-columns:1fr; gap:28px}
  .feedback__title{font-size:48px}
  .feedback__media{justify-content:flex-start}
  .feedback__wave{right:-240px; bottom:-40px; width:460px}
}

@media (max-width: 640px){
  .feedback{padding:58px 0 66px}
  .feedback__title{font-size:38px}
  .feedback__cta{width:120px;height:120px;font-size:16px}
  .feedback__img{max-width:100%}
  .feedback__wave{display:none}
}
