* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: #ffffff;
  color: #0f172a;
}

/* NAVBAR */
.navbar {
  max-width: 78rem;
  margin: auto;
  padding: 22px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: -0.5rem;
  transition: 0.5s;
}


.logo img {
  width: 130px;
}

.nav-links a {
  position: relative;
  margin: 0 11px;
  text-decoration: none;
  color: #475569;
  font-weight: 500;
  padding-bottom: 6px;
}

/* underline */
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background: dodgerblue;
  transition: width 0.25s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
  color: dodgerblue;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.login {
  text-decoration: none;
  color: dodgerblue;
  font-weight: 500;
}

.primary-btn {
  background: dodgerblue;
  color: white;
  padding: 10px 18px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
}

.primary-btn.large {
  padding: 14px 28px;
  font-size: 16px;
}

.secondary-btn {
  padding: 14px 24px;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
  text-decoration: none;
  color: #0f172a;
  font-weight: 500;
}

/* HERO */
.hero {
  max-width: 1200px;
  margin: auto;
  padding: 100px 20px;
  display: flex;
  align-items: center;
}

.badge {
  background: #eff6ff;
  color: #2563eb;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: 48px;
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero h1 span {
  color: #2563eb;
}

.hero p {
  font-size: 17px;
  color: #475569;
  line-height: 1.6;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 26px;
}

.trust-text {
  font-size: 14px;
  color: #64748b;
}

/* RATE CARD */
.rate-card {
  background: #f8fafc;
  border-radius: 20px;
  padding: 22px;
  box-shadow: 0 30px 60px rgba(15, 23, 42, 0.15);
  width: 140%;
  margin-right: auto;
   width: 180%;
  max-width: 400px; 
  margin-right:-5rem
}

.rate-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #334155;
  margin-bottom: 16px;
}

.dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
}

.rate-item {
  background: white;
  border-radius: 14px;
  padding: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}
#p1{
    width: 80%;
}
/* Skeleton */
.skeleton .line {
  background: linear-gradient(90deg, #e5e7eb, #f1f5f9, #e5e7eb);
  background-size: 200% 100%;
  animation: shimmer 1.4s infinite;
  border-radius: 6px;
}

.line.short {
  width: 120px;
  height: 14px;
  margin-bottom: 8px;
}

.line.tiny {
  width: 80px;
  height: 10px;
}

/* @keyframes shimmer {
  0% { background-position: 0% 0; }
  100% { background-position: 200% 0; }
} */

.price {
  font-size: 20px;
  font-weight: 700;
}

.best {
  background: linear-gradient(135deg, #0f172a, #1e293b);
  color: white;
}

.highlight {
  color: #22c55e;
  font-size: 26px;
}

.badge-small {
  background: #2563eb;
  color: white;
  font-size: 11px;
  padding: 4px 8px;
  border-radius: 999px;
  display: inline-block;
  margin-bottom: 6px;
}

.title {
  font-size: 16px;
  font-weight: 600;
}

.sub {
  font-size: 13px;
  color: #cbd5f5;
}

.savings {
  text-align: center;
  font-size: 13px;
  color: #15803d;
  margin-top: 10px;
}

#features{
    background-color: #f8fafc;
}

/* FEATURES SECTION */
.features {
  background: #f8fafc;
  padding: 100px 20px;
}

.features-header {
  max-width: 720px;
  margin: 0 auto 70px;
  text-align: center;
}

.features-header h2 {
  font-size: 36px;
  margin-bottom: 14px;
}

.features-header p {
  font-size: 16px;
  color: #475569;
  line-height: 1.6;
}

/* FLEX WRAPPER */
.features-wrapper {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

/* FEATURE CARD */
.feature-card {
  background: white;
  border-radius: 18px;
  padding: 28px;
  width: 340px;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px rgba(15, 23, 42, 0.12);
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #eff6ff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
}

.feature-icon.blue {
  background: #2563eb;
  color: white;
}

.feature-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 14.5px;
  color: #475569;
  line-height: 1.6;
}

/* HIGHLIGHT CARD */
.highlight-card {
  border: 1px solid #dbeafe;
  position: relative;
}

/* MINI COMPARISON */
.mini-compare {
  margin-top: 20px;
}

.mini-compare .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  font-size: 13px;
}

