/* ═══════════════════════════════════════════════════
   QuackQuack Signup Page (step1) — Gen Z Theme
   Drop-in CSS — no HTML changes needed
   ═══════════════════════════════════════════════════ */

/* ── RESET & BASE ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: 'Bricolage Grotesque', system-ui, -apple-system, sans-serif; color: #1A1025; background: #FFF9F7; overflow-x: hidden; line-height: 1.5; -webkit-overflow-scrolling: touch; }
::selection { background: #FF3366; color: #fff; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; }

.wrapper { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
@media(min-width:768px) { .wrapper { padding: 0 40px; } }

.content,
.showcontent { }

/* ═══ HEADER ═══ */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,249,247,0.88);
  backdrop-filter: blur(24px) saturate(150%);
  -webkit-backdrop-filter: blur(24px) saturate(150%);
  border-bottom: 1px solid rgba(0,0,0,0.07);
}

/* Hide the colored top strips */
.topheader, .topheader2, .topheader3 { display: none; }

.header .wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.header .logo { display: flex; align-items: center; flex-shrink: 0; }
.header .logo img { height: 42px; width: auto; }

.head_right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.head_right small {
  font-size: 13px;
  font-weight: 500;
  color: rgba(26,16,37,0.45);
  font-style: normal;
}
@media(max-width:640px) { .head_right small { display: none; } }

.head_right a {
  display: inline-flex;
  align-items: flex-end;
  padding: 10px 24px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 700;
      color: rgb(240, 49, 108);
  transition: all 0.25s cubic-bezier(0.16,1,0.3,1);
}


/* ═══ BANNER / HERO ═══ */
.banner {
  padding: 32px 0 40px;
  position: relative;
}
@media(min-width:768px) { .banner { padding: 48px 0 60px; } }

.banner_box {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}
@media(min-width:820px) {
  .banner_box { grid-template-columns: 1fr 1fr; gap: 48px; }
}

/* Left side — image + meet text */
.banner_cont,
.showban_cont {
  order: 2;
  text-align: center;
}
@media(min-width:820px) { .banner_cont { order: 0; text-align: left; } }

.pics_img {
  margin-bottom: 24px;
}

.pics_img img {
  border-radius: 24px;
  max-width: 100%;
  height: auto;
}

.meet_txt,
.meet_txtnew {
  font-size: clamp(24px, 4vw, 55px);
  font-weight: 800;
  color: #1A1025;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.meet_txt strong {
  color: #FF3366;
}
.meet_txt .qq-cursive{
    font-family: Caveat, cursive;
    font-weight: 700;
    color: rgb(123, 63, 242);
    font-size: 1.12em;
}
.meet_txt small {
  display: block;
  font-size: 16px;
  font-weight: 500;
  color: rgba(26,16,37,0.55);
  margin-top: 4px;
  font-style: normal;
}

.meet_txt small strong {
  color: #7C3AED;
  font-weight: 800;
}

/* ═══ REGISTRATION FORM ═══ */
.reg_form {
  max-width: 440px;
  width: 100%;
  order: 1;
}
@media(min-width:820px) { .reg_form { order: 0; justify-self: end; } }

.reg_form h1 {
  font-size: 20px;
  font-weight: 800;
  color: #1A1025;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  text-align: center;
}
@media(min-width:820px) { .reg_form h1 { text-align: left; display: none; } }

.form_main {
  background: #FFFFFF;
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 12px 48px rgba(0,0,0,0.05);
}

.form_block {
  padding: 32px 28px;
}
@media(min-width:768px) { .form_block { padding: 40px 36px; } }

.form_title {
  text-align: center;
  margin-bottom: 4px;
}

.form_title strong {
  font-size: 22px;
  font-weight: 800;
  color: #1A1025;
  letter-spacing: -0.02em;
}

.form_title + div .enter_txt,
.form_title + div + div .enter_txt { }

/* ── Labels ── */
.enter_txt {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #000;
  margin-bottom: 0;
  margin-top: 16px;
}

/* ── Input Fields ── */
.field_block { margin-bottom: 16px; }

