 
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Zen Maru Gothic', sans-serif;
      background: #ffffff;
      padding-top: 64px;
    }

    .mdw-header {
      font-family: 'Zen Maru Gothic', sans-serif;
      background: #ffffff;
      border-bottom: 0.5px solid #e5e7eb;
      width: 100%;
      padding: 0 2rem;
      height: 64px;
      display: flex;
      align-items: center;
      justify-content: space-between;
        position: fixed;        
  top: 0;                 
  left: 0;                
  z-index: 9998;
    }

    .mdw-logo {
      font-family: 'Zen Maru Gothic', sans-serif;
      font-size: 26px;
      font-weight: 700;
      color: #1a1a1a;
      letter-spacing: -0.5px;
      text-decoration: none;
      display: flex;
      align-items: center;
      gap: 2px;
    }

    .mdw-logo span.dot {
      color: #3B6D11;
      font-size: 32px;
      line-height: 1;
      margin-left: 1px;
    }

    .mdw-btn {
      font-family: 'Zen Maru Gothic', sans-serif;
      background: #1a1a1a;
      color: #ffffff;
      border: none;
      border-radius: 50px;
      padding: 10px 24px;
      font-size: 14px;
      font-weight: 500;
      cursor: pointer;
      text-decoration: none;
      transition: background 0.2s ease;
      white-space: nowrap;
    }

    .mdw-btn:hover {
      background: #3B6D11;
    }

    @media (max-width: 480px) {
      .mdw-header {
        padding: 0 1rem;
      }

      .mdw-logo {
        font-size: 22px;
      }

      .mdw-btn {
        padding: 8px 18px;
        font-size: 13px;
      }
    }
  


    /* section 1 -hero section */
/* ===== HERO SECTION CSS ===== */

.hero-section {
  font-family: 'Zen Maru Gothic', sans-serif;
  background: #ffffff;
  text-align: center;
  padding: 40px 24px 50px;
  width: 100%;
  box-sizing: border-box;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #f5f5f5;
  border: 1px solid #e0e0e0;
  border-radius: 50px;
  padding: 6px 8px 6px 12px;
  font-size: 13px;
  color: #1a1a1a;
  margin-bottom: 32px;
  font-weight: 500;
}

.hero-badge .badge-dot {
  width: 8px;
  height: 8px;
  background: #7bc142;
  border-radius: 50%;
  flex-shrink: 0;
}

.hero-badge .badge-btn {
  background: #1a1a1a;
  color: #ffffff;
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 50px;
  text-decoration: none;
  white-space: nowrap;
}

.hero-title {
  font-size: clamp(32px, 6vw, 62px);
  font-weight: 900;
  color: #0a0a0a;
  line-height: 1.12;
  letter-spacing: -1.5px;
  margin: 0 auto 16px;
  max-width: 880px;
}

.hero-title em {
  font-style: italic;
  font-weight: 900;
}

.hero-highlight {
  display: inline-block;
  background: #aaee44;
  color: #0a0a0a;
  padding: 2px 16px 6px;
  border-radius: 8px;
  font-style: normal;
}

.hero-desc {
  font-size: 16px;
  color: #555555;
  max-width: 520px;
  margin: 0 auto 28px;
  line-height: 1.7;
  font-weight: 400;
}

.hero-label {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #999999;
  margin-bottom: 16px;
  font-weight: 500;
}

.hero-cta {
  display: inline-block;
  background: #aaee44;
  color: #0a0a0a;
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 16px;
  font-weight: 700;
  padding: 16px 36px;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.2s ease;
  margin-bottom: 28px;
  cursor: pointer;
  border: none;
}

.hero-cta:hover {
  background: #99dd33;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 15px;
  color: #1a1a1a;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.hero-stats strong {
  font-weight: 900;
}

.hero-stats .dot-sep {
  width: 5px;
  height: 5px;
  background: #1a1a1a;
  border-radius: 50%;
  display: inline-block;
}

.hero-reviews {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
  max-width: 720px;
  margin: 0 auto;
}

.hero-review-card {
  background: #ffffff;
  border: 1px solid #e8e8e8;
  border-radius: 14px;
  padding: 16px 18px;
  text-align: left;
}

.hero-review-stars {
  color: #f5a623;
  font-size: 14px;
  margin-bottom: 8px;
  letter-spacing: 1px;
}

.hero-review-text {
  font-size: 13px;
  font-weight: 700;
  color: #0a0a0a;
  margin-bottom: 6px;
  line-height: 1.4;
}

.hero-review-author {
  font-size: 12px;
  color: #888888;
  font-weight: 400;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 768px) {
  .hero-section {
    padding: 48px 20px 40px;
  }

  .hero-title {
    letter-spacing: -0.5px;
  }
}

@media (max-width: 480px) {
  .hero-section {
    padding: 40px 16px 36px;
  }

  .hero-badge {
    font-size: 12px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero-stats {
    font-size: 13px;
    gap: 8px;
  }

  .hero-reviews {
    grid-template-columns: 1fr;
  }
}




/* section 2.................................................... */
/* ===== SECTION 2 CSS ===== */

.section2 {
  font-family: 'Zen Maru Gothic', sans-serif;
  background: #ffffff;
  width: 100%;
}

/* --- Marquee --- */
.section2-marquee-wrap {
  border-top: 1px solid #ececec;
  border-bottom: 1px solid #ececec;
  padding: 14px 0;
  overflow: hidden;
  margin-bottom: 56px;
}

.section2-marquee {
  display: flex;
  gap: 48px;
  animation: marquee 18s linear infinite;
  width: max-content;
}

.section2-marquee span {
  font-size: 14px;
  font-weight: 500;
  color: #888888;
  white-space: nowrap;
  letter-spacing: 0.3px;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* --- Inner Grid --- */
.section2-inner {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 60px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px 64px;
  align-items: start;
}

/* --- Left Content --- */
.section2-left h2 {
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 900;
  color: #0a0a0a;
  line-height: 1.5;
  letter-spacing: -1px;
  margin-bottom: 24px;
}

.section2-left h2 .hl {
  background: #aaee44;
  color: #0a0a0a;
  padding: 0 8px 4px;
  border-radius: 6px;
  font-style: italic;
}

.section2-left p {
  font-size: 15px;
  color: #444444;
  line-height: 1.75;
  margin-bottom: 18px;
  font-weight: 400;
}

.section2-left p strong {
  color: #0a0a0a;
  font-weight: 700;
}

/* --- Right Stats --- */
.section2-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.section2-rating {
  margin-bottom: 4px;
}

.section2-stars {
  color: #f5a623;
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 6px;
}

.section2-rating-num {
  font-size: 17px;
  font-weight: 700;
  color: #0a0a0a;
  margin-bottom: 2px;
}

.section2-rating-sub {
  font-size: 13px;
  color: #888888;
  font-weight: 400;
}

.section2-stat-card {
  border: 1px solid #e8e8e8;
  border-radius: 14px;
  padding: 20px 24px;
  background: #ffffff;
}

.section2-stat-num {
  font-size: clamp(32px, 5vw, 46px);
  font-weight: 900;
  color: #0a0a0a;
  letter-spacing: -1px;
  line-height: 1;
  margin-bottom: 6px;
}

.section2-stat-num .green {
  color: #5ab82a;
}

.section2-stat-label {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #999999;
  font-weight: 500;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 820px) {
  .section2-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0 20px 48px;
  }

  .section2-right {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  }

  .section2-rating {
    grid-column: 1 / -1;
  }

  .section2-marquee-wrap {
    margin-bottom: 40px;
  }
}

@media (max-width: 480px) {
  .section2-inner {
    padding: 0 16px 40px;
  }

  .section2-left h2 {
    letter-spacing: -0.5px;
  }

  .section2-right {
    grid-template-columns: 1fr;
  }
}



/* section 3 .................................. */
/* ===== SECTION 3 CSS ===== */

.section3 {
  font-family: 'Zen Maru Gothic', sans-serif;
  background: #ffffff;
  padding: 40px 32px 48px;
  width: 100%;
  box-sizing: border-box;
}

.section3-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #aaaaaa;
  margin-bottom: 18px;
}