.mini-compare .bar {
  width: 120px;
  height: 14px;
  border-radius: 6px;
  background: #e5e7eb;
}

.mini-compare .bar.blue {
  background: #2563eb;
}

.mini-compare .brand {
  font-weight: 600;
  color: #2563eb;
}

/* RESPONSIVE */
@media (max-width: 750px) {
  .features {
    padding: 70px 16px;
  }

  .features-header h2 {
    font-size: 30px;
  }

  .feature-card {
    width: 100%;
    max-width: 420px;
  }
}

@media (max-width: 480px) {
  .features-header h2 {
    font-size: 26px;
  }

  .features-header p {
    font-size: 15px;
  }
}





/* RESPONSIVE */
@media (max-width: 1400px) {
    .hero{
        max-width: 1000px;
    }
}
@media (max-width: 1198px) {
    .hero{
        flex-direction:column;
        align-items: center;
        justify-content: center;
    }
    .rate-card{
        margin-top: 5rem;
        width: 80%;
        max-width: 80rem;
        
    }
    
 
   
}
@media (max-width: 900px) {
  .hero {
    
    padding: 60px 20px;
  }

  

 

 
  .nav-links {
    display: none;
  }
}
@media (max-width: 775px) {
    .rate-card{
        margin-right: auto;
        margin-left: auto;
    }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 30px;
  }
  .hero-left{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

  .hero p {
    font-size: 15px;
  }

  .primary-btn.large,
  .secondary-btn {
    width: 100%;
    text-align: center;
    align-items: center;
    justify-content: center;
    display: flex;
  }
  #flex4,#flex5{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  #flex4{
    text-align: center;
  }
  #aa{
    margin-left: auto;
  }
}
#lt,#ls{
    background-color:white;
    border-radius: 6px;
    opacity: 0.3;
}
#lt{
    margin-bottom: 0.2rem;
}
.navbar {
    position: sticky;
  top: 0;
  transition: background 0.3s ease, backdrop-filter 0.3s ease, box-shadow 0.3s ease;
  padding-bottom: 10px;
}

.navbar.scrolled {
    max-width: 100%;
    transition: 0.25s;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(8px);
  box-shadow: 0 8px 30px rgba(37, 99, 235, 0.12);
border-bottom: 0.1rem solid rgba(37, 99, 235, 0.13);


}
/* PRICING SECTION */
.pricing {
  background: #ffffff;
  padding: 100px 20px;
}

.pricing-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

/* LEFT */
.pricing-left {
  flex: 1.1;
  max-width: 580px;
}

.pricing-badge {
  display: inline-block;
  background: #eff6ff;
  color: #2563eb;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 18px;
}

.pricing-left h2 {
  font-size: 40px;
  line-height: 1.2;
  margin-bottom: 18px;
}

.pricing-left p {
  font-size: 16.5px;
  color: #475569;
  line-height: 1.65;
  margin-bottom: 28px;
}

.pricing-points {
  list-style: none;
  margin-bottom: 36px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pricing-points li {
  font-size: 15.5px;
  color: #334155;
  display: flex;
  align-items: center;
  gap: 8px;
  line-height: 1.5;
}

/* RIGHT */
.pricing-right {
  flex: 0.9;
  display: flex;
  justify-content: center;
  align-items: center;
}

.pricing-right img,
#imgs {
  width: 100% !important;
  max-width: 440px !important;
  height: auto !important;
  object-fit: contain !important;
  display: block !important;
  filter: drop-shadow(0 20px 35px rgba(15, 23, 42, 0.1));
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.pricing-right img:hover,
#imgs:hover {
  transform: translateY(-6px) scale(1.02);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .pricing {
    padding: 80px 20px;
  }

  .pricing-container {
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }

  .pricing-left {
    max-width: 100%;
  }

  .pricing-left h2 {
    font-size: 32px;
  }

  .pricing-points {
    text-align: left;
    max-width: 380px;
    margin: 0 auto 32px;
  }

  .pricing-right {
    width: 100%;
    margin: 0 auto;
  }

  .pricing-right img,
  #imgs {
    max-width: 320px !important;
  }
}

@media (max-width: 480px) {
  .pricing {
    padding: 60px 16px;
  }

  .pricing-left h2 {
    font-size: 26px;
  }

  .pricing-left p {
    font-size: 15px;
  }

  .pricing-points li {
    font-size: 14.5px;
  }

  .pricing-right img,
  #imgs {
    max-width: 250px !important;
  }
}

