:root{
  --bg: #111;
  --surface: #15151b;
  --text: #ffffff;
  --muted: #b7b8bd;
  --brand: #f7d308;
  --brand-2: #ffea55;
  --glass: rgba(255,255,255,.06);
  --stroke: rgba(255,255,255,.08);
  --shadow: 0 10px 30px rgba(0,0,0,.5);
}

:root.light-theme {
  --bg: #fff;
  --surface: #f7f7f7;
  --text: #111;
  --muted: #333;
  --brand: #f7d308;
  --brand-2:#ffe94d;
  --glass: rgba(0,0,0,.05);
  --stroke: rgba(0,0,0,.1);
  --shadow: 0 10px 25px rgba(0,0,0,.1);
}


*{
  box-sizing:border-box
}
html,body{
  margin:0;
  padding:0
}

body{
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  background: radial-gradient(1200px 600px at 80% -10%, rgba(247,211,8,.25), transparent 60%), var(--bg);
  color: var(--text);
  line-height: 1.65;
}

.container{
  max-width:1200px;
  margin-inline:auto;
  padding:24px
}

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.loader-bee img {
  width: 90px;
  height: 90px;
  animation: beePulse 2s infinite ease-in-out;
  filter: drop-shadow(0 0 12px rgba(247, 211, 8, 0.8));
}

@keyframes beePulse {
  0%, 100% {
    transform: scale(1);
    filter: drop-shadow(0 0 10px rgba(247, 211, 8, 0.5));
  }
  50% {
    transform: scale(1.15);
    filter: drop-shadow(0 0 25px rgba(247, 211, 8, 0.9));
  }
}


#preloader.fade-out {
  opacity: 0;
  visibility: hidden;
}


.site-header{
  position:sticky;
  top:0;
  z-index:100;
  background: linear-gradient(to bottom, rgba(15,15,18,.9), rgba(15,15,18,.4));
  opacity: 1;
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--stroke);
}
.nav{
  display:flex;
  align-items:center;
  gap:20px
}

.brand{
  display:flex;
  align-items:center;
  gap:8px;
  text-decoration:none;
  max-width: 100px;
  max-height: 100px;
}

.nav-links{
  opacity: 0.8;
  border-radius: 5px;
  display:flex;
  gap:18px;
  list-style:none;
  margin:0;
  padding:0;
}

.nav-links a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  display: block;
  padding: 12px 20px;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.nav-links a:hover,
.nav-links a:focus {
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--brand);
  border-radius: 4px;
}

.nav-links a:hover{
  color:var(--text)
}

.nav-cta{
  margin-left:auto;
  display:flex;
  align-items:center;
  gap:12px
}

/* =========================
    LIGHT MODE THEME
========================= */
/* Adjust background and components */
.light-theme body {
  background: radial-gradient(1200px 600px at 80% -10%, rgba(247,211,8,.1), transparent 60%), var(--bg);
  color: var(--text);
}

.light-theme .site-header {
  background: linear-gradient(to bottom, rgba(255,255,255,.95), rgba(255,255,255,.85));
  border-bottom: 1px solid var(--stroke);
}

.light-theme .nav-links a {
  color: var(--text);
}

.light-theme .button.primary {
  background: linear-gradient(180deg, var(--brand-2), var(--brand));
  color: #111;
}

.light-theme .chip {
  background: #f7d308;
  color: #111;
}

.light-theme .chip1 {
  background: #f7d308;
  color: #111;
}

.light-theme .faq-section,
.light-theme .testimonials,
.light-theme .services,
.light-theme .advantage{
  background: #f7d308;
  color: #111;
}

.light-theme .-section {
  background: #111;
  color: #111;
}

.light-theme .site-footer {
  background: #111;
  color: #111;
}

.light-theme .faq-list details,
.light-theme .testimonial details,
.light-theme .advantage details,
.light-theme .accordion details {
  background: #111;
  border: 1px solid #ddd;
  color: #111;
}

.light-theme .highlight {
  color: #f7d308;
}


.language-switcher {
  position: relative;
  display: inline-block;
}

.chip {
  background: #f7d308;
  color: #000;
  border: none;
  font-weight: 600;
  border-radius: 20px;
  padding: 0.4rem 0.9rem;
  cursor: pointer;
  font-size: 0.9rem;
  transition: background 0.3s ease;
}

.chip1 {
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--stroke);
  padding: .4rem .75rem;
  border-radius: 20px;
  font-weight: 600;
}


.chip:hover {
  background: #ffe94d;
}

.chip1:hover {
  background: #ffe94d;
}

.lang-menu {
  display: none;
  position: absolute;
  top: 110%;
  left: 0;
  background: #1a1a1a;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  list-style: none;
  margin: 0;
  padding: 0.5rem 0;
  width: 150px;
  z-index: 100;
  overflow: hidden;
}

.lang-menu li {
  padding: 0.6rem 1rem;
  color: #f7d308;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
}

.lang-menu li:hover {
  background: #f7d308;
  color: #000;
}

/* Show menu when active */
.lang-menu.show {
  display: block;
  animation: fadeDown 0.3s ease;
}

@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


.button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 16px;
  border-radius:999px;
  border:1px solid var(--stroke);
  background:var(--glass); 
  color:var(--text); 
  font-weight:700; 
  text-decoration:none;
  box-shadow: var(--shadow);
}
.button.primary{
  background: linear-gradient(180deg, var(--brand-2), var(--brand));
  color:#111; 
  border-color:transparent
}

.button.ghost{
  background:transparent
}

