:root{
  --bg: #ffffff;
  --text: #0b1220;
  --muted: rgba(11,18,32,.65);
  --blue1: #0b75ff;
  --blue2: #0a57d6;
  --cardShadow: 0 26px 60px rgba(7, 17, 45, .28);
  --radiusLg: 28px;
  --radiusMd: 16px;
  --container: 1820px;
}

*{ box-sizing: border-box; }
html, body{ height: 100%; }
body{
  margin: 0;
  
  font-family: Lato;
  color: var(--text);
  background: var(--bg);
}

a{ color: #000; text-decoration: none; }

.container{
  width: 100%;
  margin: 0 auto;
  padding: 0 50px;
}

.site-header{
  font-family: Urbanist;
  top: 0;
  z-index: 20;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(10px);
  
}

.header-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 80px;
}

.brand{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: -.02em;
}

.brand-mark{
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: linear-gradient(180deg, #1a8bff, #0a57d6);
  color: #fff;
  box-shadow: 0 10px 22px rgba(8, 84, 216, .25);
}
.brand-text {
	font-size: 28px;
	font-family: Urbanist;
}

.nav{
  display: flex;
  align-items: center;
  gap: 28px;
  color: rgba(11,18,32,.72);
  font-weight: 500;
  font-size: 20px;
}

.nav-link{
  padding: 10px 6px;
  border-radius: 10px;
}

.appstore {width: 190px; height: 54px}

.cta-btn{
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
  padding: 0;
  border-radius: 12px;
  
  
  box-shadow: 0 14px 30px rgba(0,0,0,.15);
  line-height: 1.05;
  min-height: 44px;
}
.cta-btn__small{
  font-size: 10px;
  opacity: .85;
  letter-spacing: .02em;
}
.cta-btn__big{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 700;
}
.cta-btn--dark{
  background: #111;
  border: 1px solid rgba(255,255,255,.10);
}

.hero{
  padding: 22px 0 34px;
}

.benefits{
  padding: 22px 0 46px;
}

.benefits-wrap{
  background: linear-gradient(180deg, #E3F3FF, #CFEAFF);
  border-radius: 28px;
  padding: 80px 100px;
  
}

.section-title{
  margin: 4px 0 56px;
  text-align: center;
  font-size: 56px;
  font-weight: bold;
  letter-spacing: -.03em;
}

.benefits-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.benefit-card{
  background: rgba(255,255,255,.92);
  
  border-radius: 32px;
  padding: 40px 32px;
  text-align: center;
  
}

.benefit-icon{
  width: 100px;
  height: 100px;
  margin: 0 auto 14px;
  
  display: block;
  object-fit: contain;
  
}

.benefit-title{
  margin: 0;
  font-size: 32px;
  font-weight: bold;
  letter-spacing: -.02em;
}

.benefit-text{
  margin: 10px 0 0;
  font-size: 18px;
  line-height: 1.45;
  color: #6D7886;
}

.how{
  padding: 34px 0 16px;
}

.how-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  align-items: start;
  max-width: 1340px;
  margin: 0 auto;
}

.how-card{
  border-radius: 24px;
  overflow: hidden;
  max-width:424px;
  background: #ffffff;
}

.how-media{
  background: #D0EAFF;
  
  display: grid;
  place-items: center;
  min-height: 176px;
}

.how-img{
  width: 100%;
  
  
  object-fit: contain;
  display: block;
}

.how-bottom{
  background: linear-gradient(180deg, #1677ff, #0c5be0);
  color: #fff;
  padding: 24px;
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 16px;
  align-items: start;
  position: relative;
    top: -57px;
	border-radius: 0 0 24px 24px;
}

.how-step{
  width: 40px;
  height: 40px;
  border-radius: 6px;
  background: rgba(255,255,255,.92);
  color: #1871F2;
  display: grid;
  place-items: center;
  font-weight: bold;
  font-size: 20px;
  
}

.how-title{
  margin: 1px 0 2px;
  font-size: 24px;
  font-weight: bold;
  
}

.how-text{
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
  color: #fff;
}

.why{
  padding: 24px 0 54px;
}

.why-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 80px;
  align-items: center;
  justify-items: center;
  padding-top: 10px;
  max-width: 1120px;
  margin: 0 auto;
}

.why-item{
  width: min(520px, 100%);
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 16px;
  align-items: center;
}

.why-icon{
  width: 100px;
  height: 100px;
  display: block;
  object-fit: contain;
  
}

.why-text{
  font-weight: 700;
  font-size: 28px;
  color: rgba(0,0,0);
}

.hero-card{
  position: relative;
 
  overflow: hidden;
  
  padding: 0;
  min-height: auto;
  background: no-repeat url("../img/main_img.webp");
  background-size: contain;
  max-height: 880px;
}



.hero-badge{
  position: absolute;
  right: 50px;
  top: 50px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 22px;
  color: #fff;
  font-weight: 600;
  font-size: 26px;
  
  border: 2px solid white;
  
}
.hero-badge__sparkle{
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  
}

.hero-content{
  position: relative;
  text-align: center;
  color: #fff;
  z-index: 1;
  margin-bottom: 40%;
}

.hero-title{
  margin: 50px auto 0 auto;
  font-size: 80px;
  
  
  font-weight: 800;
  text-shadow: 0 18px 36px rgba(0,0,0,.14);
}

.hero-subtitle{
  margin: 16px auto;
  max-width: 760px;
  font-size: clamp(13px, 1.7vw, 15px);
  line-height: 1.55;
  color: rgba(255,255,255,.85);
}

.phones{
  position: absolute;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  width: min(980px, calc(100% - 28px));
  height: 320px;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: end;
  gap: 24px;
}

.phone{
  border-radius: 30px;
  padding: 12px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(255,255,255,.35);
  box-shadow: 0 24px 55px rgba(3, 15, 45, .35);
  position: relative;
  transform-origin: center bottom;
}

.phone__notch{
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 92px;
  height: 20px;
  background: #0e0e12;
  border-radius: 999px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.08);
}

