/* BASE */
html { 
  scroll-behavior: smooth; 
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  color: #222;
  line-height: 1.6;
}


/* Remove anchor spacing */
.nav-menu a {
    text-decoration: none;
    font-weight: 500;
}


/* ===============================
   PREMIUM NAVBAR
================================ */

.navbar {
  position: sticky;
  top: 0;
  width: 100%;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  z-index: 1000;
}

.navbar.scrolled {
  padding: 6px 0;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 5%;
  max-width: 100%;
  margin: 0 auto;
  width: 100%;
}

/* Logo */
.logo {
  flex-shrink: 0;  /* prevents logo from shrinking */
}

.logo img {
  height: 40px;
  transition: none;
}

.logo a::after,
a.logo::after {
  display: none !important;
}



/* Desktop Menu */
.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
  flex-shrink: 0;  /* prevents links from shrinking */
}

.nav-links a {
  text-decoration: none;
  font-weight: 650;
  font-size: 16px;
  color: #222;
  position: relative;
  

}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 2px;
  background: #005AC8;
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

/* ===============================
   HAMBURGER
================================ */

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: #222;
  transition: 0.3s ease;
  transform-origin: center;
}


body.menu-open {
  overflow: hidden;
}

/* ===============================
   DESKTOP — hide mobile-only elements
================================ */
@media (min-width: 769px) {
  .hamburger {
    display: none;           /* ✅ fix 3: no hamburger on desktop */
  }

  .mobile-menu-logo {
    display: none;           /* hide logo inside nav on desktop */
  }

  .nav-arrow {
    display: none;           /* hide arrows on desktop */
  }
}

/* ===============================
   MOBILE MENU
================================ */


  @media (max-width: 768px) {

  .nav-container {
    padding: 16px 18px;
    display: flex;
    align-items: center;      /* vertical center */
    justify-content: center;  /* center logo */
    min-height: 64px;
    position: relative;
  }

  .logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
  }

  .logo img {
    height: 32px;
    display: block;
  }

  .hamburger {
    display: flex;
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    width: 34px;
    height: 34px;
    align-items: center;
    justify-content: center;
    z-index: 2200;
  }


  .hamburger.active {
    position: fixed;
    left: 18px;
    top: 28px;
    z-index: 2200;
  }


  .navbar {
    z-index: 1000;
  }

  /* ✅ Fullscreen overlay wraps BOTH logo and links */
  .nav-links {
  position: fixed;
  top: 0;
  left: -100%;          /* ✅ starts off-screen to the left */
  width: 100vw;
  height: 100vh;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  padding: 100px 32px 40px;
  gap: 0;
  opacity: 1;           /* ✅ remove opacity trick, use position instead */
  visibility: hidden;
  transition: left 0.35s ease, visibility 0.35s ease;
  z-index: 2000;
}

.nav-links.active {
  left: 0;              /* ✅ slides in to position */
  visibility: visible;
  transform: none;
}

  /* ✅ Logo sits above nav-links, fixed position, centered */
  .mobile-menu-logo {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 90px;
    display: none;                 /* hidden by default */
    justify-content: center;
    align-items: center;
    background: #ffffff;
    z-index: 2100;                 /* above nav-links */
  }

  /* Show logo only when menu is open — JS adds .active to nav-links */
  .nav-links.active ~ .mobile-menu-logo,
  .mobile-menu-logo.active {
    display: flex;
  }

  .mobile-menu-logo img {
    height: 28px;
  }

  .mobile-menu-logo a::after {
    display: none !important;
  }

  .mobile-close {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 24px;
    color: #222;
    cursor: pointer;
    padding: 8px;
    line-height: 1;
  }

  /* Nav links */
  .nav-links a {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 20px;
    font-weight: 700;
    color: #222;
    padding: 16px 0;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    text-decoration: none;
  }

  .nav-links a::after {
    display: block;
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: #005AC8;
    transition: width 0.3s ease;
  }

  .nav-links a:hover::after {
    width: calc(100% - 30px);
  }

 
.nav-links a:hover .nav-arrow {
  opacity: 1;
  color: #005AC8;
  text-shadow:
    0 0 8px rgba(0, 90, 200, 0.6),
    0 0 16px rgba(0, 200, 255, 0.4);
  transform: translateX(4px);
  transition: all 0.25s ease;
}