header {
  z-index: 55555;
}

/* HOW IT WORKS */
.how-it-works {
  background: #f8fafc;
  padding: 100px 20px;
}

.how-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 70px;
}

.how-header h2 {
  font-size: 36px;
  margin-bottom: 12px;
}

.how-header p {
  font-size: 16px;
  color: #475569;
  line-height: 1.6;
}

/* CONTAINER */
.how-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 80px;
}

/* STEPS */
.how-steps {
  flex: 1;
}

.step {
  display: flex;
  gap: 18px;
  margin-bottom: 28px;
}

.step-number {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #2563eb;
  color: white;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step-content h3 {
  font-size: 18px;
  margin-bottom: 6px;
}

.step-content p {
  font-size: 15px;
  color: #475569;
  line-height: 1.6;
}

/* IMAGE */
.how-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.how-image img {
  width: 100%;
  max-width: 420px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .how-container {
    flex-direction: column;
    gap: 50px;
  }

  .how-header h2 {
    font-size: 30px;
  }

  .how-steps {
    text-align: left;
  }
}

@media (max-width: 480px) {
  .how-it-works {
    padding: 70px 16px;
  }

  .how-header h2 {
    font-size: 26px;
  }
}
.imgr{
    width:450px;
    border-radius: 2rem;
}
.flex1{
    display: flex;
    flex-direction: column;
    align-items: baseline;
     box-shadow: 0 8px 30px rgba(37, 99, 235, 0.12);
border: 0.1rem solid rgba(37, 99, 235, 0.13);
    border-radius: 1rem;
    padding: 2rem;
}
#flexmain{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}
#flex2,#flex3{
    display: flex;
}
.step{
    margin:2rem
}
.step-number{
    margin-bottom: 2rem;
}
@media (max-width: 1300px) {

    #flex2,#flex3{
        flex-direction: column;
    }
}
@media (max-width: 690px) {
    .imgr{
        width: 100%;
    }  
    .flex1{
        justify-content: baseline;
        align-items: baseline;
    } 
    .step-content p{
        margin-top: 10px;
    }

}
.step{
    transition: 0.25s;
}
.step:hover{
    transform: scale(1.04);
}


.footer {
  background: #0f172a;
  color: #cbd5f5;
  padding: 80px 20px 30px;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: wrap;
}

.footer-brand {
  max-width: 360px;
}

.footer-brand .brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 700;
  color: white;
  margin-bottom: 14px;
}

.footer-brand img {
  width: 40px;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.6;
  color: #94a3b8;
  margin-bottom: 16px;
}

.socials {
  display: flex;
  gap: 14px;
}

.socials a {
  color: #cbd5f5;
  font-size: 18px;
  text-decoration: none;
  opacity: 0.8;
}

.socials a:hover {
  opacity: 1;
  color: #38bdf8;
}

.footer-col {
  min-width: 160px;
}

.footer-col h4 {
  font-size: 15px;
  font-weight: 600;
  color: white;
  margin-bottom: 14px;
}

.footer-col a {
  display: block;
  font-size: 14px;
  color: #94a3b8;
  text-decoration: none;
  margin-bottom: 10px;
}

.footer-col a:hover {
  color: #ffffff;
}

.footer-bottom {
  max-width: 1200px;
  margin: 40px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(148, 163, 184, 0.15);
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: #94a3b8;
  flex-wrap: wrap;
  gap: 10px;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    gap: 40px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}


#footeri{
    width:7rem;
    border-radius: 0.5rem;
}
.primary-btn.large, .primary-btn{
    transition: 0.25s;
}
.primary-btn.large:hover, .primary-btn:hover{
    box-shadow: 0 8px 30px rgba(37, 99, 235, 0.4);
}
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: white;
  border-radius: 50%;
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: all 0.25s ease;
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: #fff; /* default dark */
  transition: fill 0.25s ease;
}

/* Hover effect */
.whatsapp-float {
  background: #2563eb; /* blue */
}

.whatsapp-float:hover {
     box-shadow: 0 8px 30px rgba(37, 99, 235, 1);
  transform: translateY(-4px);

}

/* Mobile tweak */
@media (max-width: 600px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 16px;
    right: 16px;
  }
}

