/* ─────────  PALETTE & BASE  ───────── */
@import url("https://fonts.googleapis.com/css2?family=Exo+2:wght@400;700;800&display=swap");

:root {
  --yellow: #ffc727;
  --black: #000;
  --grey: #6d6d6d;
  --blue: #0066ff;
  --border: #e7e7e7;
  --radius: 8px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: auto;
  font-family: "Exo 2", sans-serif;
  background: #fff;
  color: var(--black);
  line-height: 1.55;
  max-width: 600px;
}

/* ─────────  HERO  ───────── */
.hero {
  text-align: center;
  padding: 1rem;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.hero__logo {
  width: 140px;
}

.hero__brand {
    font-size: 2.2rem;
    font-weight: 800;
    margin: 0;
    letter-spacing: 0.5px;
}

.hero__tag {
  font-size: 1rem;
  color: var(--blue);
  margin-top: 0;
  margin-bottom: 2rem;
}

/* ─────────  STATS BAR  ───────── */
.stats-line {
  display: flex;
  flex-wrap: nowrap;           /* stay inline always */
  justify-content: center;
  max-width: 940px;
  margin: 1rem -1rem !important;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stat-item {
  flex: 1 1 0;
  min-width: 0;
  padding: 10px 0;
  position: relative;
  overflow: hidden;
}

.stat-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 30%;
  right: 0;
  width: 1px;
  height: 40%;
  background: var(--border);
}

.stat-item__value {
  display: block;
  font-size: 1.1rem;
  font-weight: 800;
}

.stat-item__label {
  font-size: 0.6rem;
  color: var(--grey);
  text-transform: uppercase;
  letter-spacing: 0.35px;
}

/* yellow underline on hover (desktop only) */
@media (hover: hover) {
  .stat-item::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 4px;
    background: var(--yellow);
    transform: translateX(-50%);
    transition: width 0.25s ease;
  }
  .stat-item:hover::before {
    width: 50%;
  }
}

/* ─────────  BUTTONS  ───────── */
.btn {
  display: inline-block;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.7rem 1.2rem;
  border-radius: var(--radius);
  transition: transform 0.15s ease;
}
.btn:hover {
  transform: translateY(-3px);
}

/* half-width pair */
.cta-row {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.btn--signup {
  flex: 1 1 0;
  max-width: 260px;
  background: var(--yellow);
  color: var(--black);
}

.btn--login {
  flex: 1 1 0;
  max-width: 260px;
  background: #fff;
  color: var(--black);
  border: 1px solid var(--border);
}


/* ─────────  FIXED DOWNLOAD BUTTON  ───────── */
.btn--download{
  /* layout */
  display:block;
  width:95%;
  margin:0 auto;
  position:fixed;
  left:0; right:0; bottom:15px;
  z-index:100000;

  /* visual */
  background:var(--black);
  color:#fff;
  font-weight:700;
  text-align:center;
  padding:1rem 1.6rem;
  border-radius:var(--radius);

  /* shimmer container */
  overflow:hidden;          /* clip shine inside pill */
  isolation:isolate;        /* keeps pseudo layer on top */
}

/* —— slim, tilted shimmer band —— */
.btn--download::before{
  content:"";
  position:absolute;
  top:0;                     /* full button height */
  left:-75%;                 /* start off-screen */
  width:50%;                 /* narrow band */
  height:100%;
  background:linear-gradient(
      130deg,
      rgba(255,255,255,0)   0%,
      rgba(255,255,255,.55) 50%,
      rgba(255,255,255,0) 100%
  );
  transform:skewX(-20deg);   /* extra tilt */
  pointer-events:none;       /* ignore clicks */
  animation:shine 2.5s ease-in-out infinite;
}

/* quicker sweep on hover / tap */
.btn--download:hover::before{
  animation-duration:1.5s;
}

/* keyframes move band left → right */
@keyframes shine{
  0%   { left:-75%; }
  60%  { left:130%; }
  100% { left:130%; }
}



/* ─────────  RESPONSIVE TYPE  ───────── */
@media (min-width: 700px) {
  .hero__brand {
    font-size: 2.9rem;
  }
  .hero__tag {
    font-size: 1.1rem;
  }
  .stat-item__value {
    font-size: 1.75rem;
  }
  .stat-item__label {
    font-size: 0.78rem;
  }
}



/* ─────────  BENEFITS SECTION  ───────── */
.benefits{
  text-align:center;
  padding:3.5rem 1rem 0rem;
}

.benefits__title{
  font-size:1.7rem;
  font-weight:800;
  margin:0 0 .4rem;
}

.benefits__subtitle{
  font-size:1rem;
  color:var(--grey);
  margin:0 0 1.5rem;
}

/* responsive grid */
.benefit-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(160px,1fr));
  gap:0.5rem;
  max-width:920px;
  margin:0 auto;
}