.input_field,
.input_field.mobile_field {
  display: flex;
  align-items: center;gap: 10px;
  overflow: hidden;
}

.input_field:focus-within {
  border-color: #FF3366;
  box-shadow: 0 0 0 3px rgba(255,51,102,0.08);
}

.countrycode_seo {
  padding: 15px 12px 15px 12px;
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #1A1025;
  border: 1.5px solid rgb(236, 232, 242);;
  background: rgb(250, 248, 252);;
  line-height: 1;
  flex-shrink: 0;
  border-radius: 15px
}

.textfield_new {
  flex: 1;
  padding: 15px 18px;
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  font-size: 16px;
  font-weight: 500;
  border: none;
  outline: none;
  flex: 1 1 0%;
    font-family: Inter, sans-serif;
    font-size: 15px;
    padding: 14px 16px;
    border: 1.5px solid rgb(236, 232, 242);
    border-radius: 14px;
    background: rgb(255, 255, 255);
    outline: none;
    color: rgba(26, 16, 37, 0.55);;
  -moz-appearance: textfield;
}
.textfield_new::-webkit-outer-spin-button,
.textfield_new::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.textfield_new::placeholder { color: rgba(26,16,37,0.28); font-weight: 400; }

.otp_block { border-radius: 14px; }

/* ── Error ── */
.error_msg {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #EF4444;
  margin-top: 6px;
  padding-left: 4px;
}

/* ── Submit Button ── */
.submit_btn, .submit_btnnext { display: block; margin-bottom: 0; }

.upgrade-button_wave {
  width: 100%;
  padding: 18px 32px;
  border: none;
  border-radius: 100px;
  background: #FF3366;
  color: #fff;
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  font-size: 18px;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.34,1.56,0.64,1);
  box-shadow: 0 6px 24px rgba(255,51,102,0.25);
  position: relative;
  overflow: hidden;
}
.upgrade-button_wave::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 100px;
  background: #FF3366;
  opacity: 0;
  z-index: -1;
}
@keyframes btnPulse { 0%,100% { opacity: 0; transform: scale(1); } 50% { opacity: 0.18; transform: scale(1.08); } }
.upgrade-button_wave:hover { box-shadow: 0 10px 36px rgba(255,51,102,0.35); }
.upgrade-button_wave:active { transform: translateY(0) scale(0.98); }