.button.primary {
  background: linear-gradient(180deg, #ffe94d, #f7d308);
  color: #000;
  border: none;
  font-weight: 700;
  padding: 0.8rem 1.6rem;
  border-radius: 30px;
  box-shadow: 0 0 0 rgba(247, 211, 8, 0);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.button.primary:hover {
  background: linear-gradient(180deg, #fff176, #f7d308);
  box-shadow: 0 0 20px rgba(247, 211, 8, 0.6), 0 0 40px rgba(247, 211, 8, 0.3);
  transform: translateY(-3px) scale(1.03);
}

@keyframes glowPulse {
  0%, 100% {
    box-shadow: 0 0 20px rgba(247, 211, 8, 0.5);
  }
  50% {
    box-shadow: 0 0 40px rgba(247, 211, 8, 0.8);
  }
}

.button.primary:hover {
  animation: glowPulse 1.5s ease-in-out infinite;
}


.chip{
  border-radius:999px;
  border:1px solid var(--stroke);
  background:var(--surface);
  color:var(--muted);padding:8px 12px
}

.nav-toggle{
  display:none;
  background:none;
  border:0;
  margin-left:auto
}

.nav-toggle span{
  display:block;
  width:22px;
  height:2px;
  background:#fff;
  margin:5px 0;
  transition:.2s
}

/* ============================
   MOBILE NAVBAR STYLING
============================ */

@media (max-width: 992px) {
  .site-header {
    background: linear-gradient(to bottom, rgba(15,15,18,.98), rgba(15,15,18,.95));
    padding: 0.8rem 1.2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  /* Logo */
  .brand img {
    height: 28px;
    max-width: 100px;
  }

  /* Hide nav links and primary button */
  .nav-links {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(15, 15, 18, 0.98);
    padding: 20px 0;
    margin: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    z-index: 99;
  }
  
  .nav-links.open {
    display: block;
  }
  
  .nav-cta .chip1,
  .nav-cta .button.primary {
    display: none;
  }
  
  /* Theme toggle is now hidden in mobile view */

  /* Hamburger (menu button) */
  .nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    padding: 0;
    cursor: pointer;
    background: #f7d308;
    border-radius: 8px;
    gap: 6px;
    transition: transform 0.3s ease, background 0.3s ease;
    order: 3;
    margin-left: auto;
  }

  .nav-toggle span {
    background: #000;
    display: block;
    height: 2px;
    width: 16px;
    border-radius: 2px;
    margin: 2.5px 0;
    transition: all 0.3s ease;
  }

  .nav-toggle:hover {
    background: #ffe94d;
    transform: scale(1.05);
  }

  /* Animate when open */
  .nav.open .nav-toggle span:nth-child(1) {
    transform: rotate(45deg) translate(3px, 3px);
  }
  .nav.open .nav-toggle span:nth-child(2) {
    opacity: 0;
  }
  .nav.open .nav-toggle span:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -4px);
  }
}

/* Mobile dropdown menu */
@media (max-width: 768px) {
  .nav {
    position: relative;
    justify-content: space-between;
  }
  
  .nav-cta {
    margin-left: 0;
    order: 2;
  }
  
  .nav-toggle {
    order: 3;
    margin-left: 0;
  }
  
  .nav.open .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #1a1a1f;
    padding: 1.5rem;
    gap: 1rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    z-index: 999;
  }

  .nav.open .nav-links a {
    color: #fff;
    font-weight: 600;
    font-size: 1.1rem;
    transition: color 0.3s ease;
  }

  .nav.open .nav-links a:hover {
    color: #f7d308;
  }
}


.hero{
  display:grid;
  grid-template-columns:1.2fr 1fr;
  gap:40px;
   align-items:center;
  padding-block:48px
}
.hero .eyebrow{
  display:inline-block;
  background:rgba(247,211,8,.15);
  border:1px solid var(--brand);
  color:#F7D308;
  padding:4px 10px;
  border-radius:999px;
  font-weight:700
}

.hero h1{
  font-size: clamp(36px, 6vw, 72px);
  line-height:1.05; margin:12px 0 8px
}

.hero-media {
  position: relative;
  transition: all 1.2s ease;
  transform: translateY(40px);
  opacity: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  margin: 0 auto;
  padding: 0 1rem;
  -webkit-mask-image: linear-gradient(to bottom, 
    rgba(0,0,0,1) 0%, 
    rgba(0,0,0,1) 50%, 
    rgba(0,0,0,0) 90%);
  mask-image: linear-gradient(to bottom, 
    rgba(0,0,0,1) 0%, 
    rgba(0,0,0,1) 50%, 
    rgba(0,0,0,0) 90%);
}


.hero-media img {
  width: 100%;
  max-width: 600px; 
  height: auto;
  border-radius: 20px;
  transition: transform 1.2s ease, opacity 1.2s ease;
  transform: translateY(40px);
  opacity: 1;
  align-items: center;
 }


.hero-media.visible img {
  transform: translateY(0);
  opacity: 1;
}

@media (max-width: 1024px) {
  .hero{ grid-template-columns:1fr; gap:24px; text-align:center; }
  .hero-media{ max-width:90%; margin-inline:auto; }
  .hero h1{ font-size: 2rem; }
}

@media (max-width: 768px) {
  .hero{ 
    grid-template-columns: 1fr; 
    gap: 20px; 
    text-align: center;
    margin-bottom: 1rem; 
  }
  .hero-media{ 
    max-width: 90%; 
    margin-inline: auto; 
  }
  .hero h1{ 
    font-size: 2rem; 
  }
}



@media (max-width: 1024px) {
  .hero-media img {
    max-width: 480px;
    transform: translateY(30px);
  }
}

/* Mobile devices */
@media (max-width: 768px) {
  .hero-media {
    align-items: center;
    transform: none;
    border-radius: 20px;
    flex-direction: column;
    text-align: center;
    margin: 20px auto 0;
    justify-content: center;
    padding: 0 1rem;
    display: flex;
    position: relative;
    max-width: 90%;
  }

  .hero-media img {
    max-width: 100%;
    transform: translateY(20px);
    opacity: 0.95;
  }
}


@media (max-width: 480px) {
  .hero-media img {
    max-width: 280px;
    transform: translateY(10px);
  }
}


@media (max-width: 992px) and (max-width: 768px){
  .hero-media {
    align-items: center;
    transform: none;
    border-radius: 20px;
    flex-direction: column;
    text-align: center;
    margin-top: 20px;
    margin-left: 50px;
    justify-content: center;
    padding: 0.5rem;
    transform: none;
    display: flex;
  }

  .hero-media img {
    max-width: 100%;
    transform: translateY(20px);
    opacity: 0.95;
    display: flex;
    height: auto;
  }
}

/*  Extra-small screens */
@media (max-width: 480px) {
  .hero-media img {
    max-width: 280px;
    transform: translateY(10px);
  }
}


.hero-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}

.user-badge {
  display: flex;
  align-items: center;
  background: linear-gradient(to right, #f7d308, #f7d308);
  max-width: 200px;
  color: linear-gradient(to right, #f7d308, #f7d308);
  border-radius: 60px;
  padding: 6px 14px 6px 10px;
  box-shadow: rgba(247,211,8,.15);
  font-weight: 700;
}

.avatars {
  display: flex;
}

.avatars img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 0.5px solid #f7d308;
  margin-left: -10px;
  object-fit: cover;
}

.avatars {
  display: flex;
  position: relative;
  width: 80px;
  height: 32px;
}

.avatars img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid #1a1a1a;
  background: #333;
  position: absolute;
  transition: transform 0.3s ease;
}

.avatars img:nth-child(1) {
  left: 0;
  z-index: 3;
}

.avatars img:nth-child(2) {
  left: 16px;
  z-index: 2;
}

.avatars img:nth-child(3) {
  left: 32px;
  z-index: 1;
}

.user-badge:hover .avatars img:nth-child(1) {
  transform: translateX(-5px);
}

.user-badge:hover .avatars img:nth-child(3) {
  transform: translateX(5px);
}

.user-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-size: 0.8rem;
  line-height: 1.1;
  margin-left: 10px;
  color: #111;
}

.user-info strong {
  font-size: 1rem;
  font-weight: 800;
  color: #111;
  font-size: 1.1rem;
}

.user-info span {
  font-size: 0.75rem;
  color: #111;
  font-weight: 500;
}


.video .eyebrow{
  display:inline-block;
  background:rgba(247,211,8,.15);
  border:1px solid var(--brand);
  margin-bottom: 1.5rem;
  color:#fce98b;
  padding:4px 10px;
  border-radius:999px;
  font-weight:700
}


.highlight {
  color: #F7D308; 
  font-weight: 800; 
  text-shadow: 0 6px 24px rgba(247,211,8,.2); 
}

.sub{
  color:var(--muted);
  max-width:60ch
}


.stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin: 1rem auto 0;
  color: #eee;
  flex-wrap: nowrap;
  white-space: nowrap;
  overflow-x: auto;
  padding: 1rem 0;
  width: 100%;
  max-width: 100%;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 50px;
  text-align: center;
}