.section3-divider {
  width: 100%;
  height: 1px;
  background: #ececec;
  margin-bottom: 24px;
}

.section3-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.section3-card {
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid #e8e8e8;
  border-radius: 14px;
  padding: 16px 20px;
  background: #ffffff;
  cursor: pointer;
  transition: border-color 0.2s ease;
}

.section3-card:hover {
  border-color: #bbbbbb;
}

.section3-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.icon-meta   { background: #1877f2; }
.icon-google { background: #ffffff; border: 1px solid #e8e8e8; }
.icon-li     { background: #0a66c2; }
.icon-tiktok { background: #010101; }

.section3-card-name {
  font-size: 15px;
  font-weight: 700;
  color: #0a0a0a;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 700px) {
  .section3-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 420px) {
  .section3 {
    padding: 32px 16px 40px;
  }

  .section3-grid {
    grid-template-columns: 1fr;
  }
}


/* section 4.............................................. */
/* ===== SECTION 4 CSS ===== */

.s4 {
  font-family: 'Zen Maru Gothic', sans-serif;
  background: #f7f7f5;
  padding: 56px 24px 64px;
  width: 100%;
  box-sizing: border-box;
}

/* --- Top Label & Title --- */
.s4-top {
  text-align: center;
  margin-bottom: 36px;
}

.s4-toplabel {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #999;
  font-weight: 600;
  margin-bottom: 14px;
}

.s4-title {
  font-size: clamp(26px, 4vw, 44px);
  font-weight: 900;
  color: #0a0a0a;
  letter-spacing: -1px;
  line-height: 1.5;
}

.s4-title .hl {
  background: #aaee44;
  color: #0a0a0a;
  padding: 2px 12px 5px;
  border-radius: 8px;
  font-style: normal;
}

/* --- Tabs --- */
.s4-tabs {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 50px;
  padding: 5px;
  max-width: 700px;
  margin: 0 auto 40px;
  flex-wrap: wrap;
  justify-content: center;
}

.s4-tab {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #666;
  background: transparent;
  border: none;
  border-radius: 50px;
  padding: 9px 18px;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 6px;
}

.s4-tab .dot {
  width: 7px;
  height: 7px;
  background: #aaee44;
  border-radius: 50%;
  display: none;
}

.s4-tab.active {
  background: #0a0a0a;
  color: #fff;
}

.s4-tab.active .dot {
  display: inline-block;
}

/* --- Panels --- */
.s4-panel {
  display: none;
}

.s4-panel.active {
  display: block;
}

/* --- Card --- */
.s4-card {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 20px;
  padding: 40px 36px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

/* --- Left Side --- */
.s4-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #3B6D11;
  background: #eaf5d3;
  padding: 5px 12px;
  border-radius: 50px;
  margin-bottom: 18px;
}

.s4-badge .bdot {
  width: 6px;
  height: 6px;
  background: #5ab82a;
  border-radius: 50%;
}

.s4-card-title {
  font-size: clamp(20px, 3vw, 30px);
  font-weight: 900;
  color: #0a0a0a;
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin-bottom: 24px;
}

.s4-card-title em {
  font-style: italic;
  color: #0a0a0a;
}

.s4-points {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}

.s4-point-head {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: #0a0a0a;
  margin-bottom: 4px;
}

.s4-point-head .pico {
  width: 20px;
  height: 20px;
  background: #aaee44;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.s4-point-head .pico svg {
  width: 11px;
  height: 11px;
}

.s4-point-body {
  font-size: 13px;
  color: #555;
  line-height: 1.65;
  padding-left: 28px;
}

.s4-cta {
  display: inline-block;
  background: #aaee44;
  color: #0a0a0a;
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 14px;
  font-weight: 700;
  padding: 13px 28px;
  border-radius: 50px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease;
}

.s4-cta:hover {
  background: #99dd33;
}

/* --- Right Side --- */
.s4-right {
  background: #f7f7f5;
  border-radius: 16px;
  padding: 28px 24px;
}

.s4-right-title {
  font-size: 18px;
  font-weight: 900;
  color: #0a0a0a;
  margin-bottom: 4px;
}

.s4-right-sub {
  font-size: 12px;
  color: #888;
  margin-bottom: 20px;
}

.s4-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 20px;
}

.s4-stat {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  padding: 14px 16px;
}

.s4-stat-company {
  font-size: 12px;
  font-weight: 700;
  color: #0a0a0a;
  margin-bottom: 1px;
}

.s4-stat-industry {
  font-size: 11px;
  color: #999;
  margin-bottom: 8px;
}

.s4-stat-num {
  font-size: 26px;
  font-weight: 900;
  color: #0a0a0a;
  letter-spacing: -0.5px;
  line-height: 1;
}

.s4-stat-num .gp {
  color: #5ab82a;
}

.s4-stat-lbl {
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #aaa;
  margin-top: 2px;
}

/* --- Reviews --- */
.s4-reviews {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
}

.s4-rev {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 10px;
  padding: 10px 12px;
}

.s4-rev-stars {
  color: #f5a623;
  font-size: 11px;
  margin-bottom: 4px;
}

.s4-rev-text {
  font-size: 11px;
  color: #333;
  font-weight: 600;
  line-height: 1.4;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 820px) {
  .s4-card {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .s4-reviews {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 500px) {
  .s4 {
    padding: 40px 14px 48px;
  }

  .s4-card {
    padding: 24px 18px;
  }

  .s4-tabs {
    gap: 4px;
  }

  .s4-tab {
    font-size: 12px;
    padding: 8px 12px;
  }

  .s4-grid {
    grid-template-columns: 1fr 1fr;
  }

  .s4-reviews {
    grid-template-columns: 1fr;
  }
}

/* ===== RESPONSIVE ===== */

@media (max-width: 820px) {
  .s4-card {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .s4-reviews {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .s4 {
    padding: 40px 14px 48px;
  }

  .s4-card {
    padding: 22px 16px;
    gap: 24px;
  }

  /* Tabs — scroll horizontal, wrap band nahi */
  .s4-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    border-radius: 14px;
    padding: 5px 6px;
    gap: 4px;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .s4-tabs::-webkit-scrollbar { display: none; }

  .s4-tab {
    font-size: 12px;
    padding: 8px 13px;
    flex-shrink: 0;
  }

  /* Title */
  .s4-card-title {
    font-size: 20px;
  }

  /* Stats grid — 2 col on mobile */
  .s4-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .s4-stat-num {
    font-size: 22px;
  }

  .s4-stat-company {
    font-size: 11px;
  }

  /* Reviews — 1 col on mobile */
  .s4-reviews {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  /* CTA full width */
  .s4-cta {
    width: 100%;
    text-align: center;
    box-sizing: border-box;
  }

  /* Right panel padding */
  .s4-right {
    padding: 20px 16px;
  }

  .s4-right-title {
    font-size: 16px;
  }
}

@media (max-width: 380px) {
  .s4-grid {
    grid-template-columns: 1fr;
  }

  .s4-tab {
    font-size: 11px;
    padding: 7px 10px;
  }

  .s4-card {
    padding: 18px 14px;
  }
}


/* section 5 ............................ */
/* section 5 - before after carousel */
.s5 {
  font-family: 'Zen Maru Gothic', sans-serif;
  background: #ffffff;
  padding: 54px 20px 70px;
  overflow: hidden;
  box-sizing: border-box;
  width: 100%;
}

.s5-head {
  max-width: 1100px;
  margin: 0 auto 30px;
}

.s5-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #777;
  margin-bottom: 8px;
}

.s5-head h2 {
  font-size: clamp(26px, 5vw, 52px);
  font-weight: 900;
  color: #050505;
  line-height: 1.4;
  letter-spacing: -2px;
  margin: 0;
}

.s5-head h2 em {
  font-style: italic;
  font-weight: 500;
}

.s5-head h2 span {
  background: #a6ef00;
  color: #050505;
  padding: 0 8px 5px;
  border-radius: 7px;
}

.s5-wrap {
  max-width: 980px;
  margin: 0 auto;
  position: relative;
}

.s5-overflow {
  overflow: hidden;
  border-radius: 22px;
}

.s5-track {
  display: flex;
  transition: transform 0.45s ease;
  will-change: transform;
}

.s5-card {
  min-width: 100%;
  background: #fff;
  border: 1px solid #dedede;
  border-radius: 22px;
  overflow: hidden;
  box-sizing: border-box;
}

.s5-top {
  padding: 28px 34px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  border-bottom: 1px solid #e7e7e7;
}

.s5-cat {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #777;
  margin-bottom: 9px;
  font-weight: 600;
}

.s5-top h3 {
  font-size: clamp(17px, 2.6vw, 25px);
  font-weight: 900;
  color: #050505;
  margin: 0;
}

.s5-top h3 em {
  color: #78d800;
  font-style: italic;
  font-weight: 600;
}

.s5-btn {
  color: #050505;
  background: #fff;
  border: 1px solid #dadada;
  border-radius: 999px;
  padding: 12px 22px;
  font-size: 12px;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
  transition: 0.25s ease;
  cursor: pointer;
  display: inline-block;
}

.s5-btn:hover {
  background: #a6ef00;
  border-color: #a6ef00;
}

.s5-ba {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.s5-col {
  padding: 34px;
  min-height: 270px;
  box-sizing: border-box;
}

.s5-col.before {
  border-right: 1px solid #e7e7e7;
}

.s5-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: 5px;
  margin-bottom: 20px;
}

.before .s5-tag {
  color: #c26a22;
  background: #fff0e4;
}

.after .s5-tag {
  color: #315f00;
  background: #eaffbf;
}

.s5-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.s5-col li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 18px;
  font-size: 14px;
  line-height: 1.65;
  color: #555;
}

.s5-col li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.before li::before {
  background: #7c8795;
}

.after li::before {
  background: #9df000;
  box-shadow: 0 0 0 3px rgba(166, 239, 0, 0.18);
}

.s5-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 22px;
}

.s5-arr {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid #dedede;
  background: #fff;
  color: #050505;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: 0.2s;
}

.s5-arr:hover {
  background: #f0f0f0;
}

.s5-dots {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
  justify-content: center;
}

.s5-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: none;
  background: #d8d8d8;
  cursor: pointer;
  transition: 0.25s;
}

.s5-dot.active {
  background: #a6ef00;
  width: 24px;
  border-radius: 20px;
}

.s5-counter {
  font-size: 12px;
  font-weight: 700;
  color: #999;
  min-width: 40px;
  text-align: right;
}

/* responsive */
@media (max-width: 640px) {
  .s5 {
    padding: 36px 14px 48px;
  }

  .s5-top {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 18px;
  }

  .s5-btn {
    width: 100%;
    text-align: center;
    box-sizing: border-box;
  }

  .s5-ba {
    grid-template-columns: 1fr;
  }

  .s5-col {
    padding: 22px 18px;
    min-height: auto;
  }

  .s5-col.before {
    border-right: none;
    border-bottom: 1px solid #e7e7e7;
  }

  .s5-col li {
    font-size: 13px;
  }

  .s5-arr {
    width: 36px;
    height: 36px;
    font-size: 22px;
  }
}

@media (max-width: 400px) {
  .s5-head h2 {
    letter-spacing: -1px;
  }

  .s5-head h2 span {
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
  }
}


/* section 6 ......................................... */
/* section 6 - MDW vs Competitors */
.s6 {
  font-family: 'Zen Maru Gothic', sans-serif;
  background: #fff;
  padding: 60px 20px 72px;
  box-sizing: border-box;
  width: 100%;
}

.s6-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 44px;
}

.s6-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 14px;
}

.s6-head h2 {
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 900;
  color: #050505;
  line-height: 1.5;
  letter-spacing: -2px;
  margin: 0;
}

.s6-head h2 em {
  font-style: italic;
  font-weight: 500;
}

.s6-head h2 span {
  background: #a6ef00;
  color: #050505;
  padding: 2px 10px 6px;
  border-radius: 8px;
  font-style: normal;
}

.s6-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 860px;
  margin: 0 auto 40px;
}

.s6-card {
  border-radius: 20px;
  overflow: hidden;
  border: 1.5px solid #e8e8e8;
}

.s6-card.mdw {
  border-color: #c2f060;
  background: #f8ffec;
}

.s6-card.comp {
  background: #fafafa;
}

.s6-card-head {
  padding: 20px 26px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #ebebeb;
}

.s6-card.mdw .s6-card-head {
  border-bottom-color: #daf08a;
}

.s6-brand {
  font-size: 22px;
  font-weight: 900;
  color: #050505;
}

.s6-brand span {
  color: #78d800;
}

.s6-badge {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 5px;
}

.badge-right {
  background: #a6ef00;
  color: #2a4a00;
}

.badge-wrong {
  background: #f0f0f0;
  color: #888;
}

.s6-list {
  list-style: none;
  padding: 22px 26px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.s6-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  line-height: 1.5;
  color: #333;
}

.s6-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
  font-size: 12px;
  font-weight: 900;
}