/* individual card */
.benefit-card{
  background:#fff;
  border:1px solid var(--border);   /* uses same var from hero */
  border-radius:var(--radius);
  padding:2rem .5rem 1.8rem;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:flex-start;
  gap:1.2rem;
  box-shadow:0 4px 14px rgba(0,0,0,.04);
  transition:transform .18s ease, box-shadow .18s ease;
}
.benefit-card:hover{
  transform:translateY(-4px);
  box-shadow:0 8px 24px rgba(0,0,0,.06);
}

/* icon + label */
.benefit-icon{
  width:64px;
  height:64px;
  object-fit:contain;
}
.benefit-label{
  font-size:1rem;
  font-weight:700;
  line-height:1.3;
  margin:0;
}

/* slightly tighter on phones */
@media (max-width:400px){
  .benefit-icon{ width:56px; height:56px; }
  .benefit-label{ font-size:.9rem; }
}





/* ─────────  TRUSTED & CERTIFIED  ───────── */
.trusted{
  text-align:center;
  padding: 3rem 1rem 1rem;
  background:#fff;
}
.trusted__title{
  font-size:clamp(1.7rem,4vw,2.2rem);
  font-weight:800;
  margin:0 0 .6rem;
}
.trusted__sub{
  max-width:680px;
  margin:0 auto 3rem;
  font-size:clamp(.95rem,2.2vw,1.05rem);
  color:var(--grey);
  line-height:1.45;
}

/* grid */
.badge-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(150px,1fr));
  gap:1.4rem;
  max-width:960px;
  margin:0 auto;
}