.nav-arrow {
  display: inline;
  font-size: 22px;
  opacity: 0.45;
  line-height: 1;
  transition: all 0.25s ease;  /* ✅ add transition to base state too */
}

}


/* MOBILE NAVBAR HEIGHT IMPROVEMENT */
@media (max-width: 768px) {

  .navbar {
    padding: 14px 16px;
    min-height: 64px;
  }

 

  .logo img {
    height: 32px;
  }

  .hamburger {
    height: 32px;
    width: 32px;
  }

}




/* LAYOUT */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 28px 5%;
  width: 100%;
}

@media (max-width: 768px) {
  .container {
    max-width: 100%;
    padding: 24px 16px;
  }
}

.center { 
  text-align: center; 
}

.grey { 
  background: #f5f7f8; 
}

.blue { 
  background: #eaf6fa; 
}

.columns {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  width: 100%;
}

.col {
  position: relative;
  flex: 1;
  min-width: 260px;
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  border: 1px solid #eee;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
}

.col:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Push button to bottom of card */
.col .button {
  margin-top: auto;
}

/* HERO */

.hero-bg {
  position: relative;
  min-height: 85vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 20px;
  color: #ffffff;

  
}

.hero-content h1 {
  font-size: 42px;
  font-weight: 700;
}

.hero-sub {
  font-size: 18px;
  opacity: 0.95;
}

.hero-note {
  font-size: 14px;
  opacity: 0.85;
}

@media (max-width: 768px) {
  .hero-bg {
    min-height: 65svh;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero-content h1 {
    font-size: 32px;
  }

  .hero-sub {
    font-size: 16px;
  }

  .hero-note {
    font-size: 13px;
  }

 .hero-video {
    object-fit: cover;
    background: #000; /* fills empty space */
  }
}

/* Secondary */
.secondary {
  font-size: 14px;
  opacity: 0.7;
  margin-top: 10px;
}


/* RIBBON */
.ribbon {
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(255, 140, 0, 0.65);
  color: #fff;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.3px;
  z-index: 2;
  border-radius: 0 0 8px 0;
}

.ribbon::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  border-top: 6px solid rgba(255, 140, 0, 0.75);
  border-left: 6px solid transparent;
}



/* PRODUCT */
.product-img {
  max-width: 130px;
  margin: 14px auto;
  display: block;
  transition: opacity 0.25s ease;
  will-change: opacity;
}

.product-img.fade {
  opacity: 0;
}

.product-img.loading {
  opacity: 0.5;
}

h3 {
  margin-top: 10px;
  margin-bottom: 10px;
}

.size-selector {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 10px 0;
}

.size-selector button {
  padding: 6px 14px;
  border-radius: 20px;
  border: 1px solid #00C8FF;
  background: #fff;
  color: #00C8FF;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: 'Montserrat', sans-serif;
}

.size-selector button:hover:not(.active):not(:disabled) {
  background: #f0f7ff;
}

.size-selector button.active {
  background: #00C8FF;
  color: #fff;
}

.size-selector button:disabled {
  cursor: default;
  background: #00C8FF;
  color: #fff;
  opacity: 0.9;
}

/* LIVING CARD STYLE (Problem & B2B) */
.col.alive {
  background: linear-gradient(
    180deg,
    #f7fbff 0%,
    #ffffff 100%
  );
  border: 1px solid #e6f2fb;
  box-shadow: 0 6px 20px rgba(0, 90, 200, 0.06);
  position: relative;
  overflow: hidden;
}

/* Remove default bullets for alive cards */
.col.alive ul {
  list-style: none;
  padding-left: 0;
}

/* Accent strip */
.col.alive::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 5px;
  height: 100%;
  
}

/* Hover effect */
.col.alive:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(0, 90, 200, 0.12);
}

/* Headings pop */
.col.alive h3 {
  color: #005AC8;
}

/* Softer list look */
.col.alive .content-list li {
  position: relative;
  padding-left: 14px;
}

.col.alive .content-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #00C8FF;
  font-weight: bold;
}