/* Global Loader Fix */
#loader {
  position: fixed !important;
  top: 50% !important;
  left: 50% !important;
  margin-top: -25px !important;
  margin-left: -25px !important;
  z-index: 9999 !important;
}

/* ==========================================================================
   IMAGE & ELEMENT ASPECT RATIO & ANTI-STRETCH NORMALIZATION
   ========================================================================== */
img {
  max-width: 100%;
  height: auto !important;
}

.logo img {
  width: 130px !important;
  height: auto !important;
  object-fit: contain !important;
  display: block !important;
}

.pricing-right img,
#imgs {
  max-width: 480px !important;
  width: 100% !important;
  height: auto !important;
  object-fit: contain !important;
}

.imgr,
#imgr1,
#imgr2,
#imgr3,
#imgr4 {
  max-width: 100% !important;
  width: 450px !important;
  height: auto !important;
  object-fit: contain !important;
  border-radius: 2rem;
}

#footeri,
.footer-brand .brand img {
  width: 7rem !important;
  height: auto !important;
  object-fit: contain !important;
  display: block !important;
}

@media (max-width: 690px) {
  .imgr,
  #imgr1,
  #imgr2,
  #imgr3,
  #imgr4 {
    width: 100% !important;
  }
}

/* ==========================================================================
   PLATFORM HIGHLIGHTS SHOWCASE SECTION STYLES
   ========================================================================== */
.highlights-showcase {
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 12%, #ffffff 88%, #f8fafc 100%);
  padding: 100px 20px;
  position: relative;
  border-top: 1px solid #edf2f7;
  border-bottom: 1px solid #edf2f7;
}

.showcase-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* SECTION HEADER */
.showcase-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 70px;
}

.showcase-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #eff6ff;
  color: #2563eb;
  padding: 6px 16px;
  border-radius: 9999px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 18px;
  border: 1px solid rgba(37, 99, 235, 0.18);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.08);
}

.showcase-badge svg {
  color: #2563eb;
}

.showcase-header h2 {
  font-size: 38px;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.22;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.showcase-header p {
  font-size: 17px;
  color: #475569;
  line-height: 1.65;
  max-width: 660px;
  margin: 0 auto;
}

/* SHOWCASE ROWS */
.showcase-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 70px;
  margin-bottom: 95px;
}

.showcase-row:last-child {
  margin-bottom: 0;
}

.showcase-row.reverse {
  flex-direction: row-reverse;
}

.showcase-content {
  flex: 1;
  max-width: 520px;
}

.showcase-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #f1f5f9;
  color: #334155;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 5px 12px;
  border-radius: 6px;
  margin-bottom: 14px;
  border: 1px solid #e2e8f0;
}

.showcase-heading {
  font-size: 30px;
  font-weight: 750;
  color: #0f172a;
  line-height: 1.28;
  margin-bottom: 16px;
  letter-spacing: -0.015em;
}

.showcase-desc {
  font-size: 16px;
  color: #475569;
  line-height: 1.65;
  margin-bottom: 26px;
}

/* SHOWCASE POINTS */
.showcase-points {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 30px;
}

.showcase-point-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.point-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #eff6ff;
  color: #2563eb;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  border: 1px solid rgba(37, 99, 235, 0.22);
  box-shadow: 0 2px 6px rgba(37, 99, 235, 0.1);
}

.point-text {
  font-size: 15px;
  color: #475569;
  line-height: 1.55;
}

.point-text strong {
  color: #0f172a;
  font-weight: 600;
}

/* CTA BUTTON */
.showcase-actions {
  margin-top: 8px;
}

.showcase-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #2563eb;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  padding: 10px 22px;
  border-radius: 10px;
  background: #eff6ff;
  border: 1px solid rgba(37, 99, 235, 0.25);
  transition: all 0.22s ease;
}

.showcase-cta-btn:hover {
  background: #2563eb;
  color: #ffffff;
  transform: translateX(4px);
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.25);
}

/* SHOWCASE VISUAL & WINDOW MOCKUP */
.showcase-visual {
  flex: 1.15;
  position: relative;
  display: flex;
  justify-content: center;
}