.icon-check {
  background: #a6ef00;
  color: #2a4a00;
}

.icon-x {
  background: #f0f0f0;
  color: #999;
}

.s6-cta {
  text-align: center;
}

.s6-btn {
  display: inline-block;
  background: #a6ef00;
  color: #050505;
  font-size: 14px;
  font-weight: 900;
  padding: 16px 36px;
  border-radius: 999px;
  text-decoration: none;
  letter-spacing: 0.3px;
  transition: 0.2s;
}

.s6-btn:hover {
  background: #92d900;
}

/* responsive */
@media (max-width: 600px) {
  .s6 {
    padding: 42px 14px 54px;
  }

  .s6-head {
    margin-bottom: 30px;
  }

  .s6-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .s6-card-head {
    padding: 16px 18px 14px;
  }

  .s6-brand {
    font-size: 18px;
  }

  .s6-list {
    padding: 16px 18px;
    gap: 12px;
  }

  .s6-list li {
    font-size: 13px;
  }
}




/* section 7 .................................................. */
/* section 7 - how it works */
.s7 {
  font-family: 'Zen Maru Gothic', sans-serif;
  background: #0d0f14;
  padding: 68px 20px 72px;
  box-sizing: border-box;
  width: 100%;
}

.s7-head {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 52px;
}