.col.alive .icon {
  width: 32px;
  height: 32px;
  margin-bottom: 10px;
  border-radius: 50%;
  background: rgba(0, 200, 255, 0.15);
  color: #005AC8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

/* B2B */
.b2b-section {
  background: linear-gradient(135deg, #005AC8, #00C8FF);
  color: #fff;
}
.b2b-section .col h3::before {
  content: "✓";
  display: inline-block;
  margin-right: 8px;
  color: #00C8FF;
  font-weight: 700;
}
.b2b-section .content-list li {
  font-size: 15px;
  line-height: 1.5;
}

/* WHERE TO BUY GRID */
.buy-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(280px, 1fr));
  gap: 32px;
  margin: 32px auto 0;
  align-items: start;
  justify-content: center;
  max-width: 900px;
}

.buy-col {
  width: 100%;
  text-align: center;
  padding: 0;
}

.buy-col h3 {
  font-size: 18px;
  margin-bottom: 16px;
  color: #005AC8;
  text-align: center;
}

.buy-col .icon-list {
  width: 100%;
  align-items: center;
}

.buy-col .icon-item {
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
  text-align: left;
}

/* Mobile */
@media (max-width: 768px) {
  .buy-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* ICON LIST (WHO / WHY) */
.icon-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.icon-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  line-height: 1.5;
}

.icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(0, 200, 255, 0.15);
  color: #00C8FF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}

/* RATING */

.rating-summary-section {
  margin: 24px 0 24px;
  display: flex;
  justify-content: center;
}

.rating-card {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  max-width: 900px;
  width: 100%;
  background: #ffffff;
  padding: 30px 28px;
  border-radius: 18px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.06);
  gap: 24px;
}

.rating-left {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.rating-number {
  font-size: 48px;
  font-weight: 800;
  color: #005AC8;
  line-height: 1;
}

.rating-stars {
  position: relative;
  width: 120px;
  height: 22px;
  margin: 12px auto 0;
  background: linear-gradient(to right, #FFD700 100%);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg fill='black' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 576 512'><path d='M287.9 17.8L354 150.2 499.2 171.5 382 279.6 410.3 423.7 287.9 360 165.6 423.7 193.9 279.6 76.7 171.5 221.9 150.2z'/></svg>") repeat-x;
  -webkit-mask-size: 24px;
  mask-size: 24px;
}

.rating-count {
  font-size: 14px;
  opacity: 0.7;
  margin-top: 10px;
  text-align: center;
}

.rating-divider {
  display: none;
}

.rating-platform {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.platform-label {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 12px;
}

@media (max-width: 768px) {
  .rating-card {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 24px 20px;
    text-align: center;
  }

  .rating-platform {
    align-items: center;
    text-align: center;
  }
}

/* REVIEW */
.reviews-section {
  margin-top: 60px;
}

.review-tabs {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin: 24px 0 36px;
}

.review-tab {
  padding: 10px 22px;
  border-radius: 24px;
  border: 1px solid #005AC8;
  background: #fff;
  color: #005AC8;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
}

.review-tab.active {
  background: #005AC8;
  color: #fff;
}

.review-content {
  display: none;
  max-width: 800px;
  margin: 0 auto;
}

.review-content.active {
  display: block;
}

.review-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.05);
}

.review-text {
  font-size: 15px;
  margin-bottom: 12px;
}

.review-meta {
  font-size: 13px;
  opacity: 0.6;
}

.review-image {
  width: 100%;
  max-width: 280px;
  border-radius: 8px;
  margin: 12px 0;
}



/* WHERE TO BUY */

.where-to-buy {
  background: #f7fbfd;
  padding: 60px 20px;
}

.where-to-buy h2 {
  text-align: center;
  margin-bottom: 10px;
}


.intro {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 40px;
  color: #555;
}

.info-box {
  background: #ffffff;
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 24px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.04);
}

.info-box.highlight {
  border-left: 5px solid #00C8FF;
}

.info-box h3 {
  margin-bottom: 12px;
}

.info-box ul {
  padding-left: 18px;
  margin-bottom: 10px;
}

.info-box li {
  margin-bottom: 6px;
}

.note {
  font-size: 14px;
  color: #666;
}

.faq {
  margin-top: 40px;
  width: 100%;
}

.faq h2 {
  margin-bottom: 20px;
  text-align: center;
}

.faq-item {
  background: #ffffff;
  border-radius: 10px;
  padding: 18px 20px;
  margin-bottom: 14px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.03);
}