.stat span {
  font-size: 2.2rem;
  font-weight: 900;
  color: #f7d308;
  line-height: 1.2;
  margin-bottom: 0.3rem;
}

.stat small {
  font-size: 0.9rem;
  color: #aaa;
  display: block;
  margin-top: 0.2rem;
}

/* Hide scrollbar for Chrome, Safari and Opera */
.stats::-webkit-scrollbar {
  display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.stats {
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}

/* Responsive adjustments */
@media (max-width: 900px) {
  .stats {
    justify-content: flex-start;
    padding: 1rem 1.5rem;
  }
  
  .stat {
    min-width: 100px;
  }
  
  .stat span {
    font-size: 1.8rem;
  }
}

@media (max-width: 600px) {
  .stats {
    gap: 1rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 1rem 0;
    margin: 0 auto;
    max-width: 100%;
  }
  
  .stats::-webkit-scrollbar {
    display: none;
  }
  
  .stat {
    min-width: 90px;
    flex: 0 0 auto;
    padding: 0 0.5rem;
  }
  
  .stat span {
    font-size: 1.6rem;
    white-space: nowrap;
  }
  
  .stat small {
    font-size: 0.7rem;
    white-space: nowrap;
    opacity: 0.9;
  }
  
  /* Specific adjustments for 480px and below */
  @media (max-width: 480px) {
    .stats {
      gap: 0.8rem;
      padding: 0.8rem 0.5rem;
    }
    
    .stat {
      min-width: 80px;
      padding: 0 0.4rem;
    }
    
    .stat span {
      font-size: 1.4rem;
    }
    
    .stat small {
      font-size: 0.65rem;
    }
  }
  
  .hero-media {
    margin-top: 2rem;
    margin-left: 0;
    padding-left: 0.5rem;
    width: 100%;
    display: flex;
    justify-content: flex-start;
  }
  
  .hero-media .phone-card {
    width: 120%;
    max-width: 380px;
    margin: 0;
    transform: scale(0.95);
    transform-origin: left center;
  }
  
  .hero-media img {
    max-width: 100%;
    height: auto;
    display: block;
  }
}


.phone-card{
  border-radius:28px;
  overflow:hidden;
  height: auto;
  width: min(400px, 100%);
  transition: all 1.2s ease;
  transform: translateY(40px);
  opacity: 0;
  background:#111; 
}


.phone-card.visible{
  transform: translateY(0);
  opacity: 1;
}

@media (max-width: 1024px) {
  .phone-card { 
    width: 90%; 
    max-width: 350px;
    margin: 0 auto;
    border-radius: 22px;
    padding: 1.2rem;
    transform: none !important; /* Remove any transform that might be affecting positioning */
  }
  
  .hero-media {
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 0 1rem;
  }
}


.phone-card video{
  width:100%;
  height:100%;
  object-fit: cover;
}

.phone-card img{
  display:block;
  width:100%;
  height:auto
}



.glow{
  box-shadow: 0 0 0 0 rgba(247,211,8,.6), 0 30px 80px rgba(247,211,8,.16)
}

.floating-card{
  position:absolute;
  right:-12px;top:24px; 
  background:#ffffff; 
  border:1px solid var(--stroke);
  border-radius:16px;
  padding:12px 14px; 
  width:220px; 
  box-shadow: var(--shadow);
  animation: floatUp 6s ease-in-out infinite alternate;
}

.floating-card strong {
  color: #F7D308;
  font-size: 1rem;
}

.floating-card p {
  margin: 4px 0 0;
  color: #ccc;
  font-size: 0.9rem;
}

.floating-card.secondary {
  position: absolute;
  bottom: 400px;   
  left: -60px;    
  width: 240px;
  height: 100px;
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 14px 16px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
  animation: floatUp 6s ease-in-out infinite alternate;
}

.floating-card.secondary strong {
  color: #F7D308;
  font-size: 20px;
}

.floating-card.secondary p {
  margin: 4px 0 0;
  color: #111;
  font-size: 0.9rem;
}

.floating-card.secondary2 {
  position: absolute;
  bottom: 400px;   
  right: -60px;    
  width: 240px;
  height: 100px;
  background: #F7D308;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 14px 16px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
  animation: floatUp 6s ease-in-out infinite alternate;
}

.floating-card.secondary2 strong {
  color: #111;
  font-size: 20px;
}

.floating-card.secondary2 p {
  margin: 4px 0 0;
  color: #111;
  font-size: 0.9rem;
}

@keyframes floatUp {
  from { transform: translateY(0px); }
  to   { transform: translateY(-10px); }
}

.floating-card .store-badges{
  display:flex;
  gap:8px;
  margin-top:8px
}

@media (max-width: 768px){
  .floating-card,
  .floating-card.secondary,
  .floating-card.secondary2{
    position: static;
    width: 90%;
    margin: 12px auto 0;
    right: auto; left: auto; top: auto; bottom: auto;
    text-align: center;
  }
}

.store{
  display:inline-block;
  width:120px;
  height:40px;
  background:#222;
  border-radius:10px;
  border:1px solid var(--stroke)
}

.store.ios{
  background:linear-gradient(180deg,#222,#111)
}

.store.play{
  background:linear-gradient(180deg,#222,#111)
}

.card{
  background:linear-gradient(180deg,#131319,#0d0d11);
  border:1px solid var(--stroke);
  border-radius:24px;
  padding:28px;
  box-shadow:var(--shadow)
}

.section-head h2{
  font-size: clamp(28px, 4vw, 44px);
  margin:0
}
.section-head p{
  color:var(--muted)
}

.services{
  margin-block:40px
}

.services .eyebrow{
  display:inline-block;
  background:rgba(247,211,8,.15);
  border:1px solid var(--brand);
  color:#fce98b;
  padding:4px 10px;
  border-radius:999px;
  font-weight:700
}

/* Base styling */
.services {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #111;
  color: #fff;
  padding: 5rem 2rem;
  border-radius: 20px;
}

.services-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

/* Text section */
.section-head h2 {
  font-size: 3rem;
  font-weight: 700;
  font-style: calc();
  margin-left: 1rem;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.section-head .highlight {
  color: #f7d308;
}

.section-head p {
  color: #aaa;
  margin-bottom: 2rem;
}

/* ==============================
   SERVICE SECTION (Responsive)
============================== */
.services {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0d0d0d;
  color: #fff;
  padding: 5rem 2rem;
  border-radius: 20px;
  overflow: hidden;
}

.services-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
  max-width: 1200px;
}

/* Text Section */
.section-head {
  margin-bottom: 2rem;
}

.section-head .eyebrow {
  display: inline-block;
  background: rgba(247, 211, 8, 0.15);
  border: 1px solid #f7d308;
  color: #fce98b;
  padding: 4px 10px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
}

.section-head h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  text-transform: uppercase;
  margin: 1rem 0;
}

.section-head p {
  color: #aaa;
  font-size: 1rem;
  line-height: 1.6;
}

/* Accordion */
.accordion details {
  background: #1a1a1a;
  border-radius: 16px;
  margin-bottom: 1rem;
  padding: 1rem 1.2rem;
  border: 1px solid transparent;
  transition: all 0.3s ease;
}

.accordion details[open] {
  background: #1a1a1a;
  border-color: #f7d308;
  box-shadow: 0 0 20px rgba(247, 211, 8, 0.1);
}

.accordion summary {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 1rem;
  list-style: none;
  transition: all 0.3s ease;
  border-radius: 12px;
}

summary:focus { 
  outline: 2px solid var(--brand); 
  outline-offset: 2px; 
}

.accordion summary::-webkit-details-marker {
  display: none;
}

/* Service Option Layout */
.service-option {
  display: flex;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
}

.service-option:hover {
  background: rgba(247, 211, 8, 0.05);
  border-radius: 12px;
  transform: translateY(-2px);
  transition: all 0.3s ease;
}

/* Icon Box */
.icon-box {
  background: #f7d308;
  color: #000;
  padding: 12px;
  border-radius: 14px;
  font-size: 1.4rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 55px;
  height: 55px;
  box-shadow: 0 0 15px rgba(247, 211, 8, 0.4);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.icon-box i {
  color: #000;
}

.icon-box:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 0 25px rgba(247, 211, 8, 0.6);
}

/* Text inside accordion */
.text h3 {
  font-size: 1.1rem;
  margin-bottom: 0.2rem;
  font-weight: 600;
}

.text p {
  font-size: 0.85rem;
  color: #bbb;
}

/* Bullet list */
.bullets {
  list-style: none;
  padding-left: 16px;
  color: #ddd;
  margin-top: 0.6rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 12px;
}

.bullets li {
  margin: 0.4rem 0;
  font-size: 0.9rem;
}

/* Phone Visual */
.services-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ============================================
  SERVICE SECTION - PHONE MOCKUP STYLING
============================================ */

.phone-frame-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  aspect-ratio: 9 / 19.5;
}

/* Yellow background card behind the phone */
.phone-bg {
  position: absolute;
  inset: 0;
  border-radius: 30px;
  z-index: 1;
  transform: scale(1.05);
}

/* Phone container (black frame) */
.phone-mockup {
  position: relative;
  background: #111;
  border-radius: 40px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  z-index: 2;
  width: 88%;
  aspect-ratio: 9 / 19.5;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Inner app screenshot */
.phone-mockup img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 35px;
}

/* Subtle inner shadow for realism */
.phone-mockup::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 40px;
  box-shadow: inset 0 0 12px rgba(0, 0, 0, 0.4);
  pointer-events: none;
}

/* Floating animation */
.phone-frame-wrap {
  animation: floatPhone 6s ease-in-out infinite alternate;
}

@keyframes floatPhone {
  from { transform: translateY(0); }
  to { transform: translateY(-10px); }
}

/* Responsive */
@media (max-width: 992px) {
  .phone-frame-wrap {
    max-width: 340px;
  }
}

@media (max-width: 768px) and (max-width: 992px) {
  .phone-frame-wrap {
    max-width: 280px;
  }
}


.phone-card {
  background: #111;
  padding: 1rem;
  transform: translateY(50px);
  opacity: 0;
  transition: all 0.8s ease-in-out;
  max-width: 400px;
  width: 100%;
  margin: 0 auto;
}

.phone-card.visible {
  transform: translateY(0);
  opacity: 1;
}

.phone-card img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  display: block;
}