.mockup-window {
  width: 100%;
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 20px 45px -12px rgba(15, 23, 42, 0.1), 0 4px 12px rgba(15, 23, 42, 0.04);
  overflow: hidden;
  position: relative;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.mockup-window:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 65px -15px rgba(37, 99, 235, 0.15), 0 8px 20px rgba(15, 23, 42, 0.06);
}

.mockup-window-bar {
  height: 38px;
  background: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 14px;
  user-select: none;
}

.window-dots {
  display: flex;
  gap: 6px;
}

.window-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.window-dots .dot.red { background: #ef4444; }
.window-dots .dot.yellow { background: #f59e0b; }
.window-dots .dot.green { background: #10b981; }

.window-address {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  padding: 3px 12px;
  font-size: 11px;
  color: #64748b;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  max-width: 220px;
}

.window-actions-dummy {
  width: 40px;
}

.mockup-screen {
  background: #f8fafc;
  overflow: hidden;
  line-height: 0;
}

.showcase-img {
  width: 100% !important;
  max-width: 100% !important;
  height: auto !important;
  display: block !important;
  object-fit: contain !important;
}

/* FLOATING HIGHLIGHT BADGE */
.floating-highlight-badge {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: rgba(15, 23, 42, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #ffffff;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.14);
  pointer-events: none;
}

/* DUAL-DEVICE STAGE */
.dual-mockup-stage {
  position: relative;
  width: 100%;
}

.dual-mockup-stage .desktop-frame {
  width: 90%;
  margin-right: auto;
}

.mockup-phone {
  position: absolute;
  right: -12px;
  bottom: -24px;
  width: 185px;
  background: #0f172a;
  border: 3.5px solid #334155;
  border-radius: 28px;
  padding: 8px 6px 10px;
  box-shadow: 0 25px 50px -10px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(255, 255, 255, 0.1);
  z-index: 10;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.dual-mockup-stage:hover .mockup-phone {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 32px 60px -8px rgba(0, 0, 0, 0.55);
}

.phone-notch {
  height: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-bottom: 6px;
}

.notch-speaker {
  width: 36px;
  height: 3px;
  background: #1e293b;
  border-radius: 3px;
}

.notch-camera {
  width: 5px;
  height: 5px;
  background: #1e293b;
  border-radius: 50%;
}

.phone-screen {
  border-radius: 20px;
  overflow: hidden;
  background: #ffffff;
  line-height: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.phone-badge {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(15, 23, 42, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #ffffff;
  font-size: 10px;
  font-weight: 600;
  padding: 3px 9px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.pulse-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 2px rgba(34, 197, 94, 0.35);
  animation: pulseDotAnim 2s infinite;
}

@keyframes pulseDotAnim {
  0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); }
  70% { box-shadow: 0 0 0 5px rgba(34, 197, 94, 0); }
  100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
  .showcase-row {
    gap: 40px;
    margin-bottom: 75px;
  }
  .showcase-heading {
    font-size: 26px;
  }
  .mockup-phone {
    width: 155px;
    bottom: -18px;
  }
}

@media (max-width: 768px) {
  .highlights-showcase {
    padding: 70px 16px;
  }
  .showcase-header {
    margin-bottom: 45px;
  }
  .showcase-header h2 {
    font-size: 28px;
  }
  .showcase-row,
  .showcase-row.reverse {
    flex-direction: column !important;
    gap: 36px;
    margin-bottom: 65px;
  }
  .showcase-content {
    max-width: 100%;
  }
  .showcase-heading {
    font-size: 23px;
  }
  .showcase-visual {
    width: 100%;
  }
  .dual-mockup-stage .desktop-frame {
    width: 100%;
  }
  .mockup-phone {
    width: 125px;
    right: -6px;
    bottom: -14px;
    padding: 5px 4px 8px;
    border-radius: 20px;
    border-width: 2.5px;
  }
  .phone-screen {
    border-radius: 14px;
  }
  .phone-badge {
    display: none;
  }
}

@media (max-width: 480px) {
  .showcase-header h2 {
    font-size: 24px;
  }
  .showcase-header p {
    font-size: 15px;
  }
  .mockup-window-bar .window-address {
    display: none;
  }
  .mockup-phone {
    width: 105px;
    right: -4px;
    bottom: -10px;
  }
  .floating-highlight-badge {
    font-size: 11px;
    padding: 4px 10px;
    bottom: 10px;
    right: 10px;
  }
  .point-text {
    font-size: 14px;
  }
}