.s7-eyebrow {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: #a6ef00;
  margin-bottom: 16px;
}

.s7-head h2 {
  font-size: clamp(28px, 5vw, 54px);
  font-weight: 900;
  color: #ffffff;
  line-height: 1.4;
  letter-spacing: -2px;
  margin: 0;
}

.s7-head h2 span {
  background: #a6ef00;
  color: #050505;
  padding: 2px 12px 7px;
  border-radius: 9px;
}

.s7-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 1060px;
  margin: 0 auto 48px;
}

.s7-card {
  background: #161b22;
  border: 1px solid #252c38;
  border-radius: 18px;
  padding: 28px 24px 32px;
  box-sizing: border-box;
  position: relative;
  transition: 0.2s;
}

.s7-card:hover {
  border-color: #a6ef00;
  background: #161e10;
}

.s7-step {
  display: inline-block;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  background: #1e2d0a;
  color: #a6ef00;
  border: 1px solid #3a5a10;
  padding: 5px 10px;
  border-radius: 6px;
  margin-bottom: 18px;
}

.s7-card h3 {
  font-size: 16px;
  font-weight: 900;
  color: #fff;
  margin: 0 0 12px;
  line-height: 1.4;
}

.s7-card p {
  font-size: 13px;
  line-height: 1.7;
  color: #8a95a3;
  margin: 0;
}

.s7-num {
  position: absolute;
  top: 24px;
  right: 22px;
  font-size: 36px;
  font-weight: 900;
  color: #1e2530;
  line-height: 1;
  user-select: none;
}

.s7-cta {
  text-align: center;
}

.s7-btn {
  display: inline-block;
  background: #a6ef00;
  color: #050505;
  font-size: 14px;
  font-weight: 900;
  padding: 16px 38px;
  border-radius: 999px;
  text-decoration: none;
  transition: 0.2s;
  letter-spacing: 0.3px;
}

.s7-btn:hover {
  background: #92d900;
}

/* responsive */
@media (max-width: 860px) {
  .s7-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .s7 {
    padding: 48px 14px 56px;
  }

  .s7-head {
    margin-bottom: 36px;
  }

  .s7-head h2 {
    letter-spacing: -1px;
  }

  .s7-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }

  .s7-card {
    padding: 22px 20px 26px;
  }

  .s7-num {
    font-size: 28px;
    top: 18px;
    right: 16px;
  }
}



/* section 8 .............................................. */
/* section 8 - multi channel */
.s8 {
  font-family: 'Zen Maru Gothic', sans-serif;
  background: #f5f5f3;
  padding: 68px 20px 72px;
  box-sizing: border-box;
  width: 100%;
}

.s8-head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 16px;
}

.s8-eyebrow {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 16px;
}

.s8-head h2 {
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 900;
  color: #050505;
  line-height: 1.4;
  letter-spacing: -2px;
  margin: 0 0 16px;
}

.s8-head h2 span {
  background: #a6ef00;
  color: #050505;
  padding: 2px 12px 7px;
  border-radius: 9px;
  display: inline-block;
}

.s8-sub {
  font-size: 15px;
  line-height: 1.7;
  color: #666;
  max-width: 560px;
  margin: 0 auto 48px;
  text-align: center;
}

.s8-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  max-width: 1060px;
  margin: 0 auto 48px;
}

.s8-card {
  background: #fff;
  border: 1px solid #e4e4e4;
  border-radius: 16px;
  padding: 26px 22px 28px;
  box-sizing: border-box;
  transition: 0.2s;
  cursor: default;
}

.s8-card:hover {
  border-color: #a6ef00;
  box-shadow: 0 6px 24px rgba(166, 239, 0, 0.12);
}

.s8-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 7px;
  background: #f0f0ee;
  font-size: 10px;
  font-weight: 900;
  color: #888;
  margin-bottom: 16px;
}

.s8-card:hover .s8-num {
  background: #a6ef00;
  color: #2a4a00;
}

.s8-card h3 {
  font-size: 15px;
  font-weight: 900;
  color: #050505;
  margin: 0 0 10px;
  line-height: 1.35;
}

.s8-card p {
  font-size: 13px;
  line-height: 1.7;
  color: #777;
  margin: 0;
}

.s8-cta {
  text-align: center;
}

.s8-btn {
  display: inline-block;
  background: #a6ef00;
  color: #050505;
  font-size: 14px;
  font-weight: 900;
  padding: 16px 38px;
  border-radius: 999px;
  text-decoration: none;
  transition: 0.2s;
  letter-spacing: 0.3px;
}

.s8-btn:hover {
  background: #92d900;
}

/* responsive */
@media (max-width: 860px) {
  .s8-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .s8 {
    padding: 48px 14px 56px;
  }

  .s8-sub {
    font-size: 14px;
    margin-bottom: 32px;
  }

  .s8-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .s8-card {
    padding: 20px 18px 22px;
  }
}



/* section 9 .................................................... */
/* section 9 - industries we serve */
.s9 {
  font-family: 'Zen Maru Gothic', sans-serif;
  background: #fff;
  padding: 68px 20px 72px;
  box-sizing: border-box;
  width: 100%;
}

.s9-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 14px;
}

.s9-eyebrow {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 14px;
}

.s9-head h2 {
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 900;
  color: #050505;
  line-height: 1.1;
  letter-spacing: -2px;
  margin: 0 0 14px;
}