.faq-item strong {
  display: block;
  margin-bottom: 6px;
}

.faq-item.warning {
  border-left: 4px solid #ff9800;
}

.muted {
  font-size: 13px;
  color: #777;
}

.buy-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 40px;
  flex-wrap: wrap;
}

.btn {
  min-width: 220px;
  padding: 14px 20px;
  border-radius: 30px;
  text-align: center;
  font-weight: 700;
  text-decoration: none;
  line-height: 1.3;
}

.btn span {
  font-size: 12px;
  font-weight: 400;
}

.btn.shopee {
  background: #EE4D2D;
  color: #fff;
}

.btn.lazada {
  background: #1A4FD8;
  color: #fff;
}

/* Mobile */
@media (max-width: 600px) {
  .where-to-buy {
    padding: 40px 16px;
  }
}

/* FAQ ACCORDION */
.faq-item {
  background: #ffffff;
  border-radius: 10px;
  margin-bottom: 14px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.03);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 16px 20px;
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  padding: 0 20px;
  text-align: center;
}

.faq-answer p {
  margin: 14px 0 18px;
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-icon {
  font-size: 20px;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}


/* BUTTONS */
.button {
  display: inline-block;
  padding: 12px 26px;
  border-radius: 30px;
  font-weight: 700;
  text-decoration: none;
  margin-top: 18px;
  color: #fff;
  transition: all 0.25s ease;
  cursor: pointer;
}

.btn-primary {
  background: #005AC8;
}

.btn-primary:hover {
  background: #EE4D2D;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0,90,200,0.3);
}

.btn-whatsapp { 
  background: #25D366;
}

.btn-whatsapp:hover {
  background: #20bd5a;
}

.btn-shopee { 
  background: #EE4D2D;
}

.btn-shopee:hover {
  background: #d43f1f;
}

.btn-lazada { 
  background: linear-gradient(90deg, #0F146A, #4A1FB8);
}

.btn-lazada:hover {
  background: linear-gradient(90deg, #0a0e4a, #3a1890);
}

button:focus:not(:focus-visible) {
  outline: none;
}



/* CONTENT */
.content-list {
  text-align: left;
  display: inline-block;
  margin: 20px auto;
  margin-bottom: 30px;
}

.content-list li {
  margin: 8px 0;
}

/* FOOTER */
footer {
  text-align: center;
  font-size: 15px;
  opacity: 1;
  padding: 30px 10px;
}



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

/* Focus styles for keyboard navigation */
a:focus-visible,
button:focus-visible {
  outline: 2px solid #005AC8;
  outline-offset: 2px;
}

.image-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.image-modal img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 8px;
}

.close-modal {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 32px;
  color: #fff;
  cursor: pointer;
}

/* BACK TO TOP BUTTON */
.floating-buttons {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 52px;
  height: 116px; /* enough space for 2 buttons */
  z-index: 9999;
}

.whatsapp-btn,
.top-btn {
  position: absolute;
  right: 0;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.18);
  transition: transform 0.28s ease, opacity 0.28s ease, box-shadow 0.25s ease;
}

.whatsapp-btn {
  bottom: 0;
  background: #25D366;
  color: #fff;
  text-decoration: none;
}

.whatsapp-btn svg {
  width: 24px;
  height: 24px;
  display: block;
}

.whatsapp-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.22);
}

.top-btn {
  bottom: 0;
  background: #00C8FF;
  color: #fff;
  border: none;
  font-size: 22px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  line-height: 1;
  padding-right: 5px;
}

.top-btn.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.top-btn:hover {
  background: #005AC8;
  box-shadow: 0 12px 24px rgba(0,0,0,0.22);
}

/* when back-to-top appears, move chat icon upward */
.floating-buttons.has-top .whatsapp-btn {
  transform: translateY(-64px);
}

.floating-buttons.has-top .whatsapp-btn:hover {
  transform: translateY(-66px);
}

.top-btn span {
  display: block;
  transform: rotate(-90deg) translateX(-1px);
}

@media (max-width: 768px) {
  .floating-buttons {
    right: 16px;
    bottom: 16px;
    width: 48px;
    height: 108px;
  }

  .whatsapp-btn,
  .top-btn {
    width: 48px;
    height: 48px;
  }

  .floating-buttons.has-top .whatsapp-btn {
    transform: translateY(-58px);
  }

  .floating-buttons.has-top .whatsapp-btn:hover {
    transform: translateY(-60px);
  }
}