/* ── OTP Buttons ── */
.otp_btns { display: flex; gap: 10px; margin-bottom: 16px; }
.floating__input, .btnchange {
  flex: 1; padding: 12px 16px;
  border: 1.5px solid rgba(0,0,0,0.07); border-radius: 12px;
  background: transparent;
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  font-size: 14px; font-weight: 700; color: #1A1025;
  cursor: pointer; transition: all 0.25s;
}
.floating__input:hover, .btnchange:hover { border-color: #FF3366; color: #FF3366; }
.btnchange.disable { opacity: 0.4; pointer-events: none; }

.sms_txt { display: block; font-size: 12px; color: rgba(26,16,37,0.45); margin-bottom: 8px; }
.success_txt, .number_txt { font-size: 13px; color: #16A34A; font-weight: 600; margin-bottom: 12px; text-align: center; }

/* ── Terms ── */
.terms_text {
  display: block;
  text-align: center;
  font-size: 11px;
  color: rgba(26,16,37,0.32);
  margin-top: 16px;
  line-height: 1.6;
}
.terms_text a { color: #FF3366; font-weight: 600; }
.terms_text a:hover { color: #7C3AED; }

/* ── Spinner ── */
.spin_loader { padding: 16px 0; }
.dotloader { display: flex; justify-content: center; }
.dots-circle-spinner {
  width: 32px; height: 32px;
  border: 3px solid rgba(255,51,102,0.15);
  border-top-color: #FF3366;
  border-radius: 50%;
  animation: formSpin 0.7s linear infinite;
}
@keyframes formSpin { to { transform: rotate(360deg); } }

/* ═══ TRUST BADGES ═══ */
.cnt_listnew {
  padding: 32px 0;
  border-top: 1px solid rgba(0,0,0,0.07);
  border-bottom: 1px solid rgba(0,0,0,0.07);
  background: #FFFFFF;
}
.cnt_listnew .wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media(min-width:640px) { .cnt_listnew .wrapper { grid-template-columns: repeat(4, 1fr); } }

.cnt_list_item {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  padding: 16px;
  background: #FFF9F7;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,0.05);
}
.cnt_list_item_icon {
  width: 32px; height: 32px;
  flex-shrink: 0;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.cnt_list_item_txt {
  font-size: 13px;
  color: rgba(26,16,37,0.6);
  font-weight: 500;
}
.cnt_list_item_txt span {
  color: #1A1025;
  font-weight: 800;
  display: block;
}

/* ═══ STATS STRIP ═══ */
.block3 {
  position: relative;
  padding: 0;
  overflow: hidden;
}
.block3_bg {
  position: absolute; inset: 0;
  background: #FFFFFF;
  border-top: 1px solid rgba(0,0,0,0.07);
  border-bottom: 1px solid rgba(0,0,0,0.07);
}
.block3 .wrapper { position: relative; z-index: 1; padding: 0; max-width: 100%; }

/* Desktop: scroll ticker */
@media(min-width:768px) {
  .block3 { padding: 36px 0; }
  .block3_cont {
    display: flex;
    animation: statsScroll 22s linear infinite;
    width: max-content;
    will-change: transform;
  }
  @keyframes statsScroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
  .txt_list {
    display: flex; flex-direction: column; align-items: center;
    padding: 0 40px; white-space: nowrap; flex-shrink: 0; position: relative;
  }
  .txt_list::after {
    content: ''; position: absolute; right: 0; top: 50%; transform: translateY(-50%);
    width: 4px; height: 4px; border-radius: 50%; background: rgba(0,0,0,0.1);
  }
  .txt_list strong {
    font-size: 24px; font-weight: 800; color: #FF3366;
    letter-spacing: -0.03em; line-height: 1; margin-bottom: 4px;
  }

  .txt_list small {
    font-size: 11px; font-weight: 600; color: rgba(26,16,37,0.35);
    text-transform: uppercase; letter-spacing: 0.04em;
  }
}

/* Mobile: static 2-row grid */
@media(max-width:767px) {
  .block3 { padding: 28px 0; }
  .block3 .wrapper { padding: 0 20px; }
  .block3_cont {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 20px 12px; max-width: 420px; margin: 0 auto;
  }
  .txt_list { display: flex; flex-direction: column; align-items: center; text-align: center; }
  .txt_list strong {
    font-size: 22px; font-weight: 800; color: #FF3366;
    letter-spacing: -0.03em; line-height: 1; margin-bottom: 2px;
  }
  .txt_list:nth-child(2) strong { color: #7C3AED; }
  .txt_list:nth-child(3) strong, .txt_list.txt_list3 strong { color: #F59E0B; }
  .txt_list:nth-child(4) strong { color: #FF3366; }
  .txt_list:nth-child(5) strong { color: #7C3AED; }
  .txt_list:nth-child(6) strong, .txt_list.txt_list6 strong { color: #0891B2; }
  .txt_list small {
    font-size: 10px; font-weight: 600; color: rgba(26,16,37,0.35);
    text-transform: uppercase; letter-spacing: 0.03em;
  }
}

/* ═══ MAIN CONTENT / SEO TEXT ═══ */
.main_content,
.signup_content,
.signup_content2 {
  padding: 48px 0 60px;
}
@media(min-width:768px) { .main_content { padding: 60px 0 80px; } }

.testim_block { display: none; }

.main_content p,
.signup_content p {
  font-size: 14px;
  color: rgba(26,16,37,0.55);
  line-height: 1.8;
  margin-bottom: 16px;
}
@media(min-width:768px) { .main_content p { font-size: 15px; } }

/* ═══ FOOTER ═══ */
.footer_btm {
  border-top: 1px solid rgba(0,0,0,0.07);
  padding: 24px 0;
  background: #fff5f2;
}

.copytxt,
.copytxt2 {
  display: block;
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  font-size: 12px;
  color: #1a102559;
  text-align: center;
}

/* ═══ SIGNUP BUTTON (if enabled) ═══ */
.btn_signup,
.btm_button {
  display: block;
  text-align: center;
  margin-top: 24px;
}
.btn_signup .reg_nw {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 16px 40px; border-radius: 100px;
  background: #FF3366; color: #fff;
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  font-size: 16px; font-weight: 800;
  transition: all 0.3s cubic-bezier(0.34,1.56,0.64,1);
  box-shadow: 0 4px 20px rgba(255,51,102,0.25);
}
.btn_signup .reg_nw:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(255,51,102,0.35); }
.qq-trust-bar,
.cnt_listnew {
  padding:60px 0 0;
  /* border-top: 1px solid rgba(0,0,0,0.07);
  border-bottom: 1px solid rgba(0,0,0,0.07);
  background: #FFFFFF; */
}

.qq-trust-grid,
.cnt_listnew .wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;padding: 0 40px;
}
.qq-trust-icon{
  width: 46px;
    height: 46px;
    border-radius: 14px;
    background: rgb(230, 248, 241);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}
@media(min-width:640px) {
  .qq-trust-grid,
  .cnt_listnew .wrapper { grid-template-columns: repeat(4, 1fr); }
    .qq-trust-item{
    justify-content: flex-start;
    align-items: flex-start;   
}
.qq-trust-text strong{font-size: 16px;}
}
.gender_block{font-size: 12px;color: rgb(154, 149, 171);display: block;font-weight: 400}
.qq-trust-item,
.cnt_list_item {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: flex-start;
  padding: 16px;
  background: #fff;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,0.05);
}

.qq-trust-icon,
.cnt_list_item_icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;margin:0
}

.qq-trust-text,
.cnt_list_item_txt {
  font-size: 13px;
  color: rgba(26,16,37,0.6);
  font-weight: 500;
}
.qq-trust-text strong,
.cnt_list_item_txt span {
  color: #1A1025;
  font-weight: 800; 
  display: block;
}
.logo_box{
  display: flex;
  align-items: center;
  gap: 12px;
  flex-direction: row;
}
.logo_box small{
     font-size: 13px;
    color: rgb(154, 149, 171);
    white-space: nowrap;
}
@media(min-width:768px) {
  .block3 {
    padding: 36px 0;
  }

  .block3_cont {
    display: flex;
    animation: statsTickerScroll 22s linear infinite;
    width: max-content;
    will-change: transform;
  }

  @keyframes statsTickerScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }

  .txt_list {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 40px;
    white-space: nowrap;
    flex-shrink: 0;
    position: relative;
  }

  /* Dot separator between items */
  .txt_list::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(0,0,0,0.1);
  }

  .txt_list strong {
       font-family: "Bricolage Grotesque", sans-serif;
    font-weight: 800;
    font-size: 28px;
    color: rgb(240, 49, 108);
    line-height: 1;
  }

  

  .txt_list small {
        font-family: "Bricolage Grotesque", sans-serif;
    font-weight: 600;
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgb(154, 149, 171);
    margin-top: 7px;
    line-height: 1.3;
  }
}

/* ═══ MOBILE: Static 2-row grid (3 per row) ═══ */
@media(max-width:767px) {
  .block3 {
    padding: 28px 0;
  }

  .block3 .wrapper {
    padding: 0 20px;
  }

  .block3_cont {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px 12px;
    max-width: 420px;
    margin: 0 auto;
  }

  .txt_list {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .txt_list strong {
    font-family: 'Bricolage Grotesque', system-ui, sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: #FF3366;
    letter-spacing: -0.03em;
    line-height: 1;
    margin-bottom: 2px;
  }

  .txt_list small {
    font-family: 'Bricolage Grotesque', system-ui, sans-serif;
    font-size: 10px;
    font-weight: 600;
    color: rgba(26,16,37,0.35);
    text-transform: uppercase;
    letter-spacing: 0.03em;
  }
.footer_menu {
    grid-template-columns: 1fr 1fr;
}

}
@media(min-width:768px) {
  .block3 {
    padding: 36px 0;
  }

  .block3_cont {
    display: flex;
    animation: statsTickerScroll 22s linear infinite;
    width: max-content;
    will-change: transform;
  }

  @keyframes statsTickerScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }

  .txt_list {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 40px;
    white-space: nowrap;
    flex-shrink: 0;
    position: relative;
  }

  /* Dot separator between items */
  .txt_list::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(0,0,0,0.1);
  }

  .txt_list strong {
       font-family: "Bricolage Grotesque", sans-serif;
    font-weight: 800;
    font-size: 28px;
    color: rgb(240, 49, 108);
    line-height: 1;
  }

  

  .txt_list small {
        font-family: "Bricolage Grotesque", sans-serif;
    font-weight: 600;
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgb(154, 149, 171);
    margin-top: 7px;
    line-height: 1.3;
  }
}

/* ═══ MOBILE: Static 2-row grid (3 per row) ═══ */
@media(max-width:767px) {
  .block3 {
    padding: 28px 0;
  }

  .block3 .wrapper {
    padding: 0 20px;
  }

  .block3_cont {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px 12px;
    max-width: 420px;
    margin: 0 auto;
  }

  .txt_list {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .txt_list strong {
    font-family: 'Bricolage Grotesque', system-ui, sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: #FF3366;
    letter-spacing: -0.03em;
    line-height: 1;
    margin-bottom: 2px;
  }

  .txt_list small {
    font-family: 'Bricolage Grotesque', system-ui, sans-serif;
    font-size: 10px;
    font-weight: 600;
    color: rgba(26,16,37,0.35);
    text-transform: uppercase;
    letter-spacing: 0.03em;
  }
.footer_menu {
    grid-template-columns: 1fr 1fr;
}

}


.social-proof-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding: 30px 0 0;

 @media (max-width: 768px) { grid-template-columns: 1fr; } 
}

.sp-card {
  background: #fff;
  border-radius: 20px;
  padding: 28px 30px;
}

.sp-title {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin: 0 0 24px;
  color: #1a1a2e;
}

/* --- Testimonial --- */
.testimonial { display: flex; gap: 20px; align-items: flex-start; }

.add-photo {
  flex: 0 0 auto;
  width: 130px; height: 170px;
  border: 2px solid #7c3aed;
  border-radius: 16px;
  background: #f5f5f7;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 10px; cursor: pointer;overflow: hidden;

  ion-icon { font-size: 30px; color: #9a9aa5; }
  span { font-size: 15px; color: #6b6b76; }
}

.quote-block { flex: 1; }
.quote-mark { font-family: Georgia, serif; font-size: 52px; line-height: 1; color: #f4a6c0; display: block; height: 30px; }
.quote-text { font-size: 18px; line-height: 1.5; color: #1a1a2e; margin: 6px 0 18px; }
.quote-author { font-size: 16px; font-weight: 700; color: #7c3aed; margin: 0; }

/* --- Press grid --- */
.press-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.press-logo {
  background: #f5f5f7;
  border-radius: 14px;
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: center;
}


.logo1 {
  display: inline-block;
  background-image: url('https://stg4.quackquack.in/v/images/signup-sprite.png');
  background-repeat: no-repeat;
  /* native sprite is ~545x68; we render it at that size and window into it */
  background-size: 455px auto;
}

.logo-buzzfeed   {width: 128px;height: 28px;background-position:    0px   -2px;}
.logo-pinkvilla  {width: 145px;height: 22px;background-position: -132px   -4px;}
.logo-scoopwhoop {width: 142px;height: 32px;background-position: -281px   1px;}
.logo-ht         {width: 144px;height: 16px;background-position: -3px  -38px;}
.logo-huffpost   {width: 147px;height: 15px;background-position: -149px  -40px;}
.logo-et         {width: 150px;height: 16px;background-position: -301px  -40px;}