.s9-head h2 em {
  font-style: italic;
  font-weight: 500;
}

.s9-head h2 span {
  background: #a6ef00;
  color: #050505;
  padding: 2px 12px 7px;
  border-radius: 9px;
  display: inline-block;
  font-style: normal;
}

.s9-sub {
  font-size: 14px;
  line-height: 1.75;
  color: #777;
  max-width: 520px;
  margin: 0 auto 44px;
  text-align: center;
}

.s9-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  max-width: 1060px;
  margin: 0 auto;
}

.s9-card {
  border: 1px solid #e8e8e8;
  border-radius: 16px;
  padding: 22px 20px 24px;
  box-sizing: border-box;
  transition: 0.22s;
  cursor: default;
  background: #fff;
}

.s9-card:hover,
.s9-card.active {
  background: #0d0f14;
  border-color: #0d0f14;
}

.s9-card:hover .s9-title,
.s9-card.active .s9-title { color: #fff; }

.s9-card:hover .s9-desc,
.s9-card.active .s9-desc { color: #8a95a3; }

.s9-card:hover .s9-num,
.s9-card.active .s9-num { color: #a6ef00; }

.s9-card:hover .s9-icon,
.s9-card.active .s9-icon { background: #a6ef00; }

.s9-card:hover .s9-icon svg,
.s9-card.active .s9-icon svg { stroke: #2a4a00; }

.s9-num {
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 2px;
  color: #bbb;
  margin-bottom: 14px;
  display: block;
}

.s9-icon {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  background: #f4f4f2;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  transition: 0.22s;
}

.s9-icon svg {
  stroke: #555;
  transition: 0.22s;
}

.s9-title {
  font-size: 15px;
  font-weight: 900;
  color: #050505;
  margin: 0 0 6px;
  transition: 0.22s;
}

.s9-desc {
  font-size: 11px;
  color: #999;
  margin: 0;
  line-height: 1.5;
  transition: 0.22s;
}

/* responsive */
@media (max-width: 860px) {
  .s9-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 600px) {
  .s9 { padding: 48px 14px 56px; }
  .s9-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .s9-sub { font-size: 13px; margin-bottom: 32px; }
  .s9-card { padding: 18px 16px 20px; }
}

@media (max-width: 360px) {
  .s9-grid { grid-template-columns: 1fr; }
}



/* section 10 ............................................. */
/* section 10 - testimonials */
.s10 {
  font-family: 'Zen Maru Gothic', sans-serif;
  background: #0d0f14;
  padding: 68px 20px 72px;
  box-sizing: border-box;
  width: 100%;
}

.s10-head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 48px;
}

.s10-eyebrow {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: #a6ef00;
  margin-bottom: 14px;
}

.s10-head h2 {
  font-size: clamp(26px, 5vw, 50px);
  font-weight: 900;
  color: #fff;
  line-height: 1.4;
  letter-spacing: -2px;
  margin: 0 0 14px;
}

.s10-head h2 em {
  font-style: italic;
  font-weight: 500;
}

.s10-head h2 span {
  background: #a6ef00;
  color: #050505;
  padding: 0px 8px 4px;
  border-radius: 9px;
  font-style: normal;
}

.s10-sub {
  font-size: 14px;
  line-height: 1.7;
  color: #8a95a3;
  margin: 0;
}

.s10-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 1060px;
  margin: 0 auto;
}

.s10-card {
  background: #161b22;
  border: 1px solid #252c38;
  border-radius: 16px;
  padding: 26px 24px 24px;
  box-sizing: border-box;
  transition: 0.2s;
  display: flex;
  flex-direction: column;
}

.s10-card:hover {
  border-color: #a6ef00;
  background: #161e10;
}

.s10-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 14px;
  color: #a6ef00;
  font-size: 14px;
}

.s10-quote {
  font-size: 14px;
  line-height: 1.72;
  color: #c8d0db;
  margin: 0 0 22px;
  flex: 1;
}

.s10-author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid #252c38;
  padding-top: 18px;
  margin-top: auto;
}

.s10-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #a6ef00;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 900;
  color: #2a4a00;
  flex-shrink: 0;
}

.s10-name {
  font-size: 13px;
  font-weight: 900;
  color: #fff;
  margin: 0 0 2px;
}

.s10-biz {
  font-size: 11px;
  color: #8a95a3;
  margin: 0;
}

/* responsive */
@media (max-width: 860px) {
  .s10-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 540px) {
  .s10 { padding: 48px 14px 56px; }
  .s10-grid { grid-template-columns: 1fr; gap: 12px; }
  .s10-head { margin-bottom: 32px; }
  .s10-card { padding: 20px 18px; }
}



/* section 11 ............................................. */
@import url('https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic:wght@400;500;700;800&display=swap');

.s11-wrap {
  background: #0d1117;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  text-align: center;
  font-family: 'Zen Maru Gothic', sans-serif;
}
.s11-inner { max-width: 720px; width: 100%; }

.s11-tag {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #a3e635;
  margin-bottom: 18px;
  font-weight: 500;
}

.s11-heading {
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.15;
  margin: 0 0 16px;
  font-family: 'Zen Maru Gothic', sans-serif;
}
.s11-heading em {
  font-style: italic;
  font-weight: 400;
  color: #e2e8f0;
}

.s11-highlight {
  display: inline-block;
  background: #a3e635;
  color: #0d1117;
  padding: 4px 20px 6px;
  border-radius: 6px;
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 700;
  margin-top: 4px;
  font-family: 'Zen Maru Gothic', sans-serif;
}

.s11-sub {
  font-size: clamp(14px, 2vw, 16px);
  color: #94a3b8;
  line-height: 1.7;
  margin: 24px auto 32px;
  max-width: 520px;
  font-family: 'Zen Maru Gothic', sans-serif;
}

.s11-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 1.5px solid #a3e635;
  color: #a3e635;
  padding: 12px 28px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  font-family: 'Zen Maru Gothic', sans-serif;
}
.s11-btn:hover { background: #a3e635; color: #0d1117; }

@media (max-width: 480px) {
  .s11-wrap { padding: 40px 16px; min-height: auto; }
  .s11-highlight { padding: 3px 14px 5px; }
  .s11-sub { margin: 18px auto 24px; }
}


/* section 12 ................................................ */
.s12-wrap {
  background: #0d1117;
  padding: 70px 20px;
  font-family: 'Zen Maru Gothic', sans-serif;
}
.s12-inner { max-width: 1100px; margin: 0 auto; }

.s12-heading {
  text-align: center;
  font-size: clamp(28px, 5vw, 54px);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
  margin: 0 0 50px;
  font-family: 'Zen Maru Gothic', sans-serif;
}
.s12-heading em {
  font-style: italic;
  font-weight: 400;
  color: #94a3b8;
}
.s12-highlight {
  display: inline-block;
  background: #a3e635;
  color: #0d1117;
  padding: 2px 16px 6px;
  border-radius: 8px;
  font-style: normal;
  font-weight: 800;
  font-family: 'Zen Maru Gothic', sans-serif;
}

.s12-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.s12-card {
  background: #161b27;
  border: 1px solid #1e2a3a;
  border-radius: 14px;
  padding: 36px 32px 32px;
  display: flex;
  flex-direction: column;
}

.s12-card-tag {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #a3e635;
  font-weight: 600;
  margin-bottom: 18px;
  font-family: 'Zen Maru Gothic', sans-serif;
}

.s12-card-title {
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
  margin: 0 0 16px;
  font-family: 'Zen Maru Gothic', sans-serif;
}

.s12-card-text {
  font-size: 15px;
  color: #94a3b8;
  line-height: 1.75;
  margin: 0 0 28px;
  flex: 1;
  font-family: 'Zen Maru Gothic', sans-serif;
}

.s12-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #a3e635;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1.5px solid #a3e635;
  padding-bottom: 2px;
  width: fit-content;
  transition: opacity 0.2s;
  font-family: 'Zen Maru Gothic', sans-serif;
}
.s12-card-link:hover { opacity: 0.75; }

