*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:'Poppins',sans-serif;
  font-family: "Inter", sans-serif;
  background:white;
  overflow-x:hidden;
}

/* =============================
   NAVBAR
============================= */

.navbar{
  position:fixed;
  top:0;left:0;
  width:100%;
  z-index:1000;
  background:rgba(255,255,255,.95);
  backdrop-filter:blur(10px);
  padding:14px 0;
  border-bottom:1px solid rgba(0,0,0,.06);
}

.container{
  width:86%;
  margin:auto;
}

.nav-content{
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.logo img{
  height:42px;
  object-fit:contain;
}

.nav-links{
  display:flex;
  list-style:none;
  gap:28px;
}

.nav-links li a{
  text-decoration:none;
  color:#0c1323;
  font-weight:600;
  padding:6px 10px;
  border-radius:10px;
  transition:.25s;
}

.nav-links li a:hover{
  background:linear-gradient(90deg,#9A0059,#B21477,#ad3983);
  color:#fff;
}
.nav-links a:hover,
.nav-links .active{
  background:#9A0059;
  color:#fff;
}
.menu-btn{
  display:none;
  font-size:28px;
  font-weight:900;
  cursor:pointer;
}

/* =============================
   HERO
============================= */

.hero{
  height:100vh;
  padding-top:95px;
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
}

.hero-content{
  text-align:center;
  max-width:760px;
}

.title{
  font-family:'Paytone One';
  font-size:64px;
  color:#0c1323;
}

.vibe{
  margin-top:35px;
}

.yellow-box{
  background:linear-gradient(90deg,#9A0059,#B21477,#ad3983);
  color:white;
  font-weight:600;
  padding:18px 26px;
  margin:22px auto 0;
  border-radius:14px;
  max-width:680px;
  text-align:center;
  line-height:1.5;
}

.left-img,.right-img{
  position:absolute;
  bottom:0;
  height:70%;
  object-fit:contain;
}

.left-img{left:0;}
.right-img{right:0;}

.store-btns{
  display:flex;
  justify-content:center;
  gap:18px;
  margin-top:10px;
  position:relative;
  z-index:5;
}

.store-btns img{
  height:150px;
  transition:.2s;
  cursor:pointer;
}

.store-btns img:hover{
  transform:scale(1.05);
}

/* =============================
   HOW FEELY TALK WORKS
============================= */

.works-section{
  padding:120px 0;
  background:#FFFBF4;
}

.works-wrap{
  width:86%;
  margin:auto;
  display:grid;
  grid-template-columns:1.2fr 1fr;
  gap:80px;
  align-items:center;
}

/* TEXT AREA */
.works-title{
  font-family:'Paytone One';
  font-size:56px;
  line-height:1.1;
  color:#0c1323;
  margin-bottom:30px;
}

.works-list{
  list-style:none;
  display:grid;
  gap:20px;
}

.works-list li{
  display:grid;
  grid-template-columns:42px auto;
  gap:14px;
  align-items:flex-start;
}

.works-num{
  width:38px;
  height:38px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  font-weight:700;
  background:linear-gradient(135deg,#9A0059,#B21477,#ad3983);
}

.works-list p{
  font-size:18px;
  color:#0c1323;
}

/* =============================
   HOW FEELY TALK WORKS
============================= */

.works-section{
  padding:120px 0;
  background:#FFFBF4;
}

.works-wrap{
  width:86%;
  margin:auto;
  display:grid;
  grid-template-columns:1.2fr 1fr;
  gap:80px;
  align-items:center;
}

/* TEXT */
.works-title{
  font-family:'Paytone One', sans-serif;
  font-size:56px;
  line-height:1.1;
  color:#0c1323;
  margin-bottom:30px;
}

.works-list{
  list-style:none;
  display:grid;
  gap:20px;
}

.works-list li{
  display:grid;
  grid-template-columns:42px auto;
  gap:14px;
  align-items:flex-start;
}

.works-num{
  width:38px;
  height:38px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  font-weight:700;
  background:linear-gradient(135deg,#9A0059,#B21477,#ad3983);
}

.works-list p{
  font-size:18px;
  color:#0c1323;
}

/* COLLAGE IMAGE */
.works-visuals.single{
  display:flex;
  justify-content:flex-end;
  padding-right: -120px;
}

.works-visuals.single img{
  width: 700px;
}

/* =============================
   RESPONSIVE TABLET
============================= */

@media(max-width:1024px){

  .works-wrap{
    gap:50px;
  }

  .works-title{
    font-size:46px;
  }

  .works-visuals.single img{
    width:360px;
  }
}

/* =============================
   RESPONSIVE MOBILE
============================= */

@media(max-width:820px){

  .works-wrap{
    grid-template-columns:1fr;
    gap:40px;
    text-align:left;
  }

  .works-visuals.single{
    justify-content:center;
  }

  .works-visuals.single img{
    width:320px;
  }

  .works-title{
    font-size:36px;
  }

  .works-list p{
    font-size:16px;
  }
}

/* EXTRA SMALL DEVICES */
@media(max-width:480px){

  .works-section{
    padding:70px 0;
  }

  .works-title{
    font-size:30px;
  }

  .works-visuals.single img{
    width:280px;
  }
}



/* =============================
   STATS SECTION
============================= */

.stats-section{
  padding:120px 0;
  text-align:center;
  background:#fff;
}

.stats-title{
  font-family:'Paytone One';
  font-size:48px;
  color:#0c1323;
  margin-bottom:60px;
}

.stats-grid{
  width:86%;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:70px;
}

.stat .count{
  font-size:64px;
  font-weight:900;
}

.stat:nth-child(1) .count{ color:#7A2CFF; }
.stat:nth-child(2) .count{ color:#2E8BFF; }
.stat:nth-child(3) .count{ color:#FF2E92; }

.stat p{
  margin-top:10px;
  font-size:18px;
}

/* =============================
   RESPONSIVE
============================= */

@media(max-width:1024px){

  .title{font-size:50px;}
  .yellow-box{font-size:15px;}
  .store-btns img{height:120px;}

  .works-title{font-size:50px;}
  .works-visuals{height:420px;}

  .stats-title{font-size:40px;}
}

@media(max-width:820px){

  .menu-btn{display:block;}

  .nav-links{
    position:absolute;
    top:100%;right:0;width:100%;
    flex-direction:column;
    background:#fff;
    padding:18px 0;
    text-align:center;
    gap:14px;
    opacity:0;
    pointer-events:none;
    transform:translateY(-10px);
    transition:.25s;
  }

  .nav-links.show{
    opacity:1;
    pointer-events:auto;
    transform:translateY(0);
  }

  .left-img,.right-img{display:none;}

  .hero{
    height:auto;
    padding:120px 0 80px;
  }

  .title{font-size:40px;}
  .store-btns img{height:95px;}

  .works-wrap{
    grid-template-columns:1fr;
    gap:40px;
  }

  .works-title{font-size:40px;}
  .works-visuals{display:none;}

  .stats-grid{
    grid-template-columns:1fr;
    gap:40px;
  }
}

@media(max-width:600px){

  .yellow-box{
    padding:14px 16px;
    font-size:14px;
    max-width:92%;
  }

  .title{font-size:32px;}

  .works-section{padding:80px 0;}
  .works-title{font-size:30px;}

  .works-list p{font-size:16px;}

  .stat .count{font-size:42px;}
  .stats-title{font-size:30px;}
}
/* =============================
   ABOUT SECTION
============================= */

.about-section{
  position:relative;
  padding:120px 0;
  background:#FFFBF4;
  text-align:center;
  overflow:hidden;
}

.about-content{
  max-width:780px;
  margin:auto;
  padding:0 16px;
}

.about-title{
  font-family:'Paytone One';
  font-size:54px;
  color:#0c1323;
  margin-bottom:20px;
  line-height:1.1;
}

.about-content p{
  font-size:18px;
  color:#333;
  margin:12px 0;
}

/* Characters */
.about-left,
.about-right{
  position:absolute;
  bottom:0;
  height:78%;
  object-fit:contain;
  pointer-events:none;
}

.about-left{ left:0; }
.about-right{ right:0; }

/* ---------- Responsive ---------- */

@media(max-width:1024px){
  .about-title{ font-size:44px; }
}

@media(max-width:820px){
  .about-left,
  .about-right{
    height:55%;
    opacity:.9;
  }
}

@media(max-width:680px){

  .about-left,
  .about-right{
    display:none;
  }

  .about-title{
    font-size:34px;
  }

  .about-content p{
    font-size:16px;
  }
}
/* SECTION WRAPPER */
.testimonial-section{
  width: 100%;
  text-align: center;
  margin: 90px auto;
}

/* HEADING */
.testimonial-heading{
  position: relative;
  display: inline-block;
  margin-bottom: 60px;
}

.bg-title{
  font-size: 120px;
  font-weight: 900;
  font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
  color: #ddccd48e;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.testimonial-heading h2{
  position: absolute;
  top: 52%;
  left: 50%;
  font-family: paytone one, sans-serif;
  transform: translate(-50%, -55%);
  font-size: 36px;
  font-weight: 800;
  color: #861954;
  margin: 0;
}

/* CARDS LAYOUT */
.testimonial-cards{
  width: 86%;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* CARD */
.t-card{
  background: #ffffff;
  border-radius: 14px;
  padding: 24px;
  box-shadow: 0 15px 28px rgba(0,0,0,.05);
  text-align: left;
  min-height: 250px;
}

.t-card h3{
  font-size: 20px;
  margin-bottom: 4px;
}

.location{
  color: #777;
  font-size: 14px;
  margin-bottom: 6px;
}

.stars{
  color: #ffb703;
  margin-bottom: 8px;
}

.lang-tag{
  background: #ffe2f1;
  color: #9A0059;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  display: inline-block;
  margin-bottom: 10px;
}

.review-text{
  font-size: 15px;
  line-height: 1.6;
  color: #333;
}

/* RESPONSIVE */
@media(max-width: 900px){
  .bg-title{ font-size: 70px; }
  .testimonial-heading h2{ font-size: 26px; }

  .testimonial-cards{
    grid-template-columns: 1fr;
  }

  .t-card{
    min-height: auto;
  }
}
/* ---------- RESPONSIVE HEADING FIX ---------- */

.testimonial-heading{
  width: 100%;
  max-width: 820px;
  margin: 0 auto 60px;
}

.bg-title{
  font-size: clamp(48px, 12vw, 140px);
  line-height: 1;
  display: block;
}

.testimonial-heading h2{
  font-size: clamp(20px, 4vw, 42px);
  text-align: center;
  white-space: nowrap;
}
.trust-section{
  width: 90%;
  max-width: 1200px;
  margin: 80px auto;
  text-align: center;
}

.trust-title{
  font-family: "Paytone One", sans-serif;
  font-size: 50px;
  line-height: 1.1;
  color:#0c1323;
  margin-bottom: 60px;
}

.trust-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
}

.trust-card{
  padding: 10px 20px;
}

.trust-icon{
  font-size: 55px;
  display: block;
  margin-bottom: 16px;
}

.trust-card h3{
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 10px;
  color:#0c1323;
}

.trust-card p{
  font-size: 16px;
  color:#333;
  line-height: 1.6;
}

/* 📱 Mobile responsive */
@media(max-width: 900px){
  .trust-grid{
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .trust-title{
    font-size: 34px;
  }
}
/* TALK SECTION */
.talk-section{
  position: relative;
  min-height: 80vh;
  background: #ffa2b49f;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* LEFT CONTENT */
.talk-content{
  width: 50%;
  padding: 80px 70px;
  color: #fff;
  position: relative;
  z-index: 5;
}

.talk-title{
  font-size: 64px;
  font-weight: 900;
  margin-top: 0px;
  line-height: 1.1;
  margin-bottom: 18px;
}

.talk-sub{
  font-size: 18px;
  margin-bottom: 28px;
}

.store-row img{
  height: 60px;
  margin-right: 14px;
  cursor: pointer;
}

/* TALK SECTION */
.talk-section{
  position: relative;
  min-height: 90vh;
  background: #ffa2b49f;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* LEFT CONTENT */
.talk-content{
  width: 50%;
  padding: 80px 70px;
  color: #fff;
  z-index: 5;
}

.talk-title{
  font-size: 64px;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 18px;
}

.talk-sub{
  font-size: 18px;
  margin-bottom: 28px;
}

/* STORE BADGES */
.store-row img{
  height: 60px;
  margin-right: 14px;
}


/* RIBBONS (FIXED ALIGNMENT) */
.ribbon{
  position: absolute;
  left: 40%;
  width: 180%;
  height: 52px;
  background-repeat: repeat-x;
  background-size: 1020px auto;
  animation: tapeMove 6s linear infinite;
  transform-origin: center;
}

/* top ribbon */
.ribbon-light{
  background-image: url("assets/images/tape-01.png");
  bottom: 65px;                        /* moved lower */
  transform: translateX(-50%) rotate(6deg);   /* less tilt */
  z-index: 3;
}

/* bottom ribbon */
.ribbon-yellow{
  background-image: url("assets/images/tape-02.png");
  bottom: 25px;                        /* moved lower */
  transform: translateX(-50%) rotate(-6deg);
  z-index: 2;
}


/* movement */
@keyframes tapeMove{
  from { background-position: 0 0; }
  to   { background-position: -600px 0; }
}


/* MOBILE */
@media(max-width:900px){
  .talk-content{
    width: 100%;
    padding: 60px 26px;
  }

  .talk-title{
    font-size: 42px;
  }

  .ribbon{
    width: 240%;
    height: 46px;
    animation-duration: 30s;
  }

  .ribbon-light{ bottom: 85px; }
  .ribbon-yellow{ bottom: 38px; }
}
@media(max-width:900px){

  .ribbon{
    width: 230%;
    height: 44px;
    animation-duration: 28s;
  }

  .ribbon-light{ bottom: 60px; rotate: 5deg; }
  .ribbon-yellow{ bottom: 22px; rotate: -5deg; }
}
/* Layout */
.talk-section{
  position: relative;
  min-height: 95vh;
  background: #ffa2b49f;
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
}

.talk-content{
  width: 50%;
  padding: 80px 70px;
  color: #fff;
  z-index: 2;
}

/* RIGHT IMAGE */
.talk-image{
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-right: 40px;
  z-index: 2;
}

.talk-image img{
  max-width: 520px;
  width: 100%;
  height: auto;
  margin-bottom: 100px;
}
/* Layout */
.talk-section{
  position: relative;
  min-height: 100vh;
  background: #ffa2b49f;
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
}

.talk-content{
  width: 50%;
  padding: 80px 70px;
  color: #000;
  bottom: 10px;
  z-index: 2;
}

/* RIGHT IMAGE */
.talk-image{
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-right: 40px;
  z-index: 2;
}

.talk-image img{
  max-width: 520px;
  width: 100%;
  height: auto;
}

/* footer */
.footer{
  background:#fff;
  padding:70px 6% 50px;
  border-top:1px solid #eee;
}

.footer-container{
  display:grid;
  grid-template-columns:2fr 1fr 1fr 1fr;
  gap:60px;
}

.footer-logo{
  width:170px;
  margin-bottom:12px;
}

.footer-heading{
  margin:18px 0 10px;
  font-weight:700;
  font-family: paytone one, sans-serif;
}

.store-buttons a img{
  width:170px;
  margin:8px 0;
  cursor:pointer;
}

.social-icons{
  margin-top:16px;
}

.social-icons i{
  font-size:22px;
  margin-right:10px;
  cursor:pointer;
}

.footer-col h4{
  margin-bottom:14px;
  font-weight:800;
  font-family: paytone one, sans-serif;
}

.footer-col a,
.footer-col p{
  display:block;
  font-family: paytone one, sans-serif;
  margin:7px 0;
  color:#333;
  text-decoration:none;
}

.footer-col a:hover{
  color:#9A0059;
}

.footer-bottom{
  margin-top:50px;
  text-align:center;
  font-size:14px;
  color:#444;
}

/* ===== RESPONSIVE ===== */

@media(max-width:1000px){
  .footer-container{
    grid-template-columns:1fr 1fr;
    gap:35px;
  }
}

@media(max-width:700px){
  .footer-container{
    grid-template-columns:1fr;
  }

  .footer{
    text-align:center;
  }

  .social-icons i{
    margin-right:6px;
  }
}
/* Hide How-To image on small screens */
@media (max-width: 820px){
  .works-visuals,
  .works-visuals.single {
    display: none;
  }
}
@media (max-width: 900px){

  .talk-section{
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 80px;
  }

  .talk-content{
    width: 100%;
    justify-content: c;
    padding: 40px 24px;
  }

  .talk-image{
    width: 100%;
    padding: 0 24px 30px;
    justify-content: center;
  }

  .talk-image img{
    display: none;
  }

  .talk-title{
    font-size: 40px;
    line-height: 1.1;
  }
}
/* --- TALK SECTION MOBILE TUNING --- */
@media (max-width: 900px){

  /* store buttons */
  .store-row{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .store-row img{
    width: 210px;
    max-width: 100%;
    height: auto;
  }

  /* ribbons */
  .ribbon{
    display: none;
  }
}