/* card */
.badge-card{
  position:relative;
  aspect-ratio:1/1;
  display:flex;
  flex-direction:column;
  align-items:center;
  background:#fff;
  border:1px solid var(--border);
  border-radius:var(--radius);
  box-shadow:0 4px 14px rgba(0,0,0,.04);
  overflow:hidden;
  transition:.22s ease;
}
.badge-card:hover{
  transform:translateY(-4px);
  box-shadow:0 10px 24px rgba(0,0,0,.08);
}
/* gold hover ring */
.badge-card::before{
  content:"";
  position:absolute;
  inset:0;
  border-radius:inherit;
  padding:1px;
  background:linear-gradient(135deg,#ffd54f 0%,#ffe27d 50%,#ffd54f 100%);
  -webkit-mask:linear-gradient(#fff 0 0) content-box,
                linear-gradient(#fff 0 0);
  -webkit-mask-composite:xor; mask-composite:exclude;
  opacity:0; transition:opacity .25s;
}
.badge-card:hover::before{ opacity:1; }

/* logo area */
.badge-logo{ max-width:120px; max-height:80px; object-fit:contain; }
.badge--small{ max-width:100px; max-height:70px; }

.badge-img{
  display: flex;
    align-items: center;
    height: 100%;
}

/* caption footer bar */
.badge-caption{
  margin-top:auto;
  width:100%;
  padding:.85rem .5rem;
  border-top:1px solid var(--border);
  font-size:.9rem;
  color:#585858;
}
.pay-caption{ font-weight:700; color:var(--black); }

/* payment logos */
.pay-logos{
  margin-top:auto;
  display:flex;
  gap:1.2rem;
  justify-content:center;
}
.pay-logo{
  width:60px; height:60px;
  display:flex; align-items:center; justify-content:center;
}
/* Cashfree rounded */
.cashfree{
  border-radius:10px;
  background:#fff;
  padding:6px;
  box-shadow:0 2px 6px rgba(0,0,0,.06);
}
/* Razorpay pill */
.razorpay-bg{
  border-radius:10px;
  background:#fff;
  padding:9px 11px;
  box-shadow:0 2px 6px rgba(0,0,0,.06);
}
.razorpay-bg img{ width:44px; }

/* responsive tweaks */
@media(max-width:400px){
  .badge-grid{ gap:1rem; }
  .badge-logo{ max-width:100px; }
  .badge--small{ max-width:85px; }
  .pay-logo{ width:52px; height:52px; }
  .razorpay-bg img{ width:38px; }
}








/* ─────────  REVIEWS SECTION  ───────── */
.reviews{
  text-align:center;
  padding:3rem 1rem 5rem;
  background:#fff;
}

/* headings */
.reviews__title{
  font-size:1.8rem;
  font-weight:800;
  margin:0 0 .4rem;
}
.reviews__subtitle{
  font-size:1rem;
  color:var(--grey);
  margin:0 0 1rem;
}

/* ───── summary rating box ───── */
.rating-box{
  display:flex;
  flex-wrap:wrap;
  gap:2rem 1.6rem;
  justify-content:center;
  align-items:center;
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:1.6rem 2rem;
  margin-bottom:3rem;
}
.rating-value-wrap{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:.35rem;
}
.rating-value{
  font-size:2.4rem;
  font-weight:800;
  line-height:1;
}
.rating-stars{
  font-size:1.3rem;
  color:var(--yellow);
  letter-spacing:.12rem;
}
.rating-count{
  font-size:.8rem;
  color:var(--grey);
}

/* 5-to-1 star bar list */
.rating-bars{
  display:flex;
  flex-direction:column;
  gap:.5rem;
  min-width:150px;
  flex:1;
}
.rating-row{
  display:flex;
  align-items:center;
  gap:.55rem;
}
.row-label{
  font-size:.8rem;
  font-weight:700;
  width:12px;      /* keeps label column narrow */
}
.row-bar{
  flex:1;
  height:6px;
  background:#e9e9e9;
  border-radius:4px;
  overflow:hidden;
}
.row-bar span{
  display:block;
  height:100%;
  background:var(--yellow);
}

/* ───── carousel / slider layout ───── */
.review-slider{
  position:relative;
  max-width:600px;
  margin:0 auto 3rem;
}
.review-card{
  display:none;
  background:#fff;
  border:1px solid var(--border);
  border-radius:24px;
  padding:3.2rem 1.8rem 2.8rem;
  text-align:left;
  box-shadow:0 8px 24px rgba(0,0,0,.06);
}
.review-card.active{ display:block; }

/* eye-catching ribbon banner */
.win-banner{
  position:absolute;
  top:-24px;
  left:50%;
  transform:translateX(-50%);
  padding:.6rem 1rem;
  font-weight:700;
  font-size:.9rem;
  color:var(--black);
  background:linear-gradient(90deg,#ffd54f 0%,#ffc107 100%);
  box-shadow:0 4px 10px rgba(0,0,0,.15);
  border-radius:32px;
  border:2px solid #fff;
}

/* card header (avatar & name) */
.review-header{
  display:flex;
  align-items:center;
  gap:.9rem;
  margin-bottom:1.6rem;
}
.avatar{
  width:72px;
  height:72px;
  border-radius:50%;
  object-fit:cover;
  border:2px solid var(--yellow);
}
.review-name{
  margin:0;
  font-size:1.1rem;
  font-weight:700;
}
.review-loc{
  margin:.2rem 0 0;
  font-size:.85rem;
  color:var(--grey);
}

/* review body text */
.review-text{
  font-size:1.05rem;
  line-height:1.55;
  margin:0;
}

/* navigation arrows */
.nav-btn{
  width:56px;
  height:56px;
  border:none;
  border-radius:50%;
  background:var(--black);
  color:#fff;
  font-size:1.6rem;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  margin:0 .6rem;
  cursor:pointer;
  box-shadow:0 4px 10px rgba(0,0,0,.1);
  transition:transform .12s ease, background .12s ease;
}
.nav-btn:hover{
  transform:translateY(-3px);
  background:#222;
}
.nav-prev{ margin-right:.5rem; }

/* ───── responsive type scaling ───── */
@media (min-width:700px){
  .review-text     { font-size:1.15rem; }
  .review-name     { font-size:1.2rem;  }
  .rating-bars     { min-width:180px;   }
}









/* ─────────  FAQ ACCORDION  ───────── */
.faq {
  max-width: 760px;
  margin: 0 auto 5rem;
  padding: 0 1rem;
}

.faq__title {
  text-align: center;
  font-size: 1.6rem;
  font-weight: 800;
  margin: 0 0 1.5rem;
}

/* each accordion block */
.faq-item + .faq-item {
  margin-top: 1.2rem;
}

.faq-q {
  width: 100%;
  text-align: left;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.2rem 1rem 1.2rem 1.4rem;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  color: var(--black);
  cursor: pointer;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.15s ease;
}
.faq-q:hover {
  background: #fafafa;
}

/* arrow indicator */
.faq-arrow {
  width: 0.7rem;
  height: 0.7rem;
  border-right: 2px solid var(--black);
  border-bottom: 2px solid var(--black);
  transform: rotate(45deg);
  transition: transform 0.25s ease;
}

/* answer */
.faq-a {
  max-height: 0;
  overflow: hidden;
  background: #fff;
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  border-radius: 0 0 var(--radius) var(--radius);
  font-size: 0.95rem;
  color: var(--grey);
  padding: 0 1rem;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

/* open state */
.faq-item.open .faq-a {
  padding: 1rem 1rem 1.4rem 1.4rem;
  max-height: 260px; /* tall enough for longest answer */
}

.faq-item.open .faq-arrow {
  transform: rotate(-135deg);
}

/* subtle yellow focus outline */
.faq-q:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: 2px;
}





/* ─────────  FOOTER  ───────── */
.lp-footer{
  background:#fafafa;                  /* soft light background */
  border-top:1px solid var(--border);  /* same divider grey */
  padding:3rem 1rem 3.4rem;
  font-size:.9rem;                     /* base text size */
}

.footer-inner{
  max-width:820px;
  margin:0 auto;
  text-align:center;
  color:var(--black);
}

/* disclaimer ─ 50 % opacity for softer tone */
.footer-disclaimer{
  opacity:.5;
  line-height:1.45;
  margin:0 0 1.7rem;
}

/* copyright ─ slightly larger & bold for emphasis */
.footer-copy{
  font-size:.9rem;     /* a bit larger than default */
  font-weight:700;     /* highlight */
  color:var(--black);  /* solid contrast */
  margin:0;
}