/* BUSINESS HERO */

    /* BUSINESS PAGE ONLY */
.business-hero {
  position: relative;
  min-height: 78vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.business-hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.business-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0.40));
  z-index: 1;
}

.business-hero-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
  padding: 30px 20px;
  color: #fff;
}

.business-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  opacity: 0.95;
  margin-bottom: 14px;
}

.business-hero h1 {
  font-size: 54px;
  line-height: 1.08;
  margin: 0 0 16px;
  font-weight: 700;
}

.business-hero-sub {
  max-width: 720px;
  margin: 0 auto;
  font-size: 19px;
  line-height: 1.7;
  opacity: 0.96;
}

@media (max-width: 768px) {
  .business-hero {
    min-height: 65vh;
  }

  .business-hero h1 {
    font-size: 32px;
  }

  .business-hero-sub {
    font-size: 16px;
  }
}

    .hero-actions {
      display: flex;
      justify-content: center;
      gap: 14px;
      flex-wrap: wrap;
      margin-top: 28px;
    }

    .btn-outline-light {
      display: inline-block;
      padding: 12px 26px;
      border-radius: 30px;
      font-weight: 700;
      text-decoration: none;
      margin-top: 18px;
      color: #fff;
      border: 1px solid rgba(255,255,255,0.75);
      transition: all 0.25s ease;
    }

    .btn-outline-light:hover {
      background: rgba(255,255,255,0.12);
      transform: translateY(-1px);
    }

    .audience-strip {
      background: #111;
      color: #fff;
      padding: 22px 20px;
    }

    .audience-row {
      max-width: 1100px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 16px;
      text-align: center;
    }

    .audience-pill {
      padding: 12px 10px;
      border: 1px solid rgba(255,255,255,0.10);
      border-radius: 999px;
      background: rgba(255,255,255,0.04);
      font-weight: 600;
      font-size: 14px;
    }

    .section-title {
      text-align: center;
      margin-bottom: 10px;
      font-size: 34px;
    }

    .section-subtitle {
      text-align: center;
      max-width: 720px;
      margin: 0 auto 34px;
      color: #666;
      font-size: 16px;
    }

    .business-card-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 22px;
    }

    .business-card {
      background: #fff;
      border: 1px solid #e9eef3;
      border-radius: 18px;
      padding: 28px 24px;
      box-shadow: 0 8px 22px rgba(0,0,0,0.05);
      transition: transform 0.25s ease, box-shadow 0.25s ease;
    }

    .business-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 14px 30px rgba(0,0,0,0.08);
    }

    .business-card-icon {
      width: 52px;
      height: 52px;
      border-radius: 50%;
      background: rgba(0, 200, 255, 0.12);
      color: #005AC8;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      font-size: 22px;
      margin: 0 auto 14px;
    }

    .business-card h3 {
      text-align: center;
      color: #005AC8;
      margin-bottom: 10px;
    }

    .business-card p {
      text-align: center;
      margin: 0;
      color: #555;
    }

    .feature-section {
      padding: 70px 20px;
      background: #f7fbfd;
    }

    .feature-wrap {
      max-width: 1100px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 36px;
      align-items: center;
    }

    .feature-media {
      text-align: center;
    }

    .feature-media img {
      max-width: 280px;
      width: 100%;
      margin: 0 auto;
      display: block;
    }

    .feature-copy h2 {
      font-size: 34px;
      margin-bottom: 14px;
    }

    .feature-copy p {
      color: #555;
      margin-bottom: 18px;
    }

    .feature-points {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .feature-points li {
      position: relative;
      padding-left: 22px;
      margin-bottom: 10px;
    }

    .feature-points li::before {
      content: "•";
      position: absolute;
      left: 0;
      color: #00C8FF;
      font-weight: 700;
      font-size: 20px;
      line-height: 1;
    }

    .split-section {
      padding: 70px 20px;
      background: #fff;
    }

    .split-wrap {
      max-width: 1100px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 22px;
    }

    .split-box {
      border-radius: 18px;
      padding: 30px 26px;
      box-shadow: 0 8px 22px rgba(0,0,0,0.05);
    }

    .split-box.problem {
      background: #f9fbfc;
      border: 1px solid #e9eef3;
    }

    .split-box.solution {
      background: linear-gradient(135deg, #005AC8, #00C8FF);
      color: #fff;
    }

    .split-box h3 {
      margin-top: 0;
      margin-bottom: 14px;
    }

    .split-box ul {
      margin: 0;
      padding-left: 18px;
    }

    .split-box li {
      margin-bottom: 10px;
    }

    .steps-section {
      padding: 70px 20px;
      background: #111;
      color: #fff;
    }

    .steps-section .section-subtitle {
      color: rgba(255,255,255,0.76);
    }

    .steps-grid {
      max-width: 1100px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 22px;
    }

    .step-card {
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 18px;
      padding: 28px 24px;
    }

    .step-number {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      background: #00C8FF;
      color: #111;
      font-weight: 700;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 14px;
    }

    .trust-section {
      padding: 70px 20px;
      background: #fff;
    }

    .trust-grid {
      max-width: 1000px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 18px;
    }

    .trust-item {
      background: #fff;
      border: 1px solid #e9eef3;
      border-radius: 16px;
      padding: 24px 18px;
      text-align: center;
      box-shadow: 0 6px 18px rgba(0,0,0,0.04);
    }

    .trust-item strong {
      display: block;
      color: #005AC8;
      margin-bottom: 8px;
    }

    .final-cta {
      padding: 80px 20px;
      background: linear-gradient(135deg, #005AC8, #003C87);
      color: #fff;
      text-align: center;
    }

    .final-cta h2 {
      font-size: 38px;
      margin-bottom: 14px;
    }

    .final-cta p {
      max-width: 760px;
      margin: 0 auto 18px;
      opacity: 0.95;
    }

    @media (max-width: 900px) {
      .business-card-grid,
      .steps-grid,
      .trust-grid,
      .feature-wrap,
      .split-wrap,
      .audience-row {
        grid-template-columns: 1fr;
      }

      .business-hero h1 {
        font-size: 38px;
      }

      .business-hero-sub {
        font-size: 17px;
      }

      .feature-copy,
      .feature-media {
        text-align: center;
      }
    }

    @media (max-width: 768px) {
      .business-hero {
        min-height: 65vh;
      }

      .business-hero h1 {
        font-size: 32px;
      }

      .business-hero-sub {
        font-size: 16px;
      }
    }


/* CONTACT MODAL */
.contact-modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 99999;
}

.contact-modal.show {
  display: block;
}

.contact-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(4px);
}

.contact-modal-box {
  position: absolute;
  top: 50%;
  left: 50%;
  width: calc(100% - 32px);
  max-width: 560px;
  transform: translate(-50%, -50%);
  background: #ffffff;
  border-radius: 24px;
  padding: 26px 24px 22px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.20);
  z-index: 2;
}

