/* Stop accidental sideways scroll */
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:#15104D;
}

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

/* HERO */
.hero{
  padding:24px 20px 8px;
  text-align:center;
}

.h1{
  margin:0 0 8px;
  font-size:24px;
  line-height:30.24px;
  font-weight:700;
  letter-spacing:.15px;
}

.sub{
  margin:0;
  font-size:14px;
  line-height:19px;
  font-weight:400;
}

/* Figma blocks */
.img{ width:100%; background:#D9D9D9; }
.img-hero{ height:232px; }
.band{
  width:100%;
  height:256px;
  background:#C0C0C0;
}
.img-mid{ height:212px; border-radius:0; }
.img-small{ height:104px; border-radius:0; }

/* Inner stacked content */
.stack{
  padding:48px 20px 0;
  display:flex;
  flex-direction:column;
  gap:56px; /* Figma uses big gaps */
}

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

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

.h2{
  margin:0;
  font-size:24px;
  line-height:30.24px;
  font-weight:700;
  letter-spacing:.15px;
}

.body{
  margin:0;
  font-size:12px;
  line-height:19px;
  font-weight:400;
}

.h3{
  margin:0;
  font-size:16px;
  line-height:23px;
  font-weight:600;
  letter-spacing:.15px;
  text-align:center;
}

.p{
  margin:0;
  font-size:14px;
  line-height:21px;
  font-weight:400;
  color:#15104D;
}

.p-muted{
  margin:0;
  font-size:14px;
  line-height:21px;
  font-weight:400;
  color:#475467;
  text-align:center;
}

.left{ text-align:left; }

/* Feature list (left border) */
.featurelist{
  display:flex;
  flex-direction:column;
}
.feature{
  padding:16px 0 16px 16px;
  border-left:4px solid #F2F4F7;
  display:flex;
  flex-direction:column;
  gap:4px;
}
.feature-active{ border-left-color:#000; }

/* Buttons */
.btn{
  height:48px;
  padding:8px;
  border-radius:8px;
  background:#000;
  color:#fff;
  text-decoration:none;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  font-size:14px;
  font-weight:500;
  letter-spacing:.25px;
}

.arrow{
  width:16px;
  height:16px;
  display:inline-block;
  position:relative;
}
.arrow::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(#fff,#fff) 2px 7px / 12px 2px no-repeat,
    linear-gradient(#fff,#fff) 9px 4px / 2px 8px no-repeat;
  transform:rotate(-45deg);
  opacity:0; /* hide the fake arrow stem to avoid looking wrong */
}

/* (Use an inline SVG arrow in HTML if you want perfect fidelity) */

/* Services */
.services{
  display:flex;
  flex-direction:column;
  gap:16px;
}
.service{
  display:flex;
  flex-direction:column;
  gap:8px;
}
.icon32{
  width:32px; height:32px;
  background:#D9D9D9;
}

/* Parent cards */
.cards{
  display:flex;
  flex-direction:column;
  gap:24px;
}
.card{
  display:flex;
  flex-direction:column;
  gap:16px;
  align-items:center;
}
.card-text{
  display:flex;
  flex-direction:column;
  gap:4px;
  text-align:center;
}

/* Pros */
.pros{
  display:flex;
  flex-direction:column;
  gap:24px;
}
.pro{
  display:flex;
  gap:16px;
  align-items:flex-start;
}
.icon56{
  width:56px; height:56px;
  background:#D9D9D9;
}
.pro-text{
  display:flex;
  flex-direction:column;
  gap:4px;
}

/* CTA stack */
.btn-stack{
  display:flex;
  flex-direction:column;
  gap:16px;
}

/* Testimonials scroller */
.twrap{ max-width:100%; overflow-x:clip; }
.tscroller{
  display:flex;
  gap:16px;
  overflow-x:auto;
  scroll-snap-type:x mandatory;
  -webkit-overflow-scrolling:touch;
  padding-bottom:8px;
}
.tscroller::-webkit-scrollbar{ height:0; }

.tcard{
  flex:0 0 100%;
  min-width:0;
  scroll-snap-align:start;
  background:#F9FAFB;
  border-radius:16px;
  padding:32px 24px;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:24px;
}

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

.tperson{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:16px;
}

.avatar{
  width:56px;
  height:56px;
  border-radius:9999px;
  background:#E0E0E0;
}

.who{ text-align:center; }
.name{
  font-size:16px;
  line-height:24px;
  font-weight:600;
  color:#101828;
}
.tag{
  font-size:14px;
  line-height:20px;
  font-weight:400;
  color:#475467;
}

.dots{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:16px;
  margin-top:16px;
}
.dot{
  width:10px;
  height:10px;
  border-radius:50%;
  border:0;
  padding:0;
  background:#E4E7EC;
}
.dot.active{ background:#808080; }

/* FAQ */
.faq{ align-items:center; }
.faq-block{
  width:100%;
  display:flex;
  flex-direction:column;
}
.faq-title{
  width:303px;
  font-size:14px;
  font-weight:600;
  line-height:28px;
  color:#101828;
  margin-bottom:8px;
}
.faq-item{
  width:100%;
  padding:8px 0;
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
}
.faq-item + .faq-item{ border-top:0.5px solid #808080; }
.faq-q{
  width:303px;
  font-size:14px;
  font-weight:500;
  line-height:28px;
  color:#101828;
}
.faq-plus{
  width:24px;
  height:24px;
  border-radius:999px;
  border:2px solid #98A2B3;
  position:relative;
  flex:0 0 auto;
  margin-top:2px;
}
.faq-plus::before,
.faq-plus::after{
  content:"";
  position:absolute;
  background:#98A2B3;
  left:50%;
  top:50%;
  transform:translate(-50%,-50%);
}
.faq-plus::before{ width:12px; height:2px; }
.faq-plus::after{ width:2px; height:12px; }

/* Footer (Figma block) */
.footer{
  background:#000;
  color:#fff;
  padding:16px 19px;
  display:flex;
  flex-direction:column;
  gap:24px;
  margin-top:48px;
}

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

.footer-links{
  display:flex;
  flex-direction:column;
  gap:8px;
}
.footer-links a{
  color:#fff;
  text-decoration:none;
  font-size:12px;
  line-height:19px;
  font-weight:400;
}

.footer-social{
  display:flex;
  gap:8px;
  align-items:center;
}
.social-dot{
  width:24px;
  height:24px;
  border-radius:999px;
  background:#D9D9D9;
  display:inline-block;
}

.footer-bottom{
  display:flex;
  flex-direction:column;
  gap:8px;
  font-size:10px;
  line-height:19px;
  font-weight:400;
}
.footer-legal{
  display:flex;
  gap:16px;
}
.footer-legal a{
  color:#fff;
  text-decoration:none;
}
/* FAQ accordion behavior */
.faq-item{
  display:flex;
  flex-direction:column;
}

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

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

/* turn plus into minus when open */
.faq-item.open .faq-plus::after{
  display:none;
}