@media (max-width: 480px) {
  .s12-wrap { padding: 48px 16px; }
  .s12-card { padding: 28px 22px 24px; }
}




/* section 13 ................................................. */
/* Section 13 - FAQ */
.s13-wrap {
  background: #f4f6f3;
  padding: 70px 20px;
  font-family: 'Zen Maru Gothic', sans-serif;
}
.s13-inner { max-width: 700px; margin: 0 auto; }

.s13-heading {
  text-align: center;
  font-size: clamp(26px, 5vw, 48px);
  font-weight: 800;
  color: #0d1117;
  line-height: 1.2;
  margin: 0 0 44px;
  font-family: 'Zen Maru Gothic', sans-serif;
}

.s13-faq-item {
  background: #ffffff;
  border: 1px solid #e2e8e0;
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
}

.s13-faq-btn {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  text-align: left;
  gap: 16px;
}

.s13-faq-btn span {
  font-size: 15px;
  font-weight: 600;
  color: #0d1117;
  font-family: 'Zen Maru Gothic', sans-serif;
  line-height: 1.4;
}

.s13-faq-icon {
  font-size: 22px;
  color: #a3e635;
  font-weight: 400;
  flex-shrink: 0;
  line-height: 1;
  transition: transform 0.3s;
}

.s13-faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.s13-faq-body.open { max-height: 300px; }

.s13-faq-body p {
  font-size: 14px;
  color: #4a5568;
  line-height: 1.75;
  padding: 0 24px 20px;
  margin: 0;
  font-family: 'Zen Maru Gothic', sans-serif;
}

.s13-faq-icon.open { transform: rotate(45deg); }

@media (max-width: 480px) {
  .s13-wrap { padding: 48px 16px; }
}



/* sticky button ...................................... */
@import url('https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic:wght@400;500;700;800&display=swap');