.compact-contact-modal h2 {
  margin: 0 0 18px;
  text-align: center;
  font-size: 28px;
  color: #111;
}

.contact-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border: none;
  border-radius: 50%;
  background: #f4f6f8;
  color: #222;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.contact-modal-close:hover {
  background: #e9eef3;
}

.contact-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 0;
  border-top: 1px solid #eef2f5;
}

.contact-row:first-of-type {
  border-top: none;
  padding-top: 0;
}

.contact-label {
  font-size: 15px;
  font-weight: 700;
  color: #005AC8;
}

.contact-value {
  min-width: 0;
}

.contact-link {
  color: #222;
  text-decoration: none;
  font-weight: 600;
  word-break: break-word;
}

.contact-link:hover {
  color: #005AC8;
}

.icon-inline-row {
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.contact-icon-btn img {
  height: 26px;
  width: auto;
  display: block;
  transition: transform 0.18s ease, opacity 0.18s ease;
}

.contact-icon-btn:hover img {
  transform: translateY(-1px);
  opacity: 0.85;
}


@media (max-width: 600px) {
  .contact-modal-box {
    padding: 24px 18px 20px;
    border-radius: 20px;
  }

  .compact-contact-modal h2 {
    font-size: 25px;
  }

  .contact-row {
    grid-template-columns: 1fr;
    gap: 8px;
    align-items: start;
  }

  .contact-label {
    margin-bottom: 2px;
  }
}