/* ======================
   RESPONSIVE ADJUSTMENTS
====================== */

/* Tablet View */
@media (max-width: 992px) {
  .services-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }

@media (max-width: 600px){
  .services{ padding: 3.5rem 1.2rem; }
  .icon-box{ width:45px; height:45px; font-size:1.2rem; }
  .phone-card{ width: 90%; padding: 1.2rem; }
}
  

  .services-visual {
    margin-top: 2.5rem;
  }

  .accordion summary {
    justify-content: center;
  }

  .phone-card {
    max-width: 350px;
    margin: 0 auto;
  }
}

/* Mobile View */
@media (max-width: 600px) {
  .services {
    padding: 3.5rem 1.2rem;
  }

  .section-head h2 {
    font-size: 1.8rem;
  }

  .icon-box {
    width: 45px;
    height: 45px;
    font-size: 1.2rem;
  }

  .bullets {
    grid-template-columns: 1fr;
  }

  .phone-card {
    padding: 1.2rem;
    border-radius: 20px;
  }

  .accordion summary {
    gap: 0.8rem;
  }

  .service-option {
    flex-direction: row;
    justify-content: center;
  }
}

/* Small Mobile Fixes */
@media (max-width: 400px) {
  .service-option {
    flex-direction: column;
  }

  .icon-box {
    margin-bottom: 0.4rem;
  }
}


/* ============================================
   ⚡ BEEPAY ADVANTAGE SECTION (BeeClub Style)
============================================ */
#advantage {
  position: relative;
  background: #111;
  color: #fff;
  overflow: hidden;
  padding: 6rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 20px;
  justify-content: center;
}

/* Background rings video */
#advantage .bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
  z-index: 0;
}

/* Header */
#advantage .adv-header {
  text-align: center;
  margin-bottom: 4rem;
  z-index: 2;
  position: relative;
}

#advantage .adv-tag {
  background: #f7d308;
  color: #111;
  border: none;
  padding: 0.5rem 1.3rem;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

#advantage .adv-tag:hover {
  background: #ffe94d;
  transform: translateY(-2px);
}

#advantage .adv-header h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.2;
}

#advantage .highlight {
  color: #f7d308;
}

/* Wrapper Layout */
.advantage-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  width: 100%;
  position: relative;
  z-index: 2;
}