/* ---- Sticky Button ---- */
.sticky-btn-wrap {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
}
.sticky-btn {
  background: #a3e635;
  color: #0d1117;
  border: none;
  border-radius: 50px;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  font-family: 'Zen Maru Gothic', sans-serif;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  transition: background 0.2s, transform 0.2s;
}
.sticky-btn:hover { background: #84cc16; transform: translateY(-2px); }

/* ---- Overlay ---- */

/* ── BASE ── */
*:focus { outline: none !important; }
 
.bk-overlay {
  position: fixed; inset: 0;
  background: rgba(13,17,23,0.72);
  display: flex; align-items: center; justify-content: center;
  z-index: 99999;
  padding: 20px;
  font-family: 'Zen Maru Gothic', sans-serif;
  box-sizing: border-box;
}
 
.bk-modal {
  background: #fff;
  border-radius: 18px;
  width: 100%;
  max-width: 820px;
  max-height: 90vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
   height: 90vh;
  
}
 
.bk-step { display: none; }
.bk-step.active { display: flex; flex: 1; min-height: 0; overflow: hidden; }
 
/* ════════════════════════════════
   STEP 1 — CALENDAR
════════════════════════════════ */
#step1 { flex-direction: row; overflow: hidden; min-height: 0; }
 
/* Left Panel */
.bk-left {
  background: #f7f7f5;
  padding: 32px 24px;
  width: 220px;
  min-width: 220px;
  flex-shrink: 0;
  border-right: 1.5px solid #ebebea;
  border-radius: 18px 0 0 18px;
  display: flex; flex-direction: column; gap: 12px;
  overflow: hidden;
}
.bk-left-title {
  font-size: 11px; font-weight: 800; letter-spacing: .1em;
  text-transform: uppercase; color: #8dc63f;
}
.bk-left h2 {
  font-size: 18px; font-weight: 900; color: #0a0a0c;
  line-height: 1.25; letter-spacing: -.02em;
}
.bk-left-meta { display: flex; flex-direction: column; gap: 7px; }
.bk-left-row { display: flex; align-items: center; gap: 7px; font-size: 12px; color: #555; }
.bk-left-desc { font-size: 11.5px; color: #999; line-height: 1.6; margin-top: 2px; }
 
/* Right Calendar */
.bk-right {
  flex: 1; padding: 24px 20px;
  min-width: 0; overflow-y: auto;
  display: flex; flex-direction: column;
}
.bk-right h3 {
  font-size: 14px; font-weight: 800; color: #0a0a0c;
  margin-bottom: 14px; letter-spacing: -.01em; flex-shrink: 0;
}
 
/* Cal Nav */
.cal-nav {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 12px; flex-shrink: 0;
}
.cal-nav button {
  background: none; border: 1.5px solid #e0e0da;
  border-radius: 8px; width: 30px; height: 30px;
  font-size: 16px; cursor: pointer; color: #333;
  display: flex; align-items: center; justify-content: center;
  transition: border-color .15s, background .15s;
}
.cal-nav button:hover { border-color: #8dc63f; background: #f3fae8; }
.cal-month { font-size: 14px; font-weight: 800; color: #0a0a0c; }
 
/* Cal Grid */
.cal-grid {
  display: grid; grid-template-columns: repeat(7, 1fr);
  gap: 3px; flex-shrink: 0;
}
.cal-day-name {
  font-size: 9.5px; font-weight: 700; color: #bbb;
  text-align: center; padding: 3px 0;
  text-transform: uppercase; letter-spacing: .05em;
}
.cal-day {
  aspect-ratio: 1;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 500; color: #0a0a0c;
  border-radius: 8px; cursor: pointer; border: none;
  background: none; font-family: 'Zen Maru Gothic', sans-serif;
  transition: background .12s, color .12s; border: 1.5px solid transparent;
}
.cal-day.available { background: #f3fae8; color: #3a6a10; font-weight: 700; }
.cal-day.available:hover { background: #d6f09a; border-color: #8dc63f; }
.cal-day.selected { background: #8dc63f !important; color: #0a0a0c !important; font-weight: 900 !important; border-color: #8dc63f !important; }
.cal-day.past { color: #d0d0cc; cursor: default; }
.cal-day.empty { cursor: default; background: none; border-color: transparent; }
 
/* Timezone */
.tz-row {
  display: flex; align-items: center; gap: 8px;
  margin-top: 12px; padding-top: 10px;
  border-top: 1.5px solid #ebebea; flex-shrink: 0;
}
.tz-label { font-size: 11px; color: #999; font-weight: 600; white-space: nowrap; }
.tz-select {
  flex: 1; font-size: 11px;
  border: 1.5px solid #e0e0da; border-radius: 7px;
  padding: 5px 8px; color: #0a0a0c; background: #fff;
  font-family: 'Zen Maru Gothic', sans-serif;
  transition: border-color .15s;
}
.tz-select:focus { border-color: #8dc63f; }
 
/* Times Panel — DESKTOP: side column */
#timesPanel {
  width: 155px;
  flex-shrink: 0;
  border-left: 1.5px solid #ebebea;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-height: 0;
  align-self: stretch;
}
.times-date-label {
  font-size: 11px; font-weight: 800; color: #8dc63f;
  text-transform: uppercase; letter-spacing: .07em;
  padding: 20px 14px 10px; flex-shrink: 0;
}
.times-wrap {
  flex: 1; overflow-y: auto; padding: 0 24px 16px;
  display: flex; flex-direction: column; gap: 6px;
   min-height: 0;        /* ← ADD — yahi asli fix hai */
  max-height: 100%;
   scrollbar-width: none;        /* Firefox */
  -ms-overflow-style: none;
}
.times-wrap::-webkit-scrollbar {
  display: none;                /* Chrome/Safari */
}

.time-btn {
  border: 1.5px solid #e0e0da; background: #fff;
  color: #0a0a0c; border-radius: 8px; padding: 9px 8px;
  font-size: 12px; font-weight: 700; cursor: pointer;
  font-family: 'Zen Maru Gothic', sans-serif;
  text-align: center;
  transition: background .12s, border-color .12s, color .12s;
}
.time-btn:hover { background: #f3fae8; border-color: #8dc63f; }
.time-btn.selected { background: #8dc63f; border-color: #8dc63f; color: #0a0a0c; }
 
 
/* ════════════════════════════════
   STEP 2 — FORM
════════════════════════════════ */
#step2 { overflow-y: auto; }
 
.bk-form-wrap { width: 100%; padding: 22px 28px 24px; box-sizing: border-box; }
 
.form-back {
  display: inline-flex; align-items: center; gap: 6px;
  background: none; border: none; cursor: pointer;
  font-size: .78rem; font-weight: 700; color: #555;
  padding: 0; margin-bottom: 10px; font-family: inherit;
  transition: color .15s;
}
.form-back:hover { color: #0a0a0c; }
 
.bk-form-wrap h3 {
  font-size: 1.1rem; font-weight: 900; color: #0a0a0c;
  margin-bottom: 12px; letter-spacing: -.02em;
}
 
/* Summary Box */
.booking-summary-box {
  display: flex; align-items: center; gap: 8px;
  background: #f3fae8; border: 1.5px solid #c8e88a;
  border-radius: 10px; padding: 9px 14px; margin-bottom: 14px;
}
.booking-summary-box .bsb-ico { color: #6aaa1f; flex-shrink: 0; }
.booking-summary-box p {
  font-size: .8rem; font-weight: 600;
  color: #3a6a10; margin: 0; line-height: 1.4;
}
 
/* Form grid */
.form-row-2 {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 10px; margin-bottom: 0;
}
 
.form-field { display: flex; flex-direction: column; margin-bottom: 10px; }
.form-field label {
  font-size: .72rem; font-weight: 700;
  color: #444; margin-bottom: 4px; letter-spacing: .01em;
}
.req { color: #e53e3e; margin-left: 1px; }
 
.form-field input {
  width: 100%; padding: 8px 12px;
  border: 1.5px solid #e0e0da; border-radius: 9px;
  font-size: .87rem; font-family: inherit;
  color: #0a0a0c; background: #fff;
  transition: border-color .2s, box-shadow .2s;
  -webkit-appearance: none; box-sizing: border-box;
}
.form-field input::placeholder { color: #c0c0ba; }
.form-field input:focus { border-color: #8dc63f; box-shadow: 0 0 0 3px rgba(141,198,63,.18); }
.form-field input.input-error { border-color: #e53e3e !important; box-shadow: 0 0 0 3px rgba(229,62,62,.1) !important; }
 
/* Select */
.select-wrap { position: relative; display: flex; align-items: center; }
.select-wrap select {
  width: 100%; padding: 8px 36px 8px 12px;
  border: 1.5px solid #e0e0da; border-radius: 9px;
  font-size: .87rem; font-family: inherit; color: #0a0a0c;
  background: #fff; appearance: none; -webkit-appearance: none;
  cursor: pointer; transition: border-color .2s, box-shadow .2s;
  box-sizing: border-box;
}
.select-wrap select:focus { border-color: #8dc63f; box-shadow: 0 0 0 3px rgba(141,198,63,.18); }
.select-wrap select.input-error { border-color: #e53e3e !important; box-shadow: 0 0 0 3px rgba(229,62,62,.1) !important; }
.sel-arrow { position: absolute; right: 12px; pointer-events: none; }
 
.form-err {
  display: block; font-size: .7rem; font-weight: 600;
  color: #e53e3e; margin-top: 3px; min-height: 14px; line-height: 1.3;
}
 
/* Footer */
.form-footer {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; margin-top: 4px; flex-wrap: wrap;
}
.form-legal { font-size: .7rem; color: #aaa; line-height: 1.4; flex: 1; min-width: 140px; }
.form-legal a { color: #6aaa1f; text-decoration: none; font-weight: 700; }
.form-legal a:hover { text-decoration: underline; }
 
.form-submit {
  display: inline-flex; align-items: center; gap: 8px;
  background: #0a0a0c; color: #fff; font-family: inherit;
  font-weight: 800; font-size: .85rem;
  padding: 11px 22px; border-radius: 999px;
  border: none; cursor: pointer; white-space: nowrap; flex-shrink: 0;
  transition: background .2s, transform .15s;
}
.form-submit:hover { background: #8dc63f; color: #0a0a0c; transform: translateY(-1px); }
.form-submit svg { transition: transform .2s; }
.form-submit:hover svg { transform: translateX(2px); }
 
 
/* ════════════════════════════════
   STEP 3 — CONFIRMATION
════════════════════════════════ */
#step3 { justify-content: center; align-items: center; }
 
.bk-confirm {
  width: 100%; padding: 40px 28px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; gap: 12px;
}
.check-circle {
  width: 58px; height: 58px;
  background: #f3fae8; border: 2px solid #8dc63f;
  border-radius: 50%; display: flex; align-items: center;
  justify-content: center; font-size: 26px; color: #6aaa1f; font-weight: 900;
}
.bk-confirm h2 { font-size: 20px; font-weight: 900; color: #0a0a0c; }
.bk-confirm > p { font-size: 13px; color: #888; line-height: 1.65; max-width: 340px; }
.conf-detail {
  background: #f3fae8; border: 1.5px solid #c8e88a;
  border-radius: 10px; padding: 14px 20px;
  width: 100%; max-width: 380px;
}
.conf-detail p { font-size: 13px; color: #3a6a10; font-weight: 700; }
.close-btn {
  margin-top: 6px; background: #0a0a0c; color: #fff;
  border: none; border-radius: 999px; padding: 11px 28px;
  font-size: 13px; font-weight: 800; cursor: pointer;
  font-family: 'Zen Maru Gothic', sans-serif;
  transition: background .15s;
}
.close-btn:hover { background: #8dc63f; color: #0a0a0c; }
 
 
/* ════════════════════════════════
   TABLET  ≤ 768px
   Times panel → "Next" button flow
════════════════════════════════ */
@media (max-width: 768px) {
  .bk-overlay { padding: 16px; align-items: center; }
 
  .bk-modal {
    max-height: 88vh;
    height: 88vh;
    border-radius: 16px;
  }
 
  /* Hide left desc on tablet */
  .bk-left-desc { display: none; }
 
  .bk-left {
    width: 180px; min-width: 180px;
    padding: 22px 16px; gap: 10px;
  }
 
  /* Times panel: hidden by default on tablet,
     shown as a separate overlay-like step  */
  #timesPanel {
    position: absolute;
    top: 0; right: 0; bottom: 0;
    width: 200px !important;
    background: #fff;
    border-left: 1.5px solid #ebebea;
    border-radius: 0 16px 16px 0;
    z-index: 10;
    box-shadow: -4px 0 20px rgba(0,0,0,.08);
    flex-direction: column;
  }
 
  #step1 { position: relative; overflow: hidden; }
 
  .bk-right { padding: 18px 14px; }
  .cal-day { font-size: 11px; }
}
 
 
/* ════════════════════════════════
   MOBILE  ≤ 600px
   Full bottom-sheet, stacked layout
════════════════════════════════ */
@media (max-width: 600px) {
  .bk-overlay {
    padding: 0;
    align-items: flex-end;
  }
 
  .bk-modal {
    border-radius: 20px 20px 0 0;
    max-height: 92vh;
    max-width: 100%;
  }
 
  /* STEP 1: stack vertically */
  #step1 { flex-direction: column; overflow-y: auto; }
 
  /* Left panel: compact horizontal strip, hide desc */
  .bk-left {
    width: 100%; min-width: 0;
    border-right: none; border-bottom: 1.5px solid #ebebea;
    border-radius: 20px 20px 0 0;
    padding: 16px 18px 12px; gap: 6px;
    flex-direction: column;
  }
  .bk-left-title { font-size: 10px; }
  .bk-left h2 { font-size: 15px; }
  .bk-left-meta { flex-direction: row; flex-wrap: wrap; gap: 6px 14px; }
  .bk-left-row { font-size: 11px; }
  .bk-left-desc { display: none; }
 
  /* Right calendar: full width */
  .bk-right { padding: 14px 16px 10px; overflow-y: visible; }
  .bk-right h3 { font-size: 13px; margin-bottom: 10px; }
  .cal-day { font-size: 11.5px; border-radius: 7px; }
  .cal-day-name { font-size: 9px; }
  .cal-month { font-size: 13px; }
  .cal-nav button { width: 28px; height: 28px; font-size: 14px; }
  .cal-grid { gap: 2px; }
 
  /* Times panel: full-width bottom section, horizontal wrap */
  #timesPanel {
    position: static !important;
    width: 100% !important;
    border-left: none !important;
    border-top: 1.5px solid #ebebea;
    border-radius: 0 !important;
    box-shadow: none !important;
    flex-direction: column;
    overflow: visible;
  }
  .times-date-label { padding: 12px 16px 8px; font-size: 10px; }
  .times-wrap {
    flex-direction: row; flex-wrap: wrap;
    padding: 0 14px 14px; gap: 6px;
    overflow-y: visible; max-height: none;
  }
  .time-btn {
    flex: 0 0 auto;
    min-width: 76px; font-size: 11.5px;
    padding: 8px 6px;
  }
 
  /* Step 2 form */
  .bk-form-wrap { padding: 16px 16px 18px; }
  .form-row-2 { grid-template-columns: 1fr; }
  .form-footer { flex-direction: column; align-items: stretch; }
  .form-submit { justify-content: center; width: 100%; }
  .form-legal { text-align: center; }
  .bk-form-wrap h3 { font-size: 1rem; }
}
 
 
/* ════════════════════════════════
   SMALL MOBILE  ≤ 380px
════════════════════════════════ */
@media (max-width: 380px) {
  .bk-left { padding: 12px 14px 10px; }
  .bk-right { padding: 12px 12px 8px; }
  .cal-day { font-size: 10.5px; }
  .time-btn { min-width: 68px; font-size: 11px; padding: 7px 5px; }
  .bk-form-wrap { padding: 14px 12px 16px; }
}


/* Footer */
.site-footer {
  background: #0d1117;
  padding: 48px 20px 24px;
  font-family: 'Zen Maru Gothic', sans-serif;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.footer-top {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  padding-bottom: 36px;
  border-bottom: 1px solid #1e2a3a;
}
.footer-brand p {
  font-size: 22px;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 10px;
}
.footer-brand span {
  font-size: 13px;
  color: #94a3b8;
  line-height: 1.6;
  display: block;
  max-width: 280px;
  margin-bottom: 14px;
}
.footer-social {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.footer-social a {
  font-size: 12px;
  color: #4a5568;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-social a:hover { color: #a3e635; }

.footer-col h4 {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #a3e635;
  font-weight: 600;
  margin: 0 0 14px;
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: 14px;
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: #a3e635; }

.footer-bottom {
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
}
.footer-bottom p {
  font-size: 13px;
  color: #4a5568;
  margin: 0;
}
.footer-bottom-links {
  display: flex;
  gap: 20px;
}
.footer-bottom-links a {
  font-size: 13px;
  color: #4a5568;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-bottom-links a:hover { color: #a3e635; }

@media (max-width: 480px) {
  .footer-top { flex-direction: column; gap: 24px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 768px) {
  .footer-brand {
    text-align: center;
  }

  .footer-brand span {
    display: block;
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-col {
    text-align: center;
  }

  .footer-col ul {
    align-items: center;
  }

  .footer-bottom {
    text-align: center;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .footer-bottom-links {
    justify-content: center;
  }
}




.times-wrap {
  flex: 1;
  overflow-y: auto;
  padding: 0 14px 42px;  
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-height: 0;
  max-height: 100%;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

/* .bk-modal {
  background: #fff;
  border-radius: 18px;
  width: 100%;
  max-width: 820px;
  max-height: 90vh;
  height: auto;          
  overflow: hidden;
  display: flex;
  flex-direction: column;
} */