.phone__screen{
  border-radius: 22px;
  overflow: hidden;
  background: #f3f6ff;
  min-height: 286px;
  position: relative;
}

.phone--left{ transform: rotate(-7deg) translateY(14px); }
.phone--center{ transform: translateY(0); }
.phone--right{ transform: rotate(7deg) translateY(14px); }

.phone--left .phone__screen{ background: linear-gradient(180deg, #e9f1ff, #f7fbff); }
.phone--center .phone__screen{ background: #ffffff; }
.phone--right .phone__screen{ background: #ffffff; }

.mock-top{
  display:flex;
  align-items:center;
  justify-content: space-between;
  padding: 12px 14px;
  gap: 10px;
}
.mock-pill{
  width: 96px;
  height: 10px;
  border-radius: 999px;
  background: rgba(0,0,0,.10);
}
.mock-chip{
  width: 56px;
  height: 16px;
  border-radius: 999px;
  background: rgba(11,117,255,.18);
}

.mock-photo{
  margin: 10px 14px;
  height: 168px;
  border-radius: 16px;
  background:
    linear-gradient(120deg, rgba(0,0,0,.06), rgba(0,0,0,0) 60%),
    radial-gradient(140px 90px at 30% 40%, rgba(0,0,0,.08), transparent 60%),
    linear-gradient(180deg, #c9dbff, #f1f6ff);
}
.mock-row{
  display:flex;
  align-items:center;
  gap: 10px;
  padding: 0 14px 14px;
}
.mock-dot{
  width: 18px; height: 18px; border-radius: 999px;
  background: rgba(0,0,0,.10);
}
.mock-line{
  height: 10px;
  border-radius: 999px;
  background: rgba(0,0,0,.10);
  flex: 1;
}
.mock-line.short{ flex: 0 0 46%; }

.mock-header{
  display:flex;
  align-items:center;
  justify-content: space-between;
  padding: 14px 14px 10px;
}
.mock-title{
  font-weight: 800;
  letter-spacing: -.03em;
  color: rgba(0,0,0,.78);
}
.mock-small{
  font-size: 12px;
  color: rgba(0,0,0,.45);
  font-weight: 600;
}

.mock-grid{
  padding: 10px 14px 14px;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.mock-card{
  border-radius: 14px;
  height: 96px;
  background:
    radial-gradient(120px 70px at 65% 45%, rgba(11,117,255,.35), transparent 60%),
    linear-gradient(180deg, rgba(0,0,0,.06), rgba(0,0,0,.02));
  border: 1px solid rgba(0,0,0,.06);
}

.mock-list{
  padding: 10px 14px 16px;
  display:grid;
  gap: 12px;
}
.mock-item{
  border-radius: 14px;
  padding: 12px;
  background: rgba(0,0,0,.04);
  border: 1px solid rgba(0,0,0,.05);
  display:grid;
  gap: 10px;
}

.hero-footer{
  margin: 80px auto 50px auto;
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 14px;
  color: rgba(11,18,32,.90);
}

.hero-footer__text{
  font-weight: bold;
  letter-spacing: -.03em;
  font-size: 48px;
}
.path {
	position: relative;
	left: 22px;
	top: -30px;
}
.line {
	position: absolute;
	right: -850px;
	top: -70px;
}
.cta{
  padding: 26px 0 22px;
}

.cta-banner{
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  padding: 0 34px;
  background: no-repeat url("../img/clean_phone_back.png");
  background-size: cover;
  height: 509px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 26px;
}


.cta-left{
  position: relative;
  z-index: 1;
  color: #fff;
}

.cta-title{
  margin: 0;
  font-size: 80px;
  
  letter-spacing: 1%;
  font-weight: 900;
}

.cta-subtitle{
  margin: 14px 0 18px;
  color: rgba(255,255,255,.86);
  font-size: 24px;
  
}

.cta-pill{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 12px;
  background: rgba(255,255,255,.92);
  color: rgba(0,0,0,.86);
  font-weight: 800;
  box-shadow: 0 18px 40px rgba(0,0,0,.14);
  border: 1px solid rgba(255,255,255,.35);
}

.cta-pill__icon{
  width: 32px;
  height: 32px;
  
}

.cta-right{
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  justify-items: end;
  max-width: 710px;
}

.cta-phone{
  object-fit: contain;
  display: block;
  max-height: 509px;
  height: 100%;
  
}
.cta-phone-mob {
	display: none;
}

.site-footer{
  background: #0c0f13;
  color: rgba(255,255,255,.86);
  margin-top: 18px;
  padding: 0 50px;
}

.footer-inner{
  padding: 26px 0 18px;
  display: flex;
  justify-content:space-between;
  gap: 22px;
  
}

.footer-brand {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.footer-mark{
  background: linear-gradient(180deg, #1a8bff, #0a57d6);
}

.footer-brand__top{
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.footer-brand__name{
  font-weight: 700;
  font-size: 28px;
  font-family: "Urbanist"
}

.footer-email{
  display: inline-block;
  margin-top: 12px;
  color: rgba(255,255,255,.65);
  font-size: 12px;
  text-decoration: underline;
}
.footer-email:hover{ color: rgba(255,255,255,.88); }

.footer-nav{
  display: flex;
  flex-direction: column;
  gap: 10px;
 
}
.footer-link{
  color: rgba(255,255,255,.82);
  font-weight: 600;
  font-size: 16px;
  
}
.footer-link:hover{ color: #fff; }

.footer-cta{
  justify-self: start;
  text-align: left;
  max-width: 320px;
}
.footer-cta__title{
  font-weight: 700;
  font-size: 16px;
  
  color: rgba(255,255,255,.88);
}
.footer-cta__text{
  margin-top: 6px;
  font-size: 14px;
  color: rgba(255,255,255,.55);
}
.footer-store{
  margin-top: 12px;
  box-shadow: 0 18px 40px rgba(0,0,0,.35);
}

.footer-bottom{
  border-top: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.03);
}
.footer-bottom__inner{
  padding: 14px 0;
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  color: rgba(255,255,255,.58);
  font-size: 11px;
}
.footer-legal{
  display: inline-flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}
.appstore_top {width: 190px; height: 54px}
.footer-legal__link{ color: rgba(255,255,255,.58); }
.footer-legal__link:hover{ color: rgba(255,255,255,.82); }
.footer-dot{ opacity: .6; }

/* Responsive */
@media (max-width: 980px){
  .nav{ display: none; }
  .hero-card{ padding: 40px 8px 8px; min-height: 520px; }
  .phones{ height: 340px; gap: 18px; }
  .benefits-wrap{ padding: 28px 18px 24px; }
  .benefits-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .how-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .why-grid{ gap: 26px 34px; }
  .cta-banner{ padding: 30px 22px; grid-template-columns: 1.1fr .9fr; }
  .footer-inner{ grid-template-columns: 1fr 1fr; }
  .footer-cta{ justify-self: start; text-align: left; }
}

@media (max-width: 720px){
	.site-header {
		margin-top: 16px;
	}
	.brand-text {
		font-size: 22px;
	}
	.line, .path {
		display: none;
	}
  .header-inner{ gap: 12px; padding: 16px;}
  .cta-btn--appstore{ padding: 0; }
  .appstore {width: 190px; height: 54px}
  .appstore_top {width: 154px; height: 44px}
  .cta-btn__big{ font-size: 14px; }
  .container {
	  padding: 0 16px;
  }
  .hero-title {
	  font-size: 48px;
	  margin: 0;
  }

  .hero{ padding: 14px 0 26px; }
  .hero-card{
		background: no-repeat url(../img/main_img_mob.webp);
		background-size: contain;
		max-height: 502px;
		 }
  .hero-badge{ display: none}

  .hero-subtitle br{ display:none; }
  
  .section-title {
	  font-size: 36px;
	  margin: 12px 0 32px 0;
  }
  .benefit-icon {
	  width: 64px;
	  height: 64px;
  }
  .benefit-title {
	  font-size: 18px;
  }
  .benefit-text {
	  font-size: 12px;
  }
  .how-title {
	  font-size: 18px;
  }
  .how-text {
	  font-size: 12px;
  }
  .how-card {
	  height: 342px;
  }
  .why-icon {
	  width: 64px;
	  height: 64px;
  }
  .why-text {
	  font-size: 18px;
  }
  
  .cta-title {
	  font-size: 48px;
  }
  .cta-subtitle {
	  font-size: 18;
  }

  .phones{
    grid-template-columns: 1fr;
    height: auto;
    position: relative;
    left: auto;
    bottom: auto;
    transform: none;
    width: 100%;
    margin-top: 22px;
    gap: 14px;
    align-items: stretch;
  }
  .phone{ transform: none; }
  .phone__screen{ min-height: 260px; }

  .hero-footer{
    flex-direction: column;
    gap: 24px;
    margin-top: 18px;
  }
  .hero-footer__text{ font-size: 32px; }
  .benefits{ padding: 14px 0 34px; }
  .benefits-wrap{ border-radius: 22px; padding: 24px 14px 18px; }
  .benefits-grid{ grid-template-columns: 1fr 1fr; gap: 8px; }
  .benefit-card{ padding: 12px; border-radius: 12px;}
  .how{ padding: 26px 0 10px; }
  .how-grid{ grid-template-columns: 1fr; gap: 16px; }
  .how-media{ min-height: 160px; }
  .why{ padding: 18px 0 44px; }
  .why-grid{ grid-template-columns: 1fr; justify-items: stretch; gap: 20px; }
  .why-item{ grid-template-columns: 64px 1fr; gap: 14px; }
  .cta{ padding: 18px 0 18px; }
  .cta-banner{
    padding: 24px 16px 0 16px;
    grid-template-columns: 1fr;
    gap: 14px;
    border-radius: 22px;
	display: flex;
        flex-direction: column;
		height: auto;
		background-position: center;
		height: 583px;
		justify-content: space-between;
  }
  .cta-left {
	  text-align: center;
  }
  .cta-right{ justify-items: center; }
  .cta-phone{ transform: none; width: min(320px, 100%); display: none; }
  .cta-phone-mob {display: block; width: 100%;position: relative;
        top: -60px;}
  .footer-inner{ display: flex; flex-direction: column }
  .footer-nav{ justify-items: start; }
  .footer-cta{ justify-self: start; margin-bottom: 24px }
  .site-footer {
	  padding: 32px 0;
  }
  .brand-mark {
	  width: 50px;
	  height: 50px;
  }
  .footer-brand {
	  gap: 16px;
  }
	.footer-bottom__inner{
		margin: 24px 0 0 0;
	}
}