/* Left & Right Columns */
.adv-left,
.adv-right {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Card Styling */
.adv-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 1.4rem 1.6rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.adv-card:hover {
  transform: translateY(-5px);
  border-color: rgba(247, 211, 8, 0.5);
  box-shadow: 0 15px 40px rgba(247, 211, 8, 0.15);
}

.adv-card span {
  font-size: 1.1rem;
  font-weight: 700;
  color: #f7d308;
  display: block;
  margin-bottom: 0.5rem;
}

.adv-card p {
  color: #ccc;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Center Phone Section */
.adv-center {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Hide phone mockup on mobile */
@media (max-width: 640px) {
  .adv-center {
    display: none;
  }
}


/* Glowing ring behind the phone */
.phone-glow {
  position: absolute;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(247, 211, 8, 0.4), transparent 70%);
  filter: blur(60px);
  animation: pulseGlow 6s ease-in-out infinite;
  z-index: 1;
}

@keyframes pulseGlow {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 0.9; transform: scale(1.1); }
}

.phone-frame {
  position: relative;
  z-index: 2;
  width: 280px;
  max-width: 90%;
  animation: bounce 3s ease-in-out infinite;
  transform-origin: center bottom;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  25% {
    transform: translateY(-15px) scale(1.02);
  }
  50% {
    transform: translateY(0) scale(0.98);
  }
  75% {
    transform: translateY(-10px) scale(1.01);
  }
}

.phone-frame img {
  width: 100%;
  height: auto;
  border-radius: 40px;
  box-shadow: 0 15px 40px rgba(247, 211, 8, 0.25);
}

/* Fade-out at the bottom of the section */
#advantage::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 180px;
  background: linear-gradient(to bottom, rgba(13, 13, 13, 0) 0%, #000 100%);
  z-index: 5;
}

/* Footer CTA */
.adv-footer {
  margin-top: 4rem;
  text-align: center;
  position: relative;
  z-index: 2;
}

.cta-btn {
  background: linear-gradient(180deg, #ffe94d, #f7d308);
  color: #111;
  font-weight: 700;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(247, 211, 8, 0.25);
  transition: all 0.3s ease;
}

.cta-btn:hover {
  transform: scale(1.05);
  /* box-shadow: 0 15px 35px rgba(247, 211, 8, 0.35); */
}


/* Tablets */
@media (max-width: 992px) {
  .advantage-wrapper {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .adv-left,
  .adv-right {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .adv-card {
    width: 45%;
    min-width: 250px;
  }

  .adv-center {
    order: -1;
  }

  .phone-glow {
    width: 280px;
    height: 280px;
    filter: blur(50px);
  }

  .phone-frame {
    width: 240px;
  }
}

/* Mobile */
@media (max-width: 600px) {
  #advantage {
    padding: 4rem 1rem;
  }

  .adv-left,
  .adv-right {
    flex-direction: column;
    align-items: center;
  }

  .adv-card {
    width: 100%;
    text-align: center;
  }

  .phone-frame {
    width: 220px;
  }

  .adv-footer {
    margin-top: 2.5rem;
  }

  .cta-btn {
    padding: 0.8rem 2rem;
    font-size: 0.9rem;
  }
}


/* Footer Button */
.adv-footer {
  margin-top: 3rem;
}

.cta-btn {
  background: #f7d308;
  color: #000;
  border: none;
  border-radius: 30px;
  padding: 0.8rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

.cta-btn:hover {
  background: #ffe94d;
  transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 1024px) {
  .advantage-wrapper {
    grid-template-columns: 1fr;
  }
  .adv-left, .adv-right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
  .adv-card {
    text-align: center;
  }
  .phone-frame img {
    width: 180px;
  }
}

@media (max-width: 600px) {
  .adv-left, .adv-right {
    grid-template-columns: 1fr;
  }
}


.center-phone{
  text-align:center;
  margin-top:24px
}

.center-phone img{
  max-width:420px;
  width:100%;
  border-radius:4px;
  border:1px solid var(--stroke)
}

.video {
  position: relative;
  text-align: center;
  overflow: visible;
  margin-top: 0;
  padding-top: 2rem;
  opacity: 0;
  transform: translateY(50px);
  transition: all 1.2s ease;
  margin-block: 80px;
}
.video .eyebrow{
  display:inline-block;
  background:rgba(247,211,8,.15);
  border:1px solid var(--brand);
  margin-bottom: 2.5rem;
  color:#fce98b;
  padding:4px 10px;
  border-radius:999px;
  font-weight:700
}

.video.loaded {
  opacity: 1;
  transform: translateY(0);
}

.video-wrapper {
  position: relative;
}

.video-heading-behind {
  font-size: clamp(40px, 6vw, 90px);
  font-weight: 900;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.05;
  letter-spacing: -1px;
  text-align: center;
  opacity: 0.85;
  text-shadow: 0 10px 40px rgba(0, 0, 0, 0.7);
  position: relative;
  z-index: 1; 
  margin: 0;
}

.video-heading-behind span{
  color: #f7d308;
}

.video-box.overlap {
  position: relative;
  margin-top: -80px;
  z-index: 2;
  display: inline-block;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
}

.video-box video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
  filter: brightness(0.85);
  transition: filter 0.3s ease;
}

.video-box:hover video {
  filter: brightness(1);
}


.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(180deg, #ffe870, #f7d308);
  color: #111;
  font-size: 44px;
  cursor: pointer;
  box-shadow: 0 0 60px rgba(247, 211, 8, 0.5);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  z-index: 3;
}

.play-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 0 80px rgba(247, 211, 8, 0.7);
}


.video-footer {
  margin-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.video-footer p {
  color: #dfdfe4;
  font-size: 1rem;
  max-width: 600px;
  margin: 0;
  text-align: left;
}

.explore-btn {
  font-size: 0.9rem;
  padding: 12px 18px;
  border-radius: 999px;
  text-transform: uppercase;
}


@media (max-width: 768px) {
  .video-heading-behind {
    font-size: clamp(30px, 6vw, 54px);
  }
  .video-box.overlap {
    margin-top: -30px;
  }
  .video-footer {
    flex-direction: column;
    text-align: center;
  }
  .video-footer p {
    text-align: center;
  }
}

.testimonials {
  position: relative;
  background: #0d0d0d;
  color: #fff;
  text-align: center;
  padding: 6rem 2rem;
  overflow: hidden;
}

.testimonials-inner {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s ease-in-out;
}

.testimonials-inner.visible {
  opacity: 1;
  transform: translateY(0);
}

.quote-icon {
  color: #f7d308;
  font-size: 6rem;
  line-height: 1;
  margin-bottom: 2rem;
}

.testimonial {
  display: none;
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.testimonial.active {
  display: block;
  opacity: 1;
}

.quote {
  font-size: 1.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.3;
  margin-bottom: 2rem;
  background: linear-gradient(180deg, #fff 60%, #888 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.author {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid #f7d308;
  object-fit: cover;
}

.details h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.details p {
  font-size: 0.85rem;
  color: #aaa;
}

/* Navigation Arrows */
.nav-buttons {
  margin-top: 2.5rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.nav-buttons button {
  background: transparent;
  border: 1px solid #f7d308;
  color: #f7d308;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.nav-buttons button:hover {
  background: #f7d308;
  color: #000;
  transform: scale(1.1);
}

/* Fade transition between testimonials */
.testimonial.fade {
  animation: fadeEffect 0.8s ease;
}

@keyframes fadeEffect {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 768px) {
  .quote {
    font-size: 1.2rem;
  }
  .quote-icon {
    font-size: 4rem;
  }
}

/* FAQ Section */
/* ============================================
   💬 BeePay FAQ Section (Updated Responsive Version)
============================================ */
.faq-section {
  background: radial-gradient(circle at top left, rgba(247, 211, 8, 0.08), transparent 60%), #0d0d0d;
  color: #fff;
  padding: 6rem 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease-in-out;
}

.faq-section.visible {
  opacity: 1;
  transform: translateY(0);
}

.faq-container {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  width: 100%;
  max-width: 1200px;
  align-items: flex-start;
}

/* LEFT SIDE */
.faq-intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
  padding-right: 2rem;
}

.ask-btn {
  background: #f7d308;
  border: none;
  color: #000;
  padding: 0.6rem 1.3rem;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(247, 211, 8, 0.25);
  transition: all 0.3s ease;
}

.ask-btn:hover {
  background: #ffe94d;
  transform: translateY(-2px);
}

.faq-intro h2 {
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.faq-intro h2 span {
  color: #f7d308;
}

.faq-intro p {
  color: #aaa;
  font-size: 1rem;
  line-height: 1.6;
  max-width: 360px;
}

/* RIGHT SIDE - FAQ LIST */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Each FAQ Item */
.faq-list details {
  background: #1a1a1a;
  border-radius: 12px;
  padding: 1.2rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
}

.faq-list details[open] {
  border-color: #f7d308;
  background: #202020;
  box-shadow: 0 0 20px rgba(247, 211, 8, 0.15);
}

.faq-list summary {
  list-style: none;
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  outline: none;
}

.faq-list summary::after {
  content: "+";
  color: #f7d308;
  font-weight: bold;
  transition: transform 0.3s ease;
  font-size: 1.3rem;
}

details[open] summary::after {
  content: "−";
  transform: rotate(180deg);
}

.faq-list p {
  margin-top: 0.8rem;
  font-size: 0.95rem;
  color: #ccc;
  line-height: 1.6;
  animation: fadeIn 0.3s ease;
}

/* Accessibility Utilities */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Skip to main content link */
.skip-to-main {
  position: absolute;
  left: -9999px;
  z-index: 999;
  padding: 1em;
  background-color: var(--brand);
  color: var(--text);
  opacity: 0;
}

.skip-to-main:focus {
  left: 50%;
  transform: translateX(-50%);
  opacity: 1;
}

/* Smooth Opening Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================
    PERFORMANCE OPTIMIZATIONS
============================================ */
/* Will-change for better performance on animations */
.animate-on-scroll {
  will-change: transform, opacity;
}

/* Optimize image rendering */
img {
  content-visibility: auto;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

/* Optimize font loading */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url('path/to/inter.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ============================================
    RESPONSIVE DESIGN
============================================ */

/* Tablets (<= 992px) */
@media (max-width: 992px) {
  .faq-container {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .faq-intro {
    align-items: center;
    text-align: center;
    padding-right: 0;
  }

  .faq-intro p {
    max-width: 100%;
  }

  .faq-list details {
    padding: 1rem 1.2rem;
  }
}

/* Mobile (<= 768px) */
@media (max-width: 768px) {
  .faq-section {
    padding: 4rem 1.5rem;
  }

  .faq-intro h2 {
    font-size: 2rem;
  }

  .faq-list summary {
    font-size: 1rem;
  }

  .faq-list p {
    font-size: 0.9rem;
  }
}

/* Small Devices (<= 480px) */
@media (max-width: 480px) {
  .faq-intro h2 {
    font-size: 1.7rem;
  }

  .faq-intro p {
    font-size: 0.9rem;
  }

  .faq-list details {
    padding: 1rem;
  }
}



/* Background Video Styling */
.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;       
  z-index: 0;
  opacity: 0.25;           
  filter: brightness(0.6) contrast(1.1);
}

/* Dark Overlay (optional but recommended) */
.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

/* Keep content above video */
.testimonials-inner {
  position: relative;
  z-index: 2;
}

@media (max-width: 768px) {
  .bg-video {
    display: none;
  }

  .video-overlay {
    display: none;
  }

  .testimonials {
    background: url("assets/beepay-bg-fallback.jpg") center/cover no-repeat;
  }
}

.bg-video {
  filter: brightness(0.5) saturate(1.2) blur(1px);
}

.testimonials::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(247, 211, 8, 0.2), transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  pointer-events: none;
}

/* Base Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Hero Section */
.hero-section {
  background: linear-gradient(90deg, #f7d308 0%, #ffe83d 100%);
  padding: 6rem 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.hero-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  gap: 3rem;
  max-width: 1200px;
  width: 100%;
}

/* Left Side */
.hero-left {
  color: #000;
}

.cta-top {
  background: transparent;
  border: 2px solid #000;
  border-radius: 25px;
  padding: 0.5rem 1.2rem;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cta-top:hover {
  transform: translateY(-3px);
  background: #111;
}

.hero-left h1 {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.highlight {
  color: #000;
  
  padding: 0 0.4rem;
  border-radius: 6px;
}

.hero-left p {
  font-size: 1.05rem;
  color: #333;
  max-width: 480px;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.cta-download {
  background: #000;
  color: #fff;
  border: none;
  border-radius: 30px;
  padding: 0.9rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cta-download:hover {
  transform: translateY(-3px);
  background: #111;
}

/* Right Side (Mockup Image) */
.hero-right {
  display: flex;
  justify-content: center;
  align-items: center;
  
}

.mockup-image {
  width: 100%;
  max-width: 700px;
  height: auto;
  border-radius: 20px;
  transform: translateY(-20px);
  filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.25));
  transition: transform 0.4s ease;
}

.mockup-image:hover {
  transform: translateY(-30px);
}
@media (max-width: 900px){ 
  .mockup-image{ 
    max-width: 340px 
  } 
}

/* Responsive Design */
@media (max-width: 900px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-left {
    margin-bottom: 3rem;
  }

  .hero-left h1 {
    font-size: 2.2rem;
  }

  .mockup-image {
    max-width: 340px;
  }
}


.download{padding-block:48px}
.download-card{display:grid;place-items:center;text-align:center;padding:32px;border:1px dashed rgba(247,211,8,.35);background:radial-gradient(600px 160px at 50% 0%, rgba(247,211,8,.12), transparent 60%), #0f0f12;border-radius:24px}
.download-card h2{margin:0 0 6px}

/* Footer Base */
.site-footer {
  background: #111;
  color: #fff;
  padding: 5rem 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-container {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: flex-start;
}

/* Left Section */
.footer-logo {
  width: 130px;
  margin-bottom: 1rem;
}

.footer-left h3 {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 1rem;
}

.available-on {
  color: #f7d308;
  font-size: 1.4rem;
  margin: 0.2rem ;
  text-align: center;
  width: 100%;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.store-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 0 0 1.5rem;
  justify-content: center;
  width: 100%;
}

.store-links a {
  display: inline-block;
  height: auto;
  transition: all 0.2s ease;
}

.store-links img {
  height: 150px;
  width: auto;
  transition: all 0.3s ease;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Responsive adjustments */
@media (min-width: 768px) {
  .store-links img {
    height: 55px;
  }
  .store-links {
    justify-content: flex-start;
    gap: 1.2rem;
  }
  .available-on {
    text-align: left;
  }
}

@media (max-width: 480px) {
  .store-links {
    gap: 0.8rem;
    justify-content: center;
  }
  .store-links img {
    height: 45px;
  }
}

.copyright {
  font-size: 0.85rem;
  color: #aaa;
}

/* Center Section */
.footer-center h4,
.footer-right h4 {
  font-size: 1rem;
  text-transform: uppercase;
  color: #f7d308;
  margin-bottom: 1rem;
  letter-spacing: 1px;
}

.footer-center ul,
.footer-right ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-center li,
.footer-right li {
  margin-bottom: 0.5rem;
}

.footer-center a,
.footer-right a {
  color: #ccc;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.footer-center a:hover,
.footer-right a:hover {
  color: #f7d308;
}

/* Right Section */
.socials {
  margin-top: 2rem;
}

.socials h5 {
  font-size: 0.9rem;
  text-transform: uppercase;
  color: #f7d308;
  margin-bottom: 0.6rem;
}

.social-icons {
  display: flex;
  gap: 0.8rem;
}

.social-icons a {
  color: #f7d308;
  font-size: 1.1rem;
  transition: transform 0.3s ease, color 0.3s ease;
}

.social-icons a:hover {
  color: #ffe94d;
  transform: scale(1.2);
}

/* Legal Links */
.legal-links {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.legal-links a {
  color: #888;
  font-size: 0.85rem;
  transition: color 0.3s ease;
}

.legal-links a:hover {
  color: #f7d308;
}

/* Responsive Layout */
@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 700px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-left h3 {
    font-size: 1.2rem;
  }

  .social-icons {
    justify-content: center;
  }

  .legal-links {
    justify-content: center;
  }
}


.highlight {
  color: #F7D308;
  font-weight: 700;
  position: relative;
  text-shadow: 
    0 0 6px rgba(247, 211, 8, 0.7),
    0 0 12px rgba(247, 211, 8, 0.5),
    0 0 20px rgba(247, 211, 8, 0.3);
  transition: all 0.3s ease-in-out;
  animation: highlightPulse 2.5s infinite ease-in-out;
}

@keyframes highlightPulse {
  0%, 100% {
    text-shadow: 
      0 0 6px rgba(247, 211, 8, 0.7),
      0 0 12px rgba(247, 211, 8, 0.5),
      0 0 20px rgba(247, 211, 8, 0.3);
  }
  50% {
    text-shadow: 
      0 0 10px rgba(247, 211, 8, 0.9),
      0 0 25px rgba(247, 211, 8, 0.7),
      0 0 35px rgba(247, 211, 8, 0.5);
  }
}

.highlight:hover {
  color: #fff;
  text-shadow:
    0 0 12px rgba(247, 211, 8, 0.9),
    0 0 25px rgba(247, 211, 8, 0.7),
    0 0 45px rgba(247, 211, 8, 0.6);
  transform: scale(1.03);
}


.button.primary,
.cta-btn,
.cta-download,
.cta-top {
  position: relative;
  overflow: hidden;
  border: none;
  border-radius: 30px;
  font-weight: 700;
  padding: 0.8rem 1.8rem;
  background: linear-gradient(180deg, #ffe94d, #f7d308);
  color: #000;
  box-shadow: 0 0 0 rgba(247, 211, 8, 0);
  transition: all 0.35s ease;
  cursor: pointer;
}

.button.primary:hover,
.cta-btn:hover,
.cta-download:hover,
.cta-top:hover {
  transform: translateY(-3px) scale(1.03);
  background: linear-gradient(180deg, #fff176, #f7d308);
  box-shadow: 0 0 20px rgba(247, 211, 8, 0.6),
              0 0 40px rgba(247, 211, 8, 0.3);
  animation: glowPulse 1.8s ease-in-out infinite;
}

.button.primary::after,
.cta-btn::after,
.cta-download::after,
.cta-top::after {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.3) 0%,
    rgba(255, 255, 255, 0.5) 50%,
    rgba(255, 255, 255, 0.1) 100%
  );
  transform: skewX(-20deg);
  transition: left 0.8s ease;
}

.button.primary:hover::after,
.cta-btn:hover::after,
.cta-download:hover::after,
.cta-top:hover::after {
  left: 130%;
}

@keyframes glowPulse {
  0%, 100% {
    box-shadow: 0 0 15px rgba(247, 211, 8, 0.5);
  }
  50% {
    box-shadow: 0 0 35px rgba(247, 211, 8, 0.9);
  }
}

body {
  opacity: 0;
  transform: translateY(10px);
  animation: siteFadeIn 1.2s ease-out forwards;
}

@keyframes siteFadeIn {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}


button,
a,
.card,
.adv-card,
.cta-btn,
.cta-top,
.cta-download,
.button,
.service-option,
.details,
.mockup-image,
.faq-list details,
.footer-logo,
.store-links img,
.nav-links a {
  transition: all 0.35s ease-in-out;
}

.card:hover,
.adv-card:hover,
.service-option:hover,
.faq-list details:hover,
.download-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(247, 211, 8, 0.2);
}

.button.primary,
.cta-btn,
.cta-top,
.cta-download {
  position: relative;
  overflow: hidden;
  border: none;
  border-radius: 30px;
  font-weight: 700;
  padding: 0.8rem 1.8rem;
  background: linear-gradient(180deg, #ffe94d, #f7d308);
  color: #000;
  cursor: pointer;
  box-shadow: 0 0 0 rgba(247, 211, 8, 0);
}

.button.primary:hover,
.cta-btn:hover,
.cta-top:hover,
.cta-download:hover {
  transform: translateY(-3px) scale(1.03);
  background: linear-gradient(180deg, #fff176, #f7d308);
  box-shadow: 0 0 20px rgba(247, 211, 8, 0.6),
              0 0 40px rgba(247, 211, 8, 0.3);
  animation: glowPulse 1.8s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% {
    box-shadow: 0 0 15px rgba(247, 211, 8, 0.5);
  }
  50% {
    box-shadow: 0 0 35px rgba(247, 211, 8, 0.9);
  }
}

.button.primary::after,
.cta-btn::after,
.cta-top::after,
.cta-download::after {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.3) 0%,
    rgba(255, 255, 255, 0.5) 50%,
    rgba(255, 255, 255, 0.1) 100%
  );
  transform: skewX(-20deg);
  transition: left 0.8s ease;
}

.button.primary:hover::after,
.cta-btn:hover::after,
.cta-top:hover::after,
.cta-download:hover::after {
  left: 130%;
}

.mockup-image:hover,
.phone-frame img:hover {
  animation: none; 
  transform: translateY(-15px) scale(1.05);
  filter: brightness(1.1);
  box-shadow: 0 15px 35px rgba(247, 211, 8, 0.3);
  transition: all 0.3s ease-out;
}

.nav-links a:hover {
  color: #f7d308;
  text-shadow: 0 0 8px rgba(247, 211, 8, 0.6);
}

.store-links img:hover {
  transform: translateY(-2px) scale(1.05);
  filter: brightness(1.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.footer-container a:hover {
  color: #f7d308;
  text-shadow: 0 0 8px rgba(247, 211, 8, 0.5);
}

/* ============================================
   BeePay Brand Section - Responsive Version
============================================ */
.beepay-brand-section {
  position: relative;
  width: 100%;
  min-height: 65vh;
  background-image: url('./assets/backgroundlogo.png'); 
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  /* Cross-browser compatibility */
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-attachment: scroll; /* Better for mobile performance */
}

.brand-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, #000 100%);
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 2rem;
}

/* Fading effect at the bottom */
.beepay-brand-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 30%;
  background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.9) 100%);
  z-index: 1;
}

.brand-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: #fff;
  padding: 4rem 2rem 6rem;
  max-width: 720px;
}

.brand-content h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: #f7d308;
  margin-bottom: 1rem;
}

.brand-content h2 span {
  color: #ffe94d;
  background: linear-gradient(90deg, #ffe94d, #f7d308);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.brand-content p {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #ddd;
  max-width: 600px;
  margin: 0 auto 2rem;
}

.brand-content .button.primary {
  background: linear-gradient(180deg, #ffe94d, #f7d308);
  color: #111;
  font-weight: 600;
  padding: 0.9rem 2rem;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(247, 211, 8, 0.25);
  transition: all 0.3s ease;
}

.brand-content .button.primary:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 35px rgba(247, 211, 8, 0.35);
}

/* ========== RESPONSIVE BREAKPOINTS ========== */

/* Large desktops and laptops */
@media (min-width: 1200px) {
  .beepay-brand-section {
    min-height: 70vh;
  }
}

/* Laptops and small desktops */
@media (max-width: 1199px) {
  .beepay-brand-section {
    min-height: 60vh;
  }
}

/* Tablets (landscape) */
@media (max-width: 1024px) {
  .beepay-brand-section {
    min-height: 55vh;
  }
}

/* Tablets (portrait) */
@media (max-width: 991px) {
  .beepay-brand-section {
    min-height: 50vh;
  }
}

/* Large mobile devices (landscape) */
@media (max-width: 768px) {
  .beepay-brand-section {
    min-height: 45vh;
    background-position: center 40%;
  }
  
  .brand-overlay {
    align-items: center;
    padding-bottom: 2rem;
  }

  .brand-content {
    padding: 2rem 1.5rem 3rem;
  }

  .brand-content h2 {
    font-size: 2rem;
  }
}

/* Medium mobile devices */
@media (max-width: 575px) {
  .beepay-brand-section {
    min-height: 40vh;
    background-position: center 50%;
  }
  
  .brand-content {
    padding: 1.5rem 1rem 2.5rem;
  }
  
  .brand-content h2 {
    font-size: 1.75rem;
  }
  
  .brand-content p {
    font-size: 0.95rem;
  }
  
  .brand-content .button.primary {
    padding: 0.7rem 1.4rem;
    font-size: 0.9rem;
  }
}

/* Small mobile devices */
@media (max-width: 375px) {
  .beepay-brand-section {
    min-height: 35vh;
  }
  
  .brand-content {
    padding: 1.5rem 1rem 2rem;
  }
  
  .brand-content h2 {
    font-size: 1.6rem;
  }
  
  .brand-content p {
    font-size: 0.9rem;
  }
}

/* Small devices (very small screens) */
@media (max-width: 480px) {
  .brand-content h2 {
    font-size: 1.5rem;
  }
  .brand-content p {
    font-size: 0.9rem;
  }
}


::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-thumb {
  background: #f7d308;
  border-radius: 4px;
}
::-webkit-scrollbar-track {
  background: #0d0d0d;
}

.scroll-animate {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.9s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.scroll-animate.active {
  opacity: 1;
  transform: translateY(0);
}
.scroll-fade { 
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 1s ease-out, transform 1s ease-out;
}
.scroll-fade.active { 
  opacity: 1;
  transform: scale(1);
}

.scroll-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.scroll-left.active {
  opacity: 1;
  transform: translateX(0);
}

.scroll-right {
  opacity: 0;
  transform: translateX(60px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.scroll-right.active {
  opacity: 1;
  transform: translateX(0);
}

.scroll-zoom {
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.8s ease-out;
}
.scroll-zoom.active {
  opacity: 1;
  transform: scale(1);
}

.scroll-stagger > * {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

/* Floating animation for hero-right */
@keyframes float {
  0%, 100% {
    transform: translateY(0) translateX(0);
  }
  50% {
    transform: translateY(-20px) translateX(5px);
  }
}

/* Hero right section styles */
.hero-right {
  position: relative;
  opacity: 0;
  transform: translateY(50px);
  animation: float 6s ease-in-out infinite;
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.hero-right.visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-right img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.3));
}
.scroll-stagger.active > * {
  opacity: 1;
  transform: translateY(0);
}

.scroll-stagger.active > *:nth-child(1) { 
  transition-delay: 0.1s; 
}
.scroll-stagger.active > *:nth-child(2) {
   transition-delay: 0.2s; 
  }
.scroll-stagger.active > *:nth-child(3) { 
  transition-delay: 0.3s; 
}
.scroll-stagger.active > *:nth-child(4) { 
  transition-delay: 0.4s; 
}
.scroll-stagger.active > *:nth-child(5) {
   transition-delay: 0.5s; 
  }

@keyframes fadeUp {
  0% { opacity: 0; transform: translateY(40px); }
  100% { opacity: 1; transform: translateY(0); }
}

@media (max-width: 992px) and (max-width: 768px){
  .hero{ grid-template-columns:1fr; gap:24px; text-align:center; padding-block:32px; }
  .hero-cta{ justify-content:center; }
  .adv-grid{grid-template-columns:repeat(2, minmax(0,1fr))}
  .bullets{grid-template-columns:repeat(2,minmax(0,1fr))}
  .nav-links{display:none}
  .nav-toggle{display:block}
  .nav.open .nav-links{display:flex;position:absolute;top:64px;left:0;right:0;background:#0d0d12;border-bottom:1px solid var(--stroke);padding:16px;flex-direction:column;gap:10px}
  .nav.open .nav-toggle span:nth-child(1){transform:translateY(7px) rotate(45deg)}
  .nav.open .nav-toggle span:nth-child(2){opacity:0}
  .nav.open .nav-toggle span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}
}


@media (max-width: 560px){
  .stats{gap:16px;flex-wrap:wrap}
  .adv-grid{grid-template-columns:1fr}
  .bullets{grid-template-columns:1fr}
  .floating-card{position:static;margin-top:12px;width:100%}
}

.phone-frame-wrap {
  animation: floatPhone 6s ease-in-out infinite alternate;
}

@keyframes floatPhone {
  from { transform: translateY(0); }
  to { transform: translateY(-10px); }
}

.phone-frame-wrap { animation: floatPhone 6s ease-in-out infinite alternate; }
@keyframes floatPhone { from{transform:translateY(0)} to{transform:translateY(-10px)} }



/* ===== ARROW BUTTONS ===== */
.arrow-controls {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
}

#prev, #next {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(247, 211, 8, 0.3);
  color: #f7d308;
  font-size: 1.5rem;
  font-weight: 700;
  padding: 0.8rem 1.2rem;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(247, 211, 8, 0.1);
}

/* ===== HOVER EFFECTS ===== */
#prev:hover, #next:hover {
  background: linear-gradient(180deg, #ffe94d, #f7d308);
  color: #111;
  transform: scale(1.1);
  box-shadow: 0 10px 25px rgba(247, 211, 8, 0.25);
}

/* ===== ACTIVE STATE ===== */
#prev:active, #next:active {
  transform: scale(0.95);
}

/* ===== BUTTON ALIGNMENT ===== */
#prev {
  margin-right: 1rem;
}

/* ===== MOBILE STYLES ===== */
@media (max-width: 600px) {
  #prev, #next {
    font-size: 1.2rem;
    padding: 0.6rem 1rem;
  }
}

/* ===== HERO HEADING ===== */
#hero-heading {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #f7d308 0%, #fde776 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

/* ===== HERO HIGHLIGHT ===== */
#hero-heading .highlight {
  color: #F7D308;
  background: none;
  -webkit-text-fill-color: #F7D308;
}

/* ===== HERO SUBTITLE ===== */
.hero .sub {
  font-size: 1.25rem;
  line-height: 1.6;
  color: #fff;
  max-width: 600px;
  margin: 0 auto 2rem;
  font-weight: 400;
}

/* ===== LANGUAGE STYLES ===== */
[lang="de"] .sub,
[lang="fr"] .sub {
  font-size: 1.1rem;
  line-height: 1.5;
}

/* ===== TRANSITIONS ===== */
#hero-heading,
.hero .sub {
  transition: all 0.3s ease;
}