:root{
  --ink:#15104d;
  --muted:#475467;
  --line:#e4e7ec;
  --line-strong:#808080;
  --surface:#f9fafb;
  --surface-alt:#f2f4f7;
  --placeholder:#d9d9d9;
  --band:#c0c0c0;
  --cta:#000;
  --white:#fff;
}

html, body { width:100%; overflow-x:hidden; }
*, *::before, *::after { box-sizing:border-box; }

body{
  margin:0;
  font-family:Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background:#fff;
  color:var(--ink);
}

.page{
  max-width:375px;
  margin:0 auto;
  background:#fff;
}

.hero,
.section{
  padding:32px 20px 0;
}

.hero{
  display:flex;
  flex-direction:column;
  gap:24px;
}

.hero-copy,
.section-head,
.step-copy{
  display:flex;
  flex-direction:column;
  gap:8px;
}

.hero-copy,
.section-head{
  text-align:center;
}

h1,
h2,
h3,
p{
  margin:0;
}

h1,
h2,
.section-title-center{
  font-size:24px;
  line-height:30px;
  font-weight:700;
  letter-spacing:.15px;
}

h3{
  font-size:16px;
  line-height:23px;
  font-weight:600;
  letter-spacing:.15px;
}

p{
  font-size:14px;
  line-height:21px;
}

.section-head p,
.pricing-note,
.faq-a,
.testimonial-role{
  color:var(--muted);
}

.btn{
  min-height:48px;
  padding:8px 12px;
  border-radius:8px;
  text-decoration:none;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  font-size:14px;
  font-weight:500;
  letter-spacing:.25px;
}

.btn-primary{
  background:var(--cta);
  color:var(--white);
}

.arrow{
  width:16px;
  height:16px;
  position:relative;
  display:inline-block;
}

.arrow::before,
.arrow::after{
  content:"";
  position:absolute;
  background:#fff;
  border-radius:999px;
}

.arrow::before{
  width:11px;
  height:2px;
  top:7px;
  left:1px;
}

.arrow::after{
  width:7px;
  height:7px;
  right:1px;
  top:4px;
  border-top:2px solid #fff;
  border-right:2px solid #fff;
  background:transparent;
  transform:rotate(45deg);
}

.image-block,
.icon-block,
.icon-mini,
.pricing-badge,
.avatar,
.social-dot{
  background:var(--placeholder);
}

.hero-image{
  height:248px;
  background:var(--band);
}

.image-medium{
  height:212px;
}

.image-small{
  height:104px;
}

.feature-list,
.step-cards,
.tool-list,
.pricing-points,
.faq-block{
  display:flex;
  flex-direction:column;
}

.section{
  display:flex;
  flex-direction:column;
  gap:16px;
}

.feature{
  padding:16px 0 16px 16px;
  border-left:4px solid var(--surface-alt);
}

.feature-active{
  border-left-color:#000;
}

.feature p{
  margin-top:4px;
  color:var(--muted);
}

.step-cards,
.tool-list,
.pricing-points{
  gap:24px;
}

.step-card{
  display:flex;
  flex-direction:column;
  gap:16px;
  text-align:center;
}

.tool-item,
.pricing-item{
  display:flex;
  align-items:flex-start;
  gap:16px;
}

.tool-copy,
.pricing-item div:last-child{
  display:flex;
  flex-direction:column;
  gap:4px;
}

.icon-block{
  width:56px;
  height:56px;
  flex:0 0 auto;
}

.section-title-center{
  text-align:center;
}

.testimonial-wrap{
  display:flex;
  flex-direction:column;
  gap:16px;
}

.testimonial-card{
  background:var(--surface);
  border-radius:16px;
  padding:24px;
  display:flex;
  flex-direction:column;
  gap:24px;
  align-items:center;
}

.testimonial-quote{
  font-size:24px;
  line-height:32px;
  font-weight:500;
  text-align:center;
}

.testimonial-person,
.testimonial-meta{
  display:flex;
  flex-direction:column;
  align-items:center;
}

.testimonial-person{
  gap:16px;
}

.avatar{
  width:56px;
  height:56px;
  border-radius:999px;
}

.testimonial-name{
  font-size:16px;
  line-height:24px;
  font-weight:600;
  color:#101828;
}

.dots{
  display:flex;
  justify-content:center;
  gap:16px;
}

.dot{
  width:10px;
  height:10px;
  border:0;
  border-radius:999px;
  padding:0;
  background:#e4e7ec;
}

.dot.active{
  background:#808080;
}

.pricing-highlight{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:8px;
  padding:0 16px;
  text-align:center;
}

.pricing-badge{
  width:72px;
  height:72px;
}

.pricing-figure{
  font-size:18px;
  line-height:23px;
  font-weight:600;
  letter-spacing:.15px;
}

.icon-mini{
  width:32px;
  height:32px;
  flex:0 0 auto;
}

.pricing-note{
  text-align:center;
  font-style:italic;
}

.section-cta{
  position:relative;
  padding-top:48px;
  padding-bottom:48px;
  overflow:hidden;
}

.cta-background{
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, #d9d9d9 0%, #efefef 100%);
  z-index:0;
}

.cta-copy,
.section-cta .btn{
  position:relative;
  z-index:1;
}

.cta-copy{
  display:flex;
  flex-direction:column;
  gap:8px;
  text-align:center;
}

.faq-section{
  align-items:center;
}

.faq-block{
  width:100%;
}

.faq-title{
  font-size:14px;
  line-height:28px;
  font-weight:600;
  color:#101828;
  margin-bottom:8px;
}

.faq-item{
  border-top:.5px solid var(--line-strong);
}

.faq-item:first-of-type{
  border-top:0;
}

.faq-btn{
  width:100%;
  border:0;
  background:transparent;
  padding:8px 0;
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:8px;
  text-align:left;
  cursor:pointer;
}

.faq-q{
  width:303px;
  font-size:14px;
  line-height:28px;
  font-weight:500;
  color:#101828;
}

.faq-plus{
  width:24px;
  height:24px;
  border:2px solid #98a2b3;
  border-radius:999px;
  position:relative;
  flex:0 0 auto;
  margin-top:2px;
}

.faq-plus::before,
.faq-plus::after{
  content:"";
  position:absolute;
  left:50%;
  top:50%;
  background:#98a2b3;
  transform:translate(-50%, -50%);
}

.faq-plus::before{
  width:12px;
  height:2px;
}

.faq-plus::after{
  width:2px;
  height:12px;
}

.faq-a{
  padding:0 0 12px;
  font-size:13px;
  line-height:19px;
}

.faq-item.open .faq-plus::after{
  display:none;
}

.footer{
  background:#000;
  color:#fff;
  margin-top:48px;
  padding:16px 19px;
  display:flex;
  flex-direction:column;
  gap:24px;
}

.footer-logo{
  width:80px;
  height:auto;
  display:block;
}

.footer-links{
  display:flex;
  flex-direction:column;
  gap:8px;
}

.footer-links a,
.footer-legal a{
  color:#fff;
  text-decoration:none;
  font-size:12px;
  line-height:19px;
}

.footer-social{
  display:flex;
  align-items:center;
  gap:8px;
}

.social-dot{
  width:24px;
  height:24px;
  border-radius:999px;
}

.footer-bottom{
  display:flex;
  flex-direction:column;
  gap:8px;
  font-size:10px;
  line-height:19px;
}

.footer-legal{
  display:flex;
  gap:16px;
}
