/* RESET */
* { box-sizing: border-box; }
html, body { margin: 0; overflow-x: clip; }
a {
  color: inherit;
  text-decoration: none;
}
/* ===== HEADER ===== */
.cx-header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  z-index: 1000;
}

.cx-logo img {
  height: 46px;
}

/* ===== NAV ===== */
.cx-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.cx-nav a,
.cx-drop-btn {
  text-decoration: none;
  color: #111;
  font-weight: 600;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 18px;
}

/* ===== DROPDOWN (DESKTOP) ===== */
.cx-dropdown {
  position: relative;
}

.cx-drop-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 180px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  display: none;
}

.cx-drop-menu a {
  display: block;
  padding: 10px 14px;
  color: #111;
}

.cx-drop-menu a:hover {
  background: #f4f4f4;
}

/* Desktop hover */
@media (min-width: 992px) {
  .cx-dropdown:hover .cx-drop-menu {
    display: block;
  }
}

/* ===== HAMBURGER ===== */
.cx-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
}

.cx-toggle span {
  width: 24px;
  height: 2px;
  background: #111;
}

/* ===== MOBILE ===== */
@media (max-width: 991px) {

  .cx-toggle {
    display: flex;
  }

  .cx-nav {
    position: fixed;
    top: 64px;
    left: 0;
    width: 100%;
    height: calc(100vh - 64px);
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
    gap: 18px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
  }

  .cx-nav.open {
    transform: translateX(0);
  }

  /* Mobile dropdown */
  .cx-drop-menu {
    position: static;
    box-shadow: none;
    background: #f5f5f5;
    border-radius: 8px;
    margin-top: 8px;
    display: none;
  }

  .cx-dropdown.open .cx-drop-menu {
    display: block;
  }
}
/* ================================
   DESKTOP DROPDOWN – FINAL FIX
================================ */
@media (min-width: 992px) {

  /* Parent must own hover */
  .cx-dropdown {
    position: relative;
  }

  /* Dropdown menu */
  .cx-drop-menu {
    position: absolute;
    top: 100%;              /* NO GAP */
    left: 0;
    min-width: 200px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
    display: none;
    padding: 8px 0;
    z-index: 2000;
  }

  /* Open dropdown on hover of parent */
  .cx-dropdown:hover .cx-drop-menu {
    display: block;
  }
}
/* ================================
   CONECSY NAVBAR THEME
================================ */

/* Header background */
.cx-header {
  background: #ffffff;
  border-bottom: 1px solid #f0e6db;
}

/* Main nav links */
.cx-nav a,
.cx-drop-btn {
  color: #3a2005;
}

/* Hover state */
.cx-nav a:hover,
.cx-drop-btn:hover {
  color: #f18613;
}

/* Active underline (optional, subtle) */
.cx-nav a::after,
.cx-drop-btn::after {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  background: #f18613;
  transition: width 0.25s ease;
}

.cx-nav a:hover::after,
.cx-drop-btn:hover::after {
  width: 100%;
}

/* ================================
   DROPDOWN MENU (DESKTOP)
================================ */
.cx-drop-menu {
  background: #fffaf5;
  border: 1px solid #f0e6db;
}

.cx-drop-menu a {
  color: #3a2005;
  font-weight: 500;
}

.cx-drop-menu a:hover {
  background: #fdf1e6;
  color: #f18613;
}

/* ================================
   MOBILE MENU
================================ */
@media (max-width: 991px) {

  .cx-nav {
    background: #ffffff;
  }

  .cx-nav a,
  .cx-drop-btn {
    color: #3a2005;
  }

  .cx-drop-menu {
    background: #fffaf5;
    border-left: 3px solid #f18613;
  }

  .cx-drop-menu a {
    color: #3a2005;
  }

  .cx-drop-menu a:hover {
    background: #fdf1e6;
    color: #f18613;
  }
}

/* ================================
   HAMBURGER (CONECSY STYLE)
================================ */
.cx-toggle span {
  background: #3a2005;
}


/* end header  */


/*  start service section */


    /* SWIPER BASE */
.swiper {
  width: 100%;
  padding-bottom: 50px;
}

/* CARD DESIGN */
.service-card {
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(18px);
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 12px 35px rgba(0,0,0,0.18);
  transition: transform .35s ease, box-shadow .35s ease;
  animation: fadeUp 0.8s ease forwards;
  opacity: 0;
}

/* Fade-in animation */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(35px) scale(.95); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* Hover Effect */
.service-card:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: 0 20px 45px rgba(0,0,0,0.25);
}

/* ICON BOX */
.service-icon {
  height: 85px;
  width: 85px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px auto;
  font-size: 2.3rem;
  color: white;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* INDIVIDUAL COLORS */
.sms-icon { background: linear-gradient(135deg,#0099ff,#f18613 ); }
.voice-icon { background: linear-gradient(135deg,#ff7a00,#ffb300); }
.rcs-icon { background: linear-gradient(135deg,#6a11cb,#2575fc); }
.whatsapp-icon { background: linear-gradient(135deg,#25D366,#128C7E); }
.email-icon { background: linear-gradient(135deg,#ff416c,#ff4b2b); }

/* ICON */
.service-icon i {
  font-size: 2.2rem;
}

    .services-section{
       padding:60px 0;
      }
    .section-title{ 
      font-size:1.6rem; 
      font-weight:800; 
      margin-bottom:6px; 
    }
    .section-subtitle{ 
      color:black;
      margin-bottom:28px; }

    .service-card{
      width:100%;
      max-width:420px;
      margin:0 auto;
      padding:30px;
      border-radius:var(--card-radius);
      background:var(--glass-bg);
      backdrop-filter: blur(10px);
      box-shadow: 0 10px 30px rgba(4,25,60,0.05);
       /* outline: 2px solid #f18613  ; */
      text-align:center;
      transition: transform .32s ease, box-shadow .32s ease;
    }
    .service-card:hover{ 
      transform: translateY(-10px); 
      box-shadow:0 20px 45px rgba(4,25,60,0.09);
     }
    .service-icon {
      display:inline-flex; 
      align-items:center; 
      justify-content:center;
      width:84px; 
      height:84px; 
      border-radius:18px; 
      font-size:2rem; 
      margin-bottom:18px;
      background: linear-gradient(180deg, rgba(255,255,255,0.9), rgba(255,255,255,0.6));
      /* border: 1px solid #3a2005 ; */
      box-shadow: 0 6px 18px rgba(3,102,214,0.06);
      color:var(--accent);
    }
    .service-card h3{ 
      margin-bottom:8px; 
      font-weight:700; 
    }
    .service-card p{
       color:var(--muted); 
       font-size:0.98rem; 
      }

    /* Bootstrap carousel item center */
    .carousel-inner { 
      display:flex; 
      align-items:center; 
      justify-content:center; 
      gap:18px; 
    }
    .carousel-item { 
      display:flex; 
      align-items:center; 
      justify-content:center; 
      flex:0 0 auto; 
      width:100%; 
    }

    /* Controls (bigger) */
    .carousel-control-prev, .carousel-control-next {
       width:48px; 
       height:48px; 
       border-radius:12px; 
       background:rgba(11,18,32,0.06); 
       top:50%; 
       transform:translateY(-50%);
       }

/* extra  */

/* =====================================
   SWIPER ACTIVE CARD SPOTLIGHT
===================================== */
.swiper-slide {
  transition: transform 0.5s ease, opacity 0.5s ease;
}

.swiper-slide:not(.swiper-slide-active) {
  transform: scale(0.92);
  opacity: 0.55;
}

.swiper-slide-active {
  transform: scale(1.06);
  opacity: 1;
}

.swiper-slide-active .service-card {
  box-shadow: 0 30px 70px rgba(241,134,19,0.35);
  /* border: 2px solid  */
}
/* =====================================
   GRADIENT RING EFFECT
===================================== */
.service-card {
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: -2px;
  background:linear-gradient(90deg, #6e4b28, #f18613);
  opacity: 0;
  transition: opacity 0.35s ease;
  border-radius: inherit;
  z-index: -1;
}

.swiper-slide-active .service-card::before,
.service-card:hover::before {
  opacity: 1;
}
/* =====================================
   ICON MICRO INTERACTIONS
===================================== */
.service-icon {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.service-card:hover .service-icon {
  transform: rotate(-6deg) scale(1.15);
  box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}
.services-section {
  background:
    radial-gradient(circle at top center, rgba(241,134,19,0.08), transparent 60%),
    linear-gradient(180deg, #fffaf3, #ffffff);
  padding: 90px 0;
}
/* =====================================
   SERVICE DESCRIPTION PANEL
===================================== */
.service-description-wrap {
  max-width: 640px;
  margin: 35px auto 0;
  text-align: center;
  padding: 22px 28px;
  border-radius: 18px;

  background: rgba(255,255,255,0.65);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 45px rgba(0,0,0,0.08);

  animation: fadeDesc 0.6s ease;
}

.service-description-wrap h3 {
  font-weight: 800;
  font-size: 1.6rem;
  margin-bottom: 8px;
  color: #3a2005;
}

.service-description-wrap p {
  font-size: 1.05rem;
  color: #6b4a20;
  line-height: 1.6;
}

@keyframes fadeDesc {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
/* =====================================
   SERVICE CTA BUTTON
===================================== */
.service-cta-btn {
  display: inline-block;
  margin-top: 18px;
  padding: 12px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;

  color: #ffffff;
  background: linear-gradient(90deg, #3a2005, #f18613);
  box-shadow: 0 10px 28px rgba(241,134,19,0.35);

  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(241,134,19,0.45);
}
/* SERVICES SECTION */
.services-section {
  padding: 90px 0;
  background: radial-gradient(circle at top, rgba(241,134,19,0.08), transparent 60%);
}

/* SERVICE CARD */
.service-card {
  background: #fff;
  border-radius: 22px;
  padding: 36px;
  text-align: center;
  box-shadow: 0 12px 35px rgba(0,0,0,0.12);
  transition: all .4s ease;
}

.swiper-slide:not(.swiper-slide-active) {
  opacity: 0.55;
  transform: scale(0.92);
}

.swiper-slide-active {
  transform: scale(1.06);
}

/* ICON */
.service-icon {
  width: 90px;
  height: 90px;
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 2.4rem;
  color: #fff;
}

.sms-icon {
   background: linear-gradient(135deg,#0099ff,#3290e3); 
  }
.voice-icon {
   background: linear-gradient(135deg,#42aecf,#05676e); 
  }
.rcs-icon { 
  background: linear-gradient(135deg,#6a11cb,#2575fc);
 }
.whatsapp-icon { 
  background: linear-gradient(135deg,#25D366,#128C7E); 
}
.email-icon { 
  background: linear-gradient(135deg,#bddd8d,#5c7204); 
}

/* =====================================
   ACTIVE SERVICE ICON (SWIPER STATE)
===================================== */

.swiper-slide-active .service-icon {
  background: linear-gradient(135deg,#ff7a00,#ffb300) !important;
  box-shadow: 0 14px 35px rgba(255, 167, 38, 0.45);
  transform: scale(1.15);
}
.service-card:hover .service-icon {
  transform: scale(1.1) rotate(-4deg);
}

/* PROGRESS BAR */
.service-progress {
  width: 180px;
  height: 4px;
  background: rgba(58,32,5,0.2);
  border-radius: 8px;
  margin: 28px auto;
  overflow: hidden;
}

.service-progress span {
  height: 100%;
  width: 0%;
  display: block;
  background: linear-gradient(90deg,#f18613,#ffb86a);
}

/* DETAILS */
.service-details {
  max-width: 680px;
  margin: 40px auto 0;
  text-align: center;
}

#serviceTitle {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 10px;
}

#serviceDesc {
  font-size: 1.05rem;
  color: #6b4a20;
}

#serviceProof {
  margin-top: 10px;
  font-weight: 600;
  color: #3a2005;
}

/* CTA */
.service-cta-btn {
  display: inline-block;
  margin-top: 18px;
  padding: 12px 26px;
  border-radius: 14px;
  background: linear-gradient(90deg,#3a2005,#f18613);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  transition: transform .3s ease;
}

.service-cta-btn:hover {
  transform: translateY(-3px);
}


/* End service section */

/* START CHOOSE INDUSTRIES */
 .spiral-section {
  padding: 70px 0;
  background: linear-gradient(180deg, #fffdf8 0%, #fff8ef 100%);
}

.spiral-title {
  text-align: center;
  margin-bottom: 40px;
}

.spiral-title h2 {
  font-size: 2rem;
  font-weight: 800;
  color: #3a2005;
}

.spiral-title p {
  color: #7a5a39;
}

.spiral-wrapper {
  display: flex;
  gap: 40px;
  justify-content: center;
  align-items: flex-start;
}

/* Spiral Navigation */
.spiral-nav {
  display: flex;
  flex-direction: column;
  gap: 25px;
  position: relative;
}

.spiral-nav::before {
  content: "";
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg,#f18613,#ffb86a);
  border-radius: 6px;
  position: absolute;
  left: 10px;
  top: 0;
  opacity: 0.3;
}

.spiral-item {
  padding: 12px 18px;
  padding-left: 40px;
  font-weight: 600;
  color: #3a2005;
  cursor: pointer;
  position: relative;
  transition: 0.3s ease;
}

.spiral-item i {
  margin-right: 6px;
}

.spiral-item.active {
  color: #f18613;
  transform: translateX(10px);
}

.spiral-item::after {
  content: "";
  width: 14px;
  height: 14px;
  background: #f18613;
  border-radius: 50%;
  opacity: 0.8;
  position: absolute;
  left: 4px;
  top: 50%;
  transform: translateY(-50%);
}

/* Content Panel */
.spiral-content {
  flex: 1;
  max-width: 550px;
}

.content-card {
  display: none;
  background: #ffffff;
  padding: 28px;
  border-radius: 18px;
  border: 1px solid rgba(58,32,5,0.1);
  box-shadow: 0 10px 30px rgba(58,32,5,0.08);
  animation: fadeSlide 0.5s ease forwards;
}

.content-card.active {
  display: block;
}

@keyframes fadeSlide {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.content-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #f18613;
  margin-bottom: 10px;
}

.content-card p {
  color: #6b4a20;
  margin-bottom: 12px;
}

.content-card ul li {
  list-style: none;
  margin: 8px 0;
  color: #3a2005;
  font-weight: 500;
  padding-left: 10px;
}
@media (max-width: 768px) {

  #industry-spiral .spiral-wrapper {
    display: block;
  }

  #industry-spiral .spiral-nav {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 12px;
    margin-bottom: 16px;
    -webkit-overflow-scrolling: touch;
  }

  #industry-spiral .spiral-item {
    flex: 0 0 auto;
    white-space: nowrap;
  }

  #industry-spiral .spiral-content {
    width: 100%;
  }

  #industry-spiral .content-card {
    width: 100%;
  }

}

    

/* END CHOOSE INDUSTRIES */




 
/* DARK MODE */
body.dark {
  background: #0d0f17;
  color: #e9e9e9;
  transition: 0.4s ease;
}

.dark header {
  background: rgba(20, 20, 30, 0.85);
  border-bottom: 1px solid #222;
}

.dark .menu-item { color: #e9e9e9 !important; }

.dark .hero-title {
  -webkit-text-fill-color: #f18613 ;
}

.dark .service-card,
.dark .price-card {
  background: #151823 !important;
  color: white !important;
  box-shadow: 0 0 20px rgba(0,0,0,0.4) !important;
}

.dark pre {
  background: #000 !important;
  color: #f18613  !important;
}

.dark #contact {
  color: white;
}




    :root{
      --primary:#3a2005    ;
      --accent:#f18613;
      --muted:#6b7280;
      --glass-bg: rgba(255,255,255,0.32);
      --card-radius:18px;
      --max-width:1200px;
      --container-padding: 1.25rem;
      --header-height:72px;
    }

    html,body { height:100%; }
    body{
      margin:0;
      font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
      color:#3a2005;
      background: linear-gradient(180deg, #f7fbff 0%, #ffffff 60%);
      -webkit-font-smoothing:antialiased;
      -moz-osx-font-smoothing:grayscale;
      scroll-behavior:smooth;
    }

    /* ---------------- Header (UNCHANGED markup - styles only) ---------------- */
    .header{
      position: fixed;
      top:0;
      z-index:1000;
      background:white;
      backdrop-filter: blur(6px);
      display:flex;
      align-items:center;
      justify-content:space-between;
      padding:12px 20px;
      box-shadow: 0 6px 18px rgba(9,30,66,0.06);
      height: var(--header-height);
    }
    .logo-container { 
      display:flex;
       align-items:center; 
       gap:.6rem; 
       text-decoration:none;
       }
    .logo-container img.conecsy {
       height:60px; 
      }
    .main-menu {
       display:flex; 
       gap:18px; 
       align-items:center;
       }
    .menu-item { 
        color:#0b1220;
        text-decoration:none;
        font-weight:600;
        padding:8px 10px;
        border-radius:8px;
         }
    .menu-item.active {
       color:var(--primary); 
      }
    .menu-toggle {
       display:none;
        cursor:pointer;
        width:36px;
        height:28px; 
        align-items:center; 
        justify-content:center; 
        flex-direction:column; 
        gap:4px; 
      }
    .menu-toggle span{
       display:block; 
       height:3px; 
       width:100%; 
       background:#0b1220; 
       border-radius:2px; 
       transition:all .25s ease; 
      }

    @media (max-width: 992px){
      .main-menu { 
        display:none; 
        position:fixed; 
        right:14px; 
        top:72px; 
        background:#fff; 
        padding:14px; 
        border-radius:12px; 
        box-shadow:0 8px 40px rgba(2,6,23,.08); 
        flex-direction:column; 
        gap:8px; 
        min-width:200px; 
      }
      .menu-toggle {
         display:flex; 
        }
      .main-menu.show { 
        display:flex;
       }
    }

    /* ---------------- HERO ---------------- */
    .hero-section{
      padding:80px 0 40px;
    }
    .hero-inner{
      max-width:var(--max-width);
      margin:0 auto;
      padding:0 var(--container-padding);
    }
    .hero-row{ 
      align-items:center; 
      gap:30px; 
      display:flex; 
      flex-wrap:wrap; 
    }
    .hero-left{ 
      flex:1 1 460px; 
      min-width:260px; 
    }
    .hero-right{ 
      flex:1 1 420px; 
      display:flex; 
      align-items:center; 
      justify-content:center; 
      min-width:260px;
     }

    .hero-title{
      font-size: clamp(1.8rem, 3.6vw, 3.0rem);
      font-weight:800;
      line-height:1.05;
      margin-bottom:16px;
    }
    .hero-subtext{
      color:var(--muted);
      font-size:1.05rem;
      margin-bottom:20px;
    }
    .gradient-text{
      background: linear-gradient(90deg, var(--primary), var(--accent));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .hero-cta{
       display:flex; 
       gap:12px; 
       align-items:center; 
       flex-wrap:wrap; 
      }
    .btn-primary-lg{
      background: linear-gradient(90deg,var(--primary),var(--accent));
      color:#fff;
      padding:12px 20px; 
      border-radius:12px;
      font-weight:700;
      border:none;
      box-shadow: 0 10px 30px rgba(3,102,214,0.12);
    }
    .btn-outline-alt{
      background:transparent; 
      border:1px solid rgba(11,18,32,0.06); 
      padding:11px 18px; 
      border-radius:12px; 
      color:#0b1220;
    }

    /* ================================
   PROFESSIONAL HERO IMAGE STAGE
================================ */

    .hero-visual {
      width: 100%;
      max-width: 540px;
      height: 520px;                 /* FIXED STAGE HEIGHT */
      background: linear-gradient(
        145deg,
        #fff7ef,
        #ffffff
      );
      border-radius: 24px;
      padding: 28px;

      display: flex;
      align-items: center;
      justify-content: center;

      box-shadow:
        0 30px 80px rgba(58,32,5,0.12),
        inset 0 0 0 1px rgba(241,134,19,0.08);
    }

    /* Image normalization */
    .hero-visual img {
      max-width: 100%;
      max-height: 100%;
      object-fit: contain;
      border-radius: 16px;

      filter: drop-shadow(0 18px 35px rgba(0,0,0,0.18));
      transition: opacity 0.45s ease;
    }

        /* ================================
      HERO TEXT SYNC HIGHLIGHT
    ================================ */

    .service-track span {
      position: relative;
      transition: color 0.35s ease;
    }

    /* Active service highlight */
    .service-track span.active {
      color: var(--accent);
      font-weight: 800;
    }

    /* Subtle underline glow */
    .service-track span.active::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: 1px;
      width: 100%;
      height: 3px;
      background: linear-gradient(90deg, var(--accent), transparent);
      border-radius: 4px;
      opacity: 0.8;
    }

    /* Reduce motion for accessibility */
    @media (prefers-reduced-motion: reduce) {
      .service-track span,
      .service-track span::after {
        transition: none;
      }
    }



    /* floating chips */
    .feature-chip{
      display:inline-flex; 
      align-items:center; 
      gap:10px; 
      padding:8px 12px; 
      border-radius:999px; 
      font-weight:600; 
      background:#fff;
      box-shadow: 0 6px 24px rgba(11,18,32,0.06);
      margin-right:8px; margin-top:8px;
    }

    /* ---------------- WHY  CHOOSE SECTION ---------------- */

  :root{
    --brown: #3a2005;
    --orange: #f18613;
    --muted: #7a6756;
    --glass: rgba(255,255,255,0.9);
  }

  /* Illustration */
  .ft-illustration{
    position:absolute;
    right:0;
    top:18%;
    width:340px;
    opacity:0.95;
    pointer-events:none;
    transform: translateY(-10%);
    filter: drop-shadow(0 24px 60px rgba(58,32,5,0.08));
    border-radius:12px;
  }
  @media (max-width:1100px){ .ft-illustration{ display:none; } }

  /* Timeline layout base */
  .timeline-wrap{
    position:relative;
    margin-top:34px;
    padding: 20px 6px 36px 6px;
  }

  /* central vertical line */
  .timeline-wrap::before{
    content:"";
    position:absolute;
    left:50%;
    top:0;
    transform:translateX(-50%);
    width:4px;
    height:100%;
    background: linear-gradient(180deg, rgba(241,134,19,0.18), rgba(58,32,5,0.06));
    border-radius:4px;
    box-shadow: 0 6px 20px rgba(58,32,5,0.03) inset;
  }

  /* timeline item */
  .timeline-item{
    position:relative;
    width:100%;
    display:flex;
    justify-content:flex-end;
    padding: 34px 8% 34px 8%;
    box-sizing:border-box;
  }

  /* reverse class flips side */
  .timeline-item.reverse{ justify-content:flex-start; }

  /* content box */
  .timeline-content{
    width:46%;
    background: linear-gradient(180deg, #ffffff, rgba(255,252,246,0.95));
    border-radius:14px;
    padding:22px 24px;
    box-shadow: 0 20px 50px rgba(58,32,5,0.06);
    border: 1px solid rgba(58,32,5,0.06);
    transform-origin: center;
    transition: transform .45s cubic-bezier(.2,.9,.25,1), box-shadow .35s ease;
    opacity:0;
    will-change: transform, opacity;
  }

  /* position content left or right from the central line */
  .timeline-item:not(.reverse) .timeline-content{ margin-right: 4%; text-align:left; }
  .timeline-item.reverse .timeline-content{ margin-left: 4%; text-align:left; }

  /* step dot on center line */
  .timeline-item::after{
    content:"";
    position:absolute;
    left:50%;
    transform:translateX(-50%);
    top:50%;
    width:18px;
    height:18px;
    border-radius:50%;
    background: #fff;
    border: 4px solid rgba(241,134,19,0.18);
    box-shadow: 0 6px 20px rgba(241,134,19,0.08);
    transition: transform .36s ease, box-shadow .36s ease, background .36s ease;
    z-index:3;
  }

  /* meta row */
  .meta{ display:flex; align-items:center; gap:12px; margin-bottom:6px; }
  .ft-step{
    display:inline-flex;
    width:44px;height:44px;border-radius:10px;
    align-items:center;justify-content:center;
    background: linear-gradient(135deg,var(--orange), #ffb86a);
    color:#fff;font-weight:800;
    box-shadow: 0 10px 28px rgba(241,134,19,0.16);
    font-size:1rem;
  }
  .ft-label{ color:var(--brown); font-weight:800; font-size:.98rem; }

  .timeline-content h3{
    margin:6px 0 8px 0;
    color:var(--brown);
    font-size:1.15rem;
    font-weight:800;
  }

  .timeline-content p{ color:var(--muted); line-height:1.55; margin:0 0 10px; }

  .ft-bullets{ margin:0;padding-left:16px; color:var(--brown); }
  .ft-bullets li{ margin:6px 0; font-weight:600; color:#4a3926; }

  /* reveal state (added by JS) */
  .timeline-content.revealed{
    opacity:1;
    transform: translateY(0) scale(1);
    box-shadow: 0 28px 80px rgba(58,32,5,0.10);
  }

  /* small transform before reveal for nicer motion */
  .timeline-content{ transform: translateY(18px) scale(.995); }

  /* highlight the center dot when its item visible */
  .timeline-item.visible::after{
    transform: translateX(-50%) scale(1.18);
    background: linear-gradient(135deg,var(--orange), #ffb86a);
    border-color: rgba(241,134,19,0.28);
    box-shadow: 0 18px 48px rgba(241,134,19,0.18);
  }

  /* hover micro interaction */
  .timeline-content:hover{ transform: translateY(-6px) scale(1.01); box-shadow: 0 32px 90px rgba(58,32,5,0.12); }

  /* responsive */
  @media (max-width: 980px){
    .timeline-item, .timeline-item.reverse{ justify-content:center; padding:18px 4%;}
    .timeline-content, .timeline-item .timeline-content{ width:96%; margin:0; text-align:left; }
    .timeline-wrap::before{ left:20px; transform:none; }
    .timeline-item::after{ left:20px; transform:translateY(-50%); }
  }

  @media (max-width:520px){
    .ft-illustration{ display:none; }
    .ft-step{ width:40px;height:40px;font-size:.95rem; }
    .timeline-content{ padding:18px; border-radius:12px; }
  }



     /* WHY CHOOSE SECTION end*/

      /* COUNTER  */
      
         :root { --brown:#3a2005; --orange:#f18613; }

    .cwrap{
      max-width:960px;
      margin:0 auto;
      display:flex;
      gap:22px;
      justify-content:space-between;
    }
    .stat{
      background:#ffffff;
      border-radius:14px;
      padding:28px 22px;
      text-align:center;
      box-shadow:0 12px 35px rgba(0,0,0,.06);
      flex:1;
      border:2px solid rgba(241,134,19,.15);
      transition:.3s ease;
    }
    .stat:hover{
      transform:translateY(-6px);
      box-shadow:0 18px 40px rgba(0,0,0,.12);
    }
    .icon-box{
      width:60px;
      height:60px;
      background:rgba(241,134,19,.12);
      color:var(--orange);
      border-radius:14px;
      display:flex;
      align-items:center;
      justify-content:center;
      font-size:28px;
      margin:0 auto 14px auto;
      box-shadow:0 6px 16px rgba(0,0,0,.08);
    }
    .num{
      font-size:36px;
      color:var(--orange);
      font-weight:800;
    }
    .lbl{
      color:var(--brown);
      font-weight:700;
      margin-top:6px;
      font-size:1.05rem;
    }

    @media(max-width:768px){
      .cwrap { flex-direction:column; }
    }
      /* COUNTER END */

    /* ---------------- CTA ---------------- */
    .cta-section{
       padding:48px 0; 
       background: linear-gradient(90deg, #3a2005 , #f18613 ); 
       color:#fff; 
       border-radius:14px; 
       margin:40px 0;
       }
    .cta-inner{ 
      max-width:900px; 
      margin:0 auto; 
      text-align:center; 
      padding:28px; }

      /* SCRATCH CARD START  */
      
      .scratch-section {
  padding: 80px 0;
}

.scratch-title {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.scratch-subtitle {
  color: #6c757d;
  margin-bottom: 30px;
}

.scratch-card {
  position: relative;
  width: 350px;
  height: 180px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.scratch-reveal {
  position: absolute;
  inset: 0;
  background: #fff4e0;
  color: #3a2005;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  text-align: center;
  z-index: 1;
  font-weight: 600;
}

#scratchCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  cursor: grab;
  z-index: 2;
}

.reset-btn {
  margin-top: 20px;
  padding: 10px 20px;
  background: #f18613;
  border: none;
  border-radius: 12px;
  color: white;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
}

.reset-btn:hover {
  background: #d6730f;
  transform: translateY(-3px);
}


      /* SCRATCH END */

      /* MESSAGE INTERACTION SIMULATOR SECTION */

        /* HEADING */
          .sim-heading {
            text-align: center;
            margin-bottom: 40px;
            padding: 0 20px;
          }
          .sim-heading h2 {
            font-size: 2rem;
            font-weight: 800;
            color: var(--brown);
            margin-bottom: 8px;
          }
          .sim-heading p {
            max-width: 700px;
            margin: 0 auto;
            color: #7a6550;
            font-size: 1.05rem;
            line-height: 1.6;
          }

    :root {
      --brown: #3a2005;
      --orange: #f18613;
    }

    .sim-section {
      padding: 60px 0;
      background: linear-gradient(180deg, #fff8ef, #fff5ea);
    }

    .sim-wrap {
      max-width: 1000px;
      margin: 0 auto;
      display: flex;
      gap: 30px;
      align-items: flex-start;
      flex-wrap: wrap;
    }

    /* PHONE BOX */
    .phone {
      width: 320px;
      background: #fff;
      border-radius: 22px;
      padding: 18px;
      box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
      border: 4px solid rgba(241, 134, 19, 0.06);
    }

    .phone-title {
      font-weight: 800;
      color: var(--brown);
      margin-bottom: 8px;
      font-size: 1.1rem;
    }

    .ph-screen {
      height: 520px;
      overflow-y: auto;
      border-radius: 14px;
      background: linear-gradient(180deg, #ffffff, #fff8f0);
      padding: 12px;
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    /* BUBBLES */
    .bubble {
      max-width: 78%;
      padding: 12px 14px;
      border-radius: 14px;
      font-weight: 600;
      font-size: 0.95rem;
    }

    .b-left {
      background: #fff;
      border: 1px solid rgba(58, 32, 5, 0.08);
      align-self: flex-start;
      color: var(--brown);
    }

    .b-right {
      background: linear-gradient(90deg, var(--orange), #ffb86a);
      color: #fff;
      align-self: flex-end;
    }

    .meta {
      font-size: 12px;
      opacity: 0.8;
      margin-top: 4px;
    }

    /* CONTROLS */
    .controls {
      flex: 1;
      padding-left: 10px;
      min-width: 240px;
    }

    .control-btn {
      display: block;
      width: 80%;
      margin: 50px 0;
      padding: 12px 16px;
      border-radius: 12px;
      background: var(--orange);
      color: #fff;
      border: none;
      font-weight: 700;
      cursor: pointer;
      box-shadow: 0 8px 20px rgba(241, 134, 19, 0.18);
      font-size: 1rem;
      transition: 0.2s ease;
    }
    .control-btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 12px 25px rgba(241, 134, 19, 0.25);
    }

    .log {
      margin-top: 12px;
      font-size: 20px;
      color: #6d5b49;
    }

    /* POP-IN ANIMATION */
    .pulse {
      animation: popin 0.5s ease;
    }
    @keyframes popin {
      from { opacity: 0; transform: translateY(14px); }
      to   { opacity: 1; transform: translateY(0);    }
    }

    /* RESPONSIVE */
    @media (max-width: 768px) {
      .sim-wrap {
        flex-direction: column;
        align-items: center;
        text-align: center;
      }
      .controls {
        padding-left: 0;
        width: 100%;
        max-width: 400px;
      }
      .control-btn {
        margin: 10px auto;
      }
    }


      /*  end MESSAGE  INTERACTION SIMULATOR SECTION */

      /* START CLIENT TESTIMONIALS */
  
            .testi-card{
              max-width:700px;
              margin:0 auto;
              background:#ffffff;
              padding:35px;
              border-radius:18px;
              box-shadow:0 15px 40px rgba(0,0,0,.08);
              border:2px solid rgba(241,134,19,.12);
              text-align:center;
              animation:fadeSlide .8s ease;
            }
            @keyframes fadeSlide{
              from{opacity:0;transform:translateY(20px);}
              to{opacity:1;transform:translateY(0);}
            }
            .testi-quote{
              font-size:2.3rem;
              color:#f18613;
              margin-bottom:6px;
            }
            .testi-text{
              font-size:1.1rem;
              color:#3a2005;
              line-height:1.6;
              margin-bottom:16px;
            }
            .testi-user{
              font-weight:700;
              color:#f18613;
              font-size:1.1rem;
            }
            .testi-role{
              font-size:.95rem;
              color:#7a6550;
            }
 
      /* END CLIENT TESTIMONIALS */
     
      /* FAQ */
        
          .faq-box{
            max-width:820px;
            margin:0 auto;
          }
          .faq-item{
            background:#fff;
            border-radius:14px;
            margin-bottom:16px;
            padding:18px 22px;
            box-shadow:0 10px 25px rgba(0,0,0,.06);
            border:2px solid rgba(241,134,19,.12);
            cursor:pointer;
            transition:.3s;
          }
          .faq-item:hover{
            transform:translateY(-3px);
          }
          .faq-q{
            color:#3a2005;
            font-weight:700;
            display:flex;
            justify-content:space-between;
            align-items:center;
            font-size:1.05rem;
          }
          .faq-a{
            color:#7a6550;
            max-height:0;
            overflow:hidden;
            line-height:1.6;
            transition:max-height .4s ease;
            margin-top:8px;
          }
          .faq-item.active .faq-a{
            max-height:200px;
          }
          .faq-item i{
            color:#f18613;
            font-size:22px;
            transition:.3s;
          }
          .faq-item.active i{
            transform:rotate(90deg);
          }
 
      /* FAQ */

    /* ---------------- FOOTER ---------------- */
    footer{
       padding:32px 0; 
       color:#475569; 
       background:transparent; 
      }

    /* Responsiveness */
    @media (max-width: 768px){
      .hero-row{ flex-direction:column-reverse; }
      .carousel-inner{ flex-direction:column; }
      .carousel-control-prev, .carousel-control-next { display:none; }
    }

     /* footer  */
    /* Premium Footer */
/* Premium Footer */
/* ------------------ PREMIUM FOOTER ------------------ */

.cx-footer {
  background: #0a0d14;
  padding: 80px 0 40px;
  color: #d7d8e2;
  position: relative;
  overflow: hidden;
}

/* glowing top line */
.cx-glow-line {
  height: 2px;
  width: 100%;
  background: linear-gradient(90deg, #f18613, #ffb469, #f18613);
  box-shadow: 0 0 18px rgba(241,134,19,0.7);
  margin-bottom: 30px;
}

/* footer brand */
.cx-footer-brand {
  color: #fff;
  font-weight: 800;
  font-size: 34px;
  margin-bottom: 12px;
}

.cx-footer-desc {
  opacity: .8;
  line-height: 1.6;
}

/* social icons */
.cx-footer-social a {
  font-size: 22px;
  margin-right: 14px;
  color: #fff;
  transition: 0.3s ease;
  display: inline-block;
}

.cx-footer-social a:hover {
  color: #f18613;
  transform: translateY(-4px) scale(1.1);
  text-shadow: 0 0 12px rgba(241,134,19,0.8);
}

/* links */
.cx-footer-title {
  color: #fff;
  font-weight: 700;
  margin-bottom: 12px;
}

.cx-footer-links {
  list-style: none;
  padding: 0;
}

.cx-footer-links li {
  margin-bottom: 10px;
}

.cx-footer-links a {
  color: #d7d8e2;
  text-decoration: none;
  transition: .3s;
  padding-left: 0;
}

.cx-footer-links a:hover {
  padding-left: 8px;
  color: #f18613;
  text-shadow: 0 0 10px rgba(241,134,19,0.6);
}

/* Subscribe box */
.cx-subscribe-box {
  display: flex;
  gap: 8px;
  background: rgba(255,255,255,0.05);
  padding: 10px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  transition: .3s ease;
}

.cx-subscribe-box:hover {
  border-color: #f18613;
  box-shadow: 0 0 18px rgba(241,134,19,0.4);
}

.cx-subscribe-box input {
  background: transparent;
  border: none;
  color: #fff;
  flex: 1;
  outline: none;
}

.cx-subscribe-box button {
  background: #f18613;
  border: none;
  color: #fff;
  font-size: 19px;
  padding: 8px 14px;
  border-radius: 10px;
  cursor: pointer;
  transition: .3s ease;
}

.cx-subscribe-box button:hover {
  transform: scale(1.08);
  box-shadow: 0 0 16px rgba(241,134,19,0.7);
}

.cx-msg {
  height: 20px;
  margin-top: 10px;
}

/* footer bottom */
.cx-footer-bottom {
  text-align: center;
  opacity: .6;
  margin-top: 50px;
  font-size: 14px;
}

/* fade animation */
.cx-fade-up {
  opacity: 0;
  transform: translateY(25px);
  animation: cxFadeUp .8s ease forwards;
}

@keyframes cxFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* footer end */

/* FIX: Center carousel items */
.carousel-item {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  text-align: center;
  min-height: 380px;
}

/* Card container fix */
.service-card-container {
  display: flex;
  justify-content: center;
  width: 100%;
}

/* Fix card alignment */
.service-card {
  width: 360px;
  max-width: 90%;
  background: #fff;
  padding: 35px;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  text-align: center;

  opacity: 0;
  transform: translateY(40px);
  transition: all .8s ease;
}

.service-card.active-animate {
  opacity: 1;
  transform: translateY(0);
}

/* Ensure nav arrows don't push content */
.carousel-control-prev,
.carousel-control-next {
  width: 6%;
}

/* ===============================
   DROPDOWN HARD FIX
================================ */

.navbar,
.nav-container,
.header {
  overflow: visible !important;
}

/* smspage  start  */

 /* hero section start  */
   /* ===============================
   SMS HERO SECTION
================================ */

.sms-hero {
  padding: 120px 0 80px;
  background:
    radial-gradient(circle at top left, rgba(241,134,19,0.15), transparent 55%),
    linear-gradient(180deg, #fffdf8, #ffffff);
}

.sms-hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}

/* LEFT CONTENT */
.sms-hero-content {
  flex: 1 1 520px;
}

.sms-badge {
  display: inline-block;
  background: rgba(241,134,19,0.12);
  color: #f18613;
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 700;
  margin-bottom: 16px;
}

.sms-hero-content h1 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 900;
  line-height: 1.1;
  color: #3a2005;
  margin-bottom: 16px;
}

.sms-subtext {
  font-size: 1.05rem;
  color: #6b4a20;
  max-width: 520px;
  margin-bottom: 20px;
}

.sms-points {
  list-style: none;
  padding: 0;
  margin-bottom: 26px;
}

.sms-points li {
  font-weight: 600;
  color: #3a2005;
  margin: 8px 0;
}

/* CTA */
.sms-hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* RIGHT VISUAL */
.sms-hero-visual {
  flex: 1 1 420px;
  display: flex;
  justify-content: center;
}

/* PHONE MOCKUP */
.phone-mockup {
  width: 320px;
  background: #ffffff;
  border-radius: 26px;
  box-shadow: 0 30px 80px rgba(58,32,5,0.18);
  border: 4px solid rgba(241,134,19,0.15);
  overflow: hidden;
  animation: floatPhone 6s ease-in-out infinite;
}

@keyframes floatPhone {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.phone-header {
  background: linear-gradient(90deg,#f18613,#ffb86a);
  color: #fff;
  text-align: center;
  padding: 12px;
  font-weight: 700;
}

.phone-screen {
  padding: 14px;
  background: linear-gradient(180deg,#fff,#fff7ec);
}

/* SMS BUBBLES */
.sms-bubble {
  max-width: 80%;
  padding: 12px 14px;
  border-radius: 14px;
  font-size: 0.95rem;
  margin-bottom: 10px;
  font-weight: 600;
}

.sms-bubble.left {
  background: #ffffff;
  border: 1px solid rgba(58,32,5,0.1);
  color: #3a2005;
}

.sms-bubble.right {
  background: linear-gradient(90deg,#f18613,#ffb86a);
  color: #fff;
  margin-left: auto;
}

.sms-bubble.highlight {
  box-shadow: 0 10px 30px rgba(241,134,19,0.35);
}

/* DELIVERY STATUS */
.sms-status {
  text-align: right;
  font-size: 0.85rem;
  font-weight: 700;
  color: #f18613;
  margin-top: 6px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .sms-hero-container {
    flex-direction: column;
    text-align: center;
  }

  .sms-hero-cta {
    justify-content: center;
  }

  .sms-hero-visual {
    margin-top: 30px;
  }
}
/* hero section end */

/* Promotional vs Transactional SMS  start */
 

.sms-types-section {
  padding: 100px 0;
  background: linear-gradient(180deg,#fffaf3,#ffffff);
}

/* ---------- Header ---------- */
.section-head {
  text-align: center;
  margin-bottom: 50px;
}

.section-head h2 {
  font-size: clamp(1.9rem, 3vw, 2.4rem);
  font-weight: 900;
}

.section-head p {
  color: #6b4a20;
  max-width: 620px;
  margin: 10px auto 0;
}

/* ---------- Tabs ---------- */
.sms-tabs {
  display: inline-flex;
  justify-content: center;
  gap: 10px;
  padding: 8px;
  margin: 0 auto 40px;
  background: rgba(255,255,255,0.6);
  border-radius: 999px;
  box-shadow: 0 12px 35px rgba(58,32,5,0.08);
}

.sms-tab {
  padding: 12px 26px;
  border-radius: 999px;
  border: none;
  background: transparent;
  font-weight: 800;
  cursor: pointer;
  color: #3a2005;
  transition: all .35s ease;
}

.sms-tab.active {
  background: linear-gradient(135deg,#f18613,#ffb86a);
  color: #fff;
  box-shadow: 0 8px 22px rgba(241,134,19,.45);
}

/* ---------- Panels ---------- */
.sms-panel {
  display: none;
  animation: fadeSlide .5s ease;
}

.sms-panel.active {
  display: block;
}

.sms-panel-card {
  background: #ffffff;
  border-radius: 26px;
  padding: 50px;
  box-shadow: 0 30px 80px rgba(58,32,5,0.12);
  border: 1px solid rgba(241,134,19,0.15);
}

@keyframes fadeSlide {
  from { opacity:0; transform:translateY(20px); }
  to { opacity:1; transform:translateY(0); }
}

/* ---------- Grid ---------- */
.sms-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 50px;
  align-items: center;
}

.sms-info h3 {
  font-size: 1.6rem;
  font-weight: 900;
  margin-bottom: 12px;
}

.sms-info p {
  color: #6b4a20;
  margin-bottom: 16px;
}

.sms-info ul {
  padding: 0;
  list-style: none;
}

.sms-info li {
  margin: 10px 0;
  font-weight: 700;
  color: #3a2005;
}

/* ---------- Phone Mockup ---------- */
.sms-phone {
  width: 280px;
  background: #ffffff;
  border-radius: 26px;
  box-shadow: 0 25px 60px rgba(0,0,0,.18);
  overflow: hidden;
  transform: translateY(0);
  transition: transform .45s ease;
}

.sms-panel-card:hover .sms-phone {
  transform: translateY(-10px);
}

.sms-header {
  background: linear-gradient(135deg,#f18613,#ffb86a);
  color: #fff;
  text-align: center;
  padding: 12px;
  font-weight: 800;
}

.sms-body {
  padding: 18px;
}

.sms-bubble {
  padding: 14px;
  border-radius: 16px;
  font-weight: 700;
  line-height: 1.4;
}

.sms-bubble.promo {
  background: #fff7ec;
  border: 2px dashed #f18613;
}

.sms-bubble.trans {
  background: linear-gradient(135deg,#f18613,#ffb86a);
  color: #fff;
}

.sms-label {
  font-size: .8rem;
  margin-top: 8px;
  opacity: .6;
}

/* ---------- Comparison ---------- */
/* ===============================
   ENHANCED COMPARISON
================================ */

/* ---------- Comparison (Scoped) ---------- */

.sms-compare {
  margin-top: 100px;
  text-align: center;
}

.sms-compare h3 {
  font-size: 1.7rem;
  font-weight: 900;
  margin-bottom: 40px;
}

/* Cards wrapper */
.sms-compare .compare-cards {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}

/* Card */
.sms-compare .compare-card {
  background: #ffffff;
  border-radius: 26px;
  padding: 40px 32px;
  box-shadow: 0 25px 70px rgba(0,0,0,0.1);
  border: 1px solid rgba(241,134,19,.15);
  text-align: left;
  position: relative;
  transition: transform .4s ease, box-shadow .4s ease;
}

.sms-compare .compare-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 35px 90px rgba(0,0,0,0.15);
}

/* Featured */
.sms-compare .compare-card.featured {
  background: linear-gradient(180deg,#fff6ea,#ffffff);
  border: 2px solid #f18613;
}

/* Badge */
.sms-compare .compare-card .badge {
  position: absolute;
  top: -14px;
  right: 20px;
  background: linear-gradient(135deg,#f18613,#ffb86a);
  color: #fff;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: .75rem;
  font-weight: 800;
}

/* Title */
.sms-compare .compare-card h4 {
  font-size: 1.4rem;
  font-weight: 900;
  margin-bottom: 24px;
}

/* List */
.sms-compare .compare-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sms-compare .compare-card li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px dashed rgba(0,0,0,0.08);
  font-weight: 700;
}

.sms-compare .compare-card li:last-child {
  border-bottom: none;
}

/* Labels & values */
.sms-compare .compare-card .label {
  color: #6b4a20;
}

.sms-compare .compare-card .value {
  font-weight: 900;
}

.sms-compare .compare-card .value.yes {
  color: #1b8f3a;
}

.sms-compare .compare-card .value.no {
  color: #c0392b;
}

/* Responsive */
@media (max-width: 768px) {
  .sms-compare .compare-cards {
    grid-template-columns: 1fr;
  }
}


.sms-compare h3 {
  font-size: 1.7rem;
  font-weight: 900;
  margin-bottom: 40px;
}

/* Cards wrapper */
.compare-cards {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}

/* Card */
.compare-card {
  background: #ffffff;
  border-radius: 26px;
  padding: 40px 32px;
  box-shadow: 0 25px 70px rgba(0,0,0,0.1);
  border: 1px solid rgba(241,134,19,.15);
  text-align: left;
  position: relative;
  transition: transform .4s ease, box-shadow .4s ease;
}

.compare-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 35px 90px rgba(0,0,0,0.15);
}

/* Featured (Transactional) */
.compare-card.featured {
  background: linear-gradient(180deg,#fff6ea,#ffffff);
  border: 2px solid #f18613;
}

/* Badge */
.compare-card .badge {
  position: absolute;
  top: -14px;
  right: 20px;
  background: linear-gradient(135deg,#f18613,#ffb86a);
  color: #fff;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: .75rem;
  font-weight: 800;
}

/* Title */
.compare-card h4 {
  font-size: 1.4rem;
  font-weight: 900;
  margin-bottom: 24px;
}

/* List */
.compare-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.compare-card li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px dashed rgba(0,0,0,0.08);
  font-weight: 700;
}

.compare-card li:last-child {
  border-bottom: none;
}

/* Labels & values */
.compare-card .label {
  color: #6b4a20;
}

.compare-card .value {
  font-weight: 900;
}

.compare-card .value.yes {
  color: #1b8f3a;
}

.compare-card .value.no {
  color: #c0392b;
}

/* Responsive */
@media(max-width: 768px){
  .compare-cards {
    grid-template-columns: 1fr;
  }
}


/* ---------- DLT Box ---------- */
.dlt-box {
  margin-top: 90px;
  background: linear-gradient(135deg,#fff2e0,#fff);
  padding: 40px;
  border-radius: 26px;
  box-shadow: 0 20px 60px rgba(241,134,19,.15);
}

.dlt-box h3 {
  font-size: 1.5rem;
  font-weight: 900;
  margin-bottom: 12px;
}

.dlt-box ul {
  list-style: none;
  padding: 0;
}

.dlt-box li {
  margin: 10px 0;
  font-weight: 700;
}

/* ---------- Responsive ---------- */
@media(max-width: 900px){
  .sms-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .sms-phone {
    margin: 0 auto;
  }
}

@media(max-width: 600px){
  .sms-panel-card {
    padding: 30px 20px;
  }
}

/* Promotional vs Transactional SMS  end */

    /* PRICING CARDS :start */
     .sms-pricing { padding: 90px 0; background:#fffef9; }
.pricing-grid {
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:28px;
  margin-top:40px;
}
.price-card {
  background:#fff;
  padding:32px;
  border-radius:18px;
  box-shadow:0 14px 40px rgba(0,0,0,.08);
  text-align:center;
}
.price-card.featured {
  border:2px solid #f18613;
  transform:scale(1.05);
}
.price {
  font-size:2.2rem;
  font-weight:800;
  color:#f18613;
  margin:16px 0;
}
.price span { font-size:.9rem; }

    /* PRICING CARDS end */

    /* OTP LIVE SIMULATION :start */


        .otp-sim {
          padding: 80px 20px;
          background: linear-gradient(180deg, #fff8ef, #ffffff);
        }

        .otp-wrap {
          display: flex;
          gap: 60px;
          align-items: center;
          flex-wrap: wrap;
        }

        .otp-left {
          flex: 1;
          min-width: 280px;
        }

        .otp-desc {
          color: #6b4a20;
          margin-bottom: 18px;
        }

        .otp-left input {
          width: 100%;
          padding: 12px 14px;
          border-radius: 12px;
          border: 1px solid rgba(58,32,5,0.2);
          margin-bottom: 14px;
          font-size: 1rem;
        }

        .otp-api {
          background: #0d0f17;
          color: #f18613;
          border-radius: 14px;
          padding: 14px;
          margin-top: 20px;
          box-shadow: 0 10px 30px rgba(0,0,0,0.25);
        }

        .api-title {
          font-size: 0.9rem;
          color: #ffffff;
          margin-bottom: 6px;
          font-weight: 700;
        }

        .otp-api pre {
          font-size: 0.85rem;
          margin: 0;
          color: #f18613;
        }

        .otp-status {
          margin-top: 12px;
          font-weight: 700;
          color: #3a2005;
        }

        /* RIGHT */
        .otp-phone {
          flex: 1;
          min-width: 300px;
          text-align: center;
        }

        .otp-flow {
          display: flex;
          justify-content: center;
          gap: 12px;
          margin-bottom: 16px;
        }

        .otp-flow span {
          padding: 6px 14px;
          border-radius: 999px;
          font-size: 0.85rem;
          font-weight: 700;
          background: rgba(58,32,5,0.08);
          color: #3a2005;
          opacity: 0.4;
          transition: all 0.4s ease;
        }

        .otp-flow span.active {
          background: linear-gradient(135deg,#3a2005,#f18613);
          color: #fff;
          opacity: 1;
        }

        /* PHONE */
        .otp-device {
          width: 280px;
          margin: 0 auto;
          border-radius: 24px;
          background: #ffffff;
          box-shadow: 0 20px 50px rgba(0,0,0,0.18);
          overflow: hidden;
        }

        .otp-header {
          padding: 10px;
          background: #f5f5f5;
          font-weight: 700;
        }

        .otp-screen {
          padding: 18px;
          min-height: 160px;
        }

        .otp-msg {
          padding: 12px 14px;
          border-radius: 14px;
          background: linear-gradient(135deg,#3a2005,#f18613);
          color: #fff;
          font-weight: 700;
          opacity: 0;
          transform: translateY(20px);
          transition: all 0.5s ease;
        }

        .otp-msg.show {
          opacity: 1;
          transform: translateY(0);
        }

        .otp-msg.waiting {
          background: #eaeaea;
          color: #555;
          opacity: 1;
          transform: none;
        }

        /* Responsive */
        @media (max-width: 768px) {
          .otp-wrap {
            flex-direction: column;
            text-align: center;
          }
        }
              /* ===== OTP Simulation – Mobile Fix ===== */
        @media (max-width: 768px) {

          .otp-wrap {
            display: block;
          }

          .otp-left {
            margin-bottom: 24px;
          }

          .otp-phone {
            width: 100%;
          }

        }


    /* OTP LIVE SIMULATION end */

    /* DLT ONBOARDING STEPS start */
     .dlt-steps { padding:80px 0; background:#fff; }
.steps {
  display:flex;
  justify-content:center;
  gap:20px;
  flex-wrap:wrap;
  margin:40px 0;
}
.step {
  padding:18px 26px;
  background:#fff8ef;
  border-radius:14px;
  font-weight:700;
  box-shadow:0 10px 25px rgba(0,0,0,.08);
}
    /* DLT ONBOARDING STEPS end  */

    /* DEVELOPER API :start */
     .sms-api { 
      padding:90px 0;
       background:#0b0f19; 
       color:#fff;
       }

      .sms-api pre {
        background:#000;
        padding:20px;
        border-radius:14px;
        margin-top:20px;
        color:#f18613;
      }
      select {
        word-wrap: normal;
        padding: 5px;
        border-radius: 8px;
        
       }

    /* DEVELOPER API end  */

    /* Analytics Dashboard start  */
     /* ===============================
   SMS ANALYTICS DASHBOARD
================================ */

.sms-analytics {
  padding: 90px 0;
  background: linear-gradient(180deg,#fffdf8,#ffffff);
}

.analytics-header {
  text-align: center;
  margin-bottom: 50px;
}

.analytics-header h2 {
  font-size: 2rem;
  font-weight: 800;
}

.analytics-header p {
  color: #6b4a20;
}

/* STATS */
.analytics-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(200px,1fr));
  gap: 24px;
  margin-bottom: 40px;
}

.stat-card {
  background: #fff;
  padding: 26px;
  border-radius: 18px;
  box-shadow: 0 12px 35px rgba(0,0,0,0.08);
  text-align: center;
}

.stat-label {
  font-size: 0.85rem;
  color: #6b4a20;
  font-weight: 700;
}

.stat-card h3 {
  font-size: 2rem;
  margin-top: 8px;
  color: #f18613;
}

/* DELIVERY BAR */
.delivery-bar-wrap {
  margin-bottom: 40px;
}

.delivery-labels {
  display: flex;
  justify-content: space-between;
  font-weight: 700;
  margin-bottom: 8px;
}

.delivery-bar {
  height: 14px;
  background: #f3f3f3;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
}

.bar {
  height: 100%;
  transition: width 0.8s ease;
}

.bar.delivered {
  background: linear-gradient(90deg,#f18613,#ffb86a);
}

.bar.failed {
  background: #ff5a5a;
}

/* STATUS LOG */
.status-log {
  background: #fff;
  padding: 26px;
  border-radius: 18px;
  box-shadow: 0 12px 35px rgba(0,0,0,0.08);
}

.status-log h4 {
  margin-bottom: 16px;
  font-weight: 800;
}

.status-log ul {
  list-style: none;
  padding: 0;
  max-height: 220px;
  overflow-y: auto;
}

.status-log li {
  padding: 10px 0;
  font-weight: 600;
  border-bottom: 1px dashed rgba(0,0,0,0.08);
}

.status-log li span {
  float: right;
  font-size: 0.85rem;
}

.status-success { color: #1f9d55; }
.status-failed { color: #e3342f; }

/* RESPONSIVE */
@media(max-width:768px){
  .delivery-labels { font-size: 0.9rem; }
}

    /* Analytics Dashboard end  */

    /* MESSAGE DELIVERY FUNNEL start  */
     /* ===============================
   SMS DELIVERY FUNNEL
================================ */

.sms-funnel {
  padding: 90px 0;
  background: linear-gradient(180deg,#fff8ef,#ffffff);
}

.funnel-header {
  text-align: center;
  margin-bottom: 50px;
}

.funnel-header h2 {
  font-size: 2rem;
  font-weight: 800;
}

.funnel-header p {
  color: #6b4a20;
}

/* FLOW LAYOUT */
.funnel-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

/* STEPS */
.funnel-step {
  width: 260px;
  background: #fff;
  padding: 30px 22px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 12px 35px rgba(0,0,0,0.08);
  opacity: 0.5;
  transform: scale(0.96);
  transition: all 0.5s ease;
  position: relative;
}

.funnel-step.active {
  opacity: 1;
  transform: scale(1);
  box-shadow: 0 20px 50px rgba(241,134,19,0.25);
}

/* ICONS */
.funnel-icon {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  font-size: 1.9rem;
  color: #fff;
}

.funnel-icon.sent {
  background: linear-gradient(135deg,#0099ff,#00c6ff);
}

.funnel-icon.operator {
  background: linear-gradient(135deg,#f18613,#ffb86a);
}

.funnel-icon.handset {
  background: linear-gradient(135deg,#22c55e,#16a34a);
}

/* TEXT */
.funnel-step h4 {
  font-weight: 800;
  margin-bottom: 6px;
}

.funnel-step p {
  font-size: 0.9rem;
  color: #6b4a20;
}

/* COUNTS */
.funnel-count {
  display: inline-block;
  margin-top: 12px;
  font-size: 1.4rem;
  font-weight: 800;
  color: #f18613;
}

/* ARROWS */
.funnel-arrow {
  font-size: 32px;
  color: #f18613;
  opacity: 0.6;
  animation: arrowPulse 1.6s infinite;
}

@keyframes arrowPulse {
  0% { transform: translateX(0); opacity: 0.4; }
  50% { transform: translateX(6px); opacity: 1; }
  100% { transform: translateX(0); opacity: 0.4; }
}

/* NOTE */
.funnel-note {
  margin-top: 30px;
  text-align: center;
  font-size: 0.95rem;
  color: #7a5a39;
}

/* RESPONSIVE */
@media(max-width:768px){
  .funnel-arrow { display: none; }
  .funnel-flow { gap: 20px; }
}

    /* MESSAGE DELIVERY FUNNEL end  */

    /* FINAL CTA :start */
      /* ===============================
   SMS FINAL CTA
================================ */

.sms-final-cta {
  padding: 80px 20px;
  margin-top: 80px;
  background: linear-gradient(
    135deg,
    #3a2005,
    #f18613
  );
  text-align: center;
  color: #ffffff;
  border-radius: 28px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 30px 80px rgba(241,134,19,0.35);
  position: relative;
  overflow: hidden;
}

/* Soft glowing background */
.sms-final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,0.25), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(255,255,255,0.18), transparent 45%);
  opacity: 0.6;
  pointer-events: none;
}

/* HEADLINE */
.sms-final-cta h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 900;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}

/* SUBTEXT */
.sms-final-cta p {
  font-size: 1.1rem;
  opacity: 0.95;
  margin-bottom: 28px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

/* CTA BUTTON */
.sms-final-cta .btn-primary-lg {
  background: #ffffff;
  color: #3a2005;
  padding: 14px 28px;
  font-size: 1.05rem;
  font-weight: 800;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  box-shadow: 0 18px 45px rgba(0,0,0,0.25);
  transition: all 0.35s ease;
  position: relative;
  z-index: 1;
}

/* Hover interaction */
.sms-final-cta .btn-primary-lg:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 26px 65px rgba(0,0,0,0.35);
}

/* Pulse animation */
.sms-final-cta .btn-primary-lg::after {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: inherit;
  border: 2px solid rgba(255,255,255,0.4);
  opacity: 0;
  animation: ctaPulse 2.5s infinite;
}

@keyframes ctaPulse {
  0% { opacity: 0; transform: scale(0.92); }
  50% { opacity: 1; }
  100% { opacity: 0; transform: scale(1.15); }
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .sms-final-cta {
    padding: 60px 16px;
    border-radius: 22px;
  }
  .sms-final-cta p {
    font-size: 1rem;
  }
}

    /* FINAL CTA end  */

    /* sms faq start  */
   

      .sms-faq {
        padding: 80px 20px;
        background: linear-gradient(180deg, #fff8ef, #ffffff);
      }

      .faq-header {
        text-align: center;
        margin-bottom: 50px;
      }

      .faq-header h2 {
        font-size: clamp(1.8rem, 3vw, 2.4rem);
        font-weight: 900;
        margin-bottom: 10px;
      }

      .faq-header p {
        color: #6b4a20;
        max-width: 640px;
        margin: 0 auto;
      }

      .faq-list {
        max-width: 900px;
        margin: 0 auto;
      }

      .faq-item {
        background: #ffffff;
        border-radius: 16px;
        margin-bottom: 16px;
        box-shadow: 0 12px 30px rgba(58,32,5,0.08);
        border: 1px solid rgba(241,134,19,0.18);
        overflow: hidden;
        transition: box-shadow 0.3s ease, transform 0.3s ease;
      }

      .faq-item:hover {
        transform: translateY(-2px);
        box-shadow: 0 18px 45px rgba(58,32,5,0.12);
      }

      /* Question */
      .faq-question {
        width: 100%;
        padding: 20px 22px;
        background: transparent;
        border: none;
        outline: none;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 1.05rem;
        font-weight: 700;
        color: #3a2005;
      }

      /* Icon */
      .faq-icon {
        font-size: 26px;
        color: #f18613;
        transition: transform 0.35s ease;
      }

      /* Answer */
      .faq-answer {
        max-height: 0;
        overflow: hidden;
        padding: 0 22px;
        color: #6b4a20;
        line-height: 1.65;
        transition: max-height 0.45s ease, padding 0.45s ease;
      }

      /* Active state */
      .faq-item.active .faq-answer {
        max-height: 300px;
        padding: 0 22px 20px;
      }

      .faq-item.active .faq-icon {
        transform: rotate(45deg);
      }

      /* Mobile */
      @media (max-width: 768px) {
        .faq-question {
          font-size: 1rem;
        }
      }

    /* sms faq end */
/* smspage  end   */

/* VOICE STARTING  */
    /* Hero section start. */
     /* ===============================
   VOICE HERO SECTION
================================ */

.voice-hero {
  padding: 120px 0 80px;
  background: linear-gradient(180deg,#fffaf3,#ffffff);
}

.voice-hero-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 60px;
  align-items: center;
}

/* LEFT CONTENT */
.voice-badge {
  display: inline-block;
  background: rgba(241,134,19,.15);
  color: #f18613;
  padding: 8px 16px;
  border-radius: 999px;
  font-weight: 800;
  margin-bottom: 18px;
}

.voice-hero-content h1 {
  font-size: clamp(2.2rem,4vw,3.2rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 18px;
}

.voice-subtext {
  color: #6b4a20;
  font-size: 1.1rem;
  margin-bottom: 20px;
  max-width: 520px;
}

.voice-points {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.voice-points li {
  font-weight: 700;
  margin: 8px 0;
}

.voice-hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* RIGHT VISUAL */
.voice-hero-visual {
  display: flex;
  justify-content: center;
}

.call-mockup {
  width: 320px;
  background: #ffffff;
  border-radius: 26px;
  box-shadow: 0 30px 80px rgba(0,0,0,.18);
  overflow: hidden;
  animation: floatCall 5s ease-in-out infinite;
}

@keyframes floatCall {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.call-header {
  background: linear-gradient(135deg,#f18613,#ffb86a);
  color: #fff;
  text-align: center;
  padding: 14px;
  font-weight: 800;
}

.call-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.call-step {
  padding: 14px;
  border-radius: 14px;
  background: #f4f4f4;
  font-weight: 700;
  opacity: .35;
  transform: translateX(-10px);
  transition: all .5s ease;
}

.call-step.active {
  background: linear-gradient(135deg,#f18613,#ffb86a);
  color: #fff;
  opacity: 1;
  transform: translateX(0);
}

.call-footer {
  padding: 12px;
  text-align: center;
  font-weight: 800;
  border-top: 1px solid rgba(0,0,0,.08);
}

/* RESPONSIVE */
@media(max-width: 900px){
  .voice-hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .voice-subtext {
    margin: auto;
  }
  .voice-hero-cta {
    justify-content: center;
  }
}
/* hero section end  */
/* VOICE CAPABILITIES startt */
  /* ===============================
   VOICE CAPABILITIES
================================ */

.voice-capabilities {
  padding: 90px 0;
  background: linear-gradient(180deg,#ffffff,#fff8ef);
}

.voice-cap-grid {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
  gap: 26px;
}

/* CARD */
.voice-cap-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 15px 45px rgba(0,0,0,.08);
  transition: all .35s ease;
  position: relative;
  overflow: hidden;
}

.voice-cap-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,#f18613,#ffb86a);
  opacity: 0;
  transition: .35s ease;
  z-index: 0;
}

.voice-cap-card:hover::before {
  opacity: .08;
}

.voice-cap-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 70px rgba(0,0,0,.12);
}

.voice-cap-card * {
  position: relative;
  z-index: 1;
}

.voice-cap-card h3 {
  margin: 14px 0 10px;
  font-weight: 800;
}

.voice-cap-card p {
  color: #6b4a20;
  font-size: .95rem;
}

.voice-cap-card ul {
  list-style: none;
  padding: 0;
  margin-top: 14px;
}

.voice-cap-card li {
  font-weight: 600;
  margin: 6px 0;
}

/* ICONS */
.voice-cap-icon {
  width: 70px;
  height: 70px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: #fff;
  box-shadow: 0 10px 25px rgba(0,0,0,.18);
}

.voice-cap-icon.ivr {
   background: linear-gradient(135deg,#6a11cb,#2575fc); 
  }
.voice-cap-icon.otp { 
  background: linear-gradient(135deg,#ff416c,#ff4b2b); 
}
.voice-cap-icon.missed { 
  background: linear-gradient(135deg,#f7971e,#ffd200); 
}
.voice-cap-icon.outbound {
   background: linear-gradient(135deg,#00c6ff,#0072ff); 
  }
.voice-cap-icon.patching {
   background: linear-gradient(135deg,#089eb5,#6cdbf2);
   }
.voice-cap-icon.click { 
  background: linear-gradient(135deg,#f18613,#ffb86a); 
}
.voice-cap-icon.conf {
  background: linear-gradient(135deg,#4f46e5,#6366f1);
}
.voice-cap-icon.cloud {
  background: linear-gradient(135deg,#0ea5e9,#38bdf8);
}
.voice-cap-icon.ai {
  background: linear-gradient(135deg,#9333ea,#c084fc);
}



/* RESPONSIVE */
@media(max-width:768px){
  .voice-cap-card {
    text-align: center;
  }
  .voice-cap-icon {
    margin: 0 auto;
  }
}

.voice-capabilities-scroll {
  padding: 90px 0;
  background: linear-gradient(180deg,#ffffff,#fff8ef);
}

.voice-scroll-wrap {
  margin-top: 40px;
  overflow-x: auto;
  padding-bottom: 20px;
}

.voice-scroll-wrap::-webkit-scrollbar {
  height: 8px;
}

.voice-scroll-wrap::-webkit-scrollbar-thumb {
  background: linear-gradient(90deg,#f18613,#ffb86a);
  border-radius: 20px;
}

.voice-scroll-track {
  display: flex;
  gap: 26px;
  width: max-content;
  padding: 10px 4px;
}

/* CARD */
.voice-cap-card {
  min-width: 300px;
  max-width: 300px;
  background: #ffffff;
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 15px 45px rgba(0,0,0,.08);
  transition: all .35s ease;
  flex-shrink: 0;
}

.voice-cap-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 70px rgba(0,0,0,.14);
}

.voice-cap-card h3 {
  margin: 14px 0 10px;
  font-weight: 800;
}

.voice-cap-card p {
  font-size: .95rem;
  color: #6b4a20;
}

.voice-cap-card ul {
  list-style: none;
  padding: 0;
  margin-top: 14px;
}

.voice-cap-card li {
  font-weight: 600;
  margin: 6px 0;
}

/* ICONS */
.voice-cap-icon {
  width: 70px;
  height: 70px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: #fff;
  box-shadow: 0 10px 25px rgba(0,0,0,.18);
}

.voice-cap-icon.ivr {
   background: linear-gradient(135deg,#6a11cb,#2575fc); 
  }
.voice-cap-icon.otp { 
  background: linear-gradient(135deg,#ff416c,#ff4b2b); 
}
.voice-cap-icon.missed { 
  background: linear-gradient(135deg,#f7971e,#ffd200); 
}
.voice-cap-icon.outbound {
   background: linear-gradient(135deg,#00c6ff,#0072ff); 
  }
.voice-cap-icon.patching {
   background: linear-gradient(135deg,#089eb5,#6cdbf2);
   }
.voice-cap-icon.click { 
  background: linear-gradient(135deg,#f18613,#ffb86a); 
}
.voice-cap-icon.conf {
  background: linear-gradient(135deg,#4f46e5,#6366f1);
}
.voice-cap-icon.cloud {
  background: linear-gradient(135deg,#0ea5e9,#38bdf8);
}
.voice-cap-icon.ai {
  background: linear-gradient(135deg,#9333ea,#c084fc);
}

/* VOICE CAPABILITIES endd */

/* Real-Time IVR Runtime startt */
.ivr-runtime-section {
  padding: 100px 0;
  background: linear-gradient(180deg,#fffaf3,#ffffff);
}

.ivr-runtime-grid {
  margin-top: 60px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
}

/* STATES */
.ivr-states {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ivr-state {
  padding: 18px;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
  opacity: .4;
  transition: .3s;
  border-left: 4px solid transparent;
}

.ivr-state.active {
  opacity: 1;
  border-left-color: #f18613;
  transform: translateX(6px);
}

.ivr-state span {
  font-weight: 900;
  font-family: monospace;
  font-size: .95rem;
}

.ivr-state small {
  display: block;
  color: #6b4a20;
  margin-top: 4px;
  font-weight: 600;
}

/* CONSOLE */
.ivr-console {
  background: #0d0f17;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 25px 80px rgba(0,0,0,.3);
}

.ivr-console-header {
  padding: 14px;
  background: linear-gradient(135deg,#f18613,#ffb86a);
  font-weight: 800;
  color: #fff;
}

.ivr-console-body {
  padding: 18px;
  height: 260px;
  overflow-y: auto;
  font-family: monospace;
  font-size: .85rem;
}

.ivr-log {
  margin-bottom: 10px;
  color: #cbd5f5;
}

.ivr-log strong {
  color: #f18613;
}
@media (max-width: 768px) {

  .ivr-runtime-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .ivr-state.active {
    transform: none;
  }

}

/* Real-Time IVR Runtime end */

/* VOICE CALL TYPES star */
.voice-types-section {
  padding: 100px 0;
  background: #ffffff;
}

/* TABS */
.voice-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 50px;
}

.voice-tab {
  padding: 12px 26px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(241,134,19,.3);
  font-weight: 800;
  cursor: pointer;
  transition: all .3s ease;
}

.voice-tab.active {
  background: linear-gradient(90deg,#f18613,#ffb86a);
  color: #fff;
  border-color: transparent;
}

/* PANELS */
.voice-panel {
  display: none;
  animation: voiceFade .4s ease;
}

.voice-panel.active {
  display: block;
}

@keyframes voiceFade {
  from { opacity:0; transform:translateY(14px); }
  to { opacity:1; transform:translateY(0); }
}

/* GRID */
.voice-panel-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 40px;
  align-items: center;
}

/* INFO */
.voice-panel-info h3 {
  font-weight: 900;
}

.voice-panel-info p {
  color: #6b4a20;
  margin: 10px 0 18px;
}

.voice-panel-info ul {
  list-style: none;
  padding: 0;
}

.voice-panel-info li {
  font-weight: 600;
  margin: 8px 0;
}

/* META */
.voice-meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.voice-meta span {
  font-size: .75rem;
  padding: 6px 12px;
  border-radius: 999px;
  background: #fff8ef;
  font-weight: 700;
  color: #6b4a20;
}

/* VISUAL */
.voice-panel-visual {
  display: flex;
  justify-content: center;
}

.voice-card {
  background: #fff;
  padding: 26px;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0,0,0,.15);
  font-weight: 800;
  text-align: center;
}

.voice-card.highlight {
  background: linear-gradient(135deg,#f18613,#ffb86a);
  color: #fff;
}

/* RESPONSIVE */
@media(max-width: 900px){
  .voice-panel-grid {
    grid-template-columns: 1fr;
  }
}
/* VOICE CALL TYPES end */

/* Voice Delivery Flow Funnel startt */
.voice-flow-tech {
  padding: 110px 0;
  background: #ffffff;
}

/* PIPELINE */
.voice-pipeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 70px;
  align-items: stretch;
}

.pipe-node {
  background: #6b4a20;
  color: #e5e7eb;
  border-radius: 16px;
  padding: 20px;
  position: relative;
  opacity: .45;
  transition: .4s ease;
}

.pipe-node.active {
  opacity: 1;
  box-shadow: 0 20px 60px rgba(0,0,0,.4);
}

.node-title {
  font-weight: 800;
  font-size: 1.05rem;
}

.node-meta {
  font-size: .75rem;
  opacity: .6;
  margin-bottom: 10px;
}

.pipe-node ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pipe-node li {
  font-size: .85rem;
  padding: 6px 0;
  border-bottom: 1px dashed rgba(255,255,255,.1);
}

.latency {
  display: inline-block;
  margin-top: 12px;
  font-size: .7rem;
  font-weight: 800;
  color: #f18613;
}

/* CONNECTOR */
.pipe-connector {
  display: none;
}

/* TRACE LOG */
.voice-trace-log {
  margin-top: 60px;
  background: #0d0f17;
  border-radius: 16px;
  overflow: hidden;
}

.trace-header {
  background: #151823;
  padding: 12px 18px;
  font-weight: 800;
  color: #f18613;
  font-size: .85rem;
}

.voice-trace-log pre {
  padding: 18px;
  color: #a7f3d0;
  font-size: .8rem;
  line-height: 1.5;
  min-height: 140px;
}

/* NOTE */
.flow-tech-note {
  margin-top: 40px;
  max-width: 760px;
  background: #fff8ef;
  padding: 24px;
  border-radius: 18px;
  font-weight: 600;
  color: #6b4a20;
}

/* RESPONSIVE */
@media(max-width: 900px){
  .voice-pipeline {
    grid-template-columns: 1fr;
  }
}
/* Voice Delivery Flow Funnel end */

/* Voice Analytics & Call Metrics Dashboard startt */
 /* ===============================
   VOICE ANALYTICS DASHBOARD
================================ */

.voice-analytics {
  padding: 110px 0;
  background: linear-gradient(180deg,#fffdf8,#ffffff);
}

/* KPI GRID */
.va-kpis {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(5,1fr);
  gap: 20px;
}

.va-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 12px 30px rgba(0,0,0,.08);
  border: 1px solid rgba(0,0,0,.06);
}

.va-card span {
  font-size: .8rem;
  font-weight: 700;
  color: #6b4a20;
}

.va-card h3 {
  font-size: 1.8rem;
  font-weight: 900;
  margin-top: 8px;
  color: #0d0f17;
}

/* BARS */
.va-bars {
  margin-top: 50px;
  max-width: 640px;
}

.bar-row {
  margin-bottom: 16px;
}

.bar-row span {
  font-weight: 700;
  font-size: .85rem;
}

.bar {
  height: 14px;
  background: #e5e7eb;
  border-radius: 999px;
  overflow: hidden;
  margin-top: 6px;
}

.fill {
  height: 100%;
  width: 0%;
  transition: width .6s ease;
}

.fill.connected {
  background: linear-gradient(90deg,#22c55e,#4ade80);
}

.fill.failed {
  background: linear-gradient(90deg,#ef4444,#f87171);
}

/* LOG */
.va-log {
  margin-top: 60px;
  background: #0d0f17;
  border-radius: 18px;
  overflow: hidden;
}

.log-header {
  background: #151823;
  padding: 12px 18px;
  font-weight: 800;
  font-size: .85rem;
  color: #f18613;
}

.va-log ul {
  list-style: none;
  padding: 16px;
  margin: 0;
  max-height: 240px;
  overflow-y: auto;
}

.va-log li {
  font-size: .8rem;
  padding: 6px 0;
  color: #a7f3d0;
  font-family: monospace;
}

/* RESPONSIVE */
@media(max-width: 1100px){
  .va-kpis {
    grid-template-columns: repeat(2,1fr);
  }
}
/*  Voice Analytics & Call Metrics Dashboard end */

/* Voice Pricing startt */
.voice-pricing-sla {
  padding: 110px 0;
  background: linear-gradient(180deg,#ffffff,#fffdf8);
}

/* PRICING GRID */
.voice-pricing-grid {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 28px;
}

.voice-price-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 32px 26px;
  box-shadow: 0 18px 50px rgba(0,0,0,.08);
  border: 1px solid rgba(0,0,0,.06);
  position: relative;
}

.voice-price-card.featured {
  border: 2px solid rgba(241,134,19,.6);
  transform: scale(1.02);
}

.voice-price-card .badge {
  position: absolute;
  top: -14px;
  right: 20px;
  background: linear-gradient(90deg,#f18613,#ffb86a);
  color: #fff;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: .7rem;
  font-weight: 800;
}

.voice-price-card h3 {
  font-weight: 900;
  margin-bottom: 6px;
}

.price-desc {
  font-size: .9rem;
  color: #6b4a20;
  margin-bottom: 16px;
}

.price {
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 20px;
}

.price span {
  font-size: .9rem;
  font-weight: 700;
  color: #6b4a20;
}

.price-features {
  list-style: none;
  padding: 0;
  margin-bottom: 24px;
}

.price-features li {
  padding: 8px 0;
  font-weight: 600;
  border-bottom: 1px dashed rgba(0,0,0,.08);
}

/* SLA */
.voice-sla {
  margin-top: 90px;
  background: #fff8ef;
  padding: 40px;
  border-radius: 24px;
}

.voice-sla h3 {
  font-weight: 900;
  margin-bottom: 30px;
  text-align: center;
}

.sla-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 20px;
}

.sla-item {
  background: #ffffff;
  padding: 24px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 12px 35px rgba(0,0,0,.06);
}

.sla-label {
  font-size: .75rem;
  font-weight: 800;
  color: #f18613;
}

.sla-item h4 {
  font-size: 1.6rem;
  font-weight: 900;
  margin: 10px 0 6px;
}

.sla-item p {
  font-size: .85rem;
  font-weight: 600;
  color: #6b4a20;
}

.sla-note {
  margin-top: 26px;
  font-size: .85rem;
  font-weight: 600;
  color: #6b4a20;
  text-align: center;
}

/* RESPONSIVE */
@media(max-width: 1100px){
  .voice-pricing-grid {
    grid-template-columns: 1fr;
  }
  .sla-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media(max-width: 600px){
  .sla-grid {
    grid-template-columns: 1fr;
  }
}
/* Voice Pricing end */

/* Security & Compliance startt */
.voice-security {
  padding: 110px 0;
  background: linear-gradient(180deg,#fffdf8,#ffffff);
}

.security-grid {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 28px;
}

.security-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 30px 26px;
  box-shadow: 0 18px 45px rgba(0,0,0,.08);
  border: 1px solid rgba(0,0,0,.06);
  position: relative;
  overflow: hidden;
  transition: transform .35s ease, box-shadow .35s ease;
}

.security-card::after {
  content: attr(data-region);
  position: absolute;
  top: 14px;
  right: 16px;
  font-size: .7rem;
  font-weight: 800;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(241,134,19,.12);
  color: #f18613;
  opacity: 0;
  transform: translateY(-6px);
  transition: .3s ease;
}

.security-card:hover::after {
  opacity: 1;
  transform: translateY(0);
}

.security-card:hover {
  transform: translateY(-6px);
 
  box-shadow: 0 28px 70px rgba(0,0,0,.12);
}

.sec-icon {
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.security-card h3 {
  font-weight: 900;
  margin-bottom: 10px;
}

.security-card p {
  font-size: .9rem;
  font-weight: 600;
  color: #6b4a20;
  margin-bottom: 14px;
}

.security-card ul {
  list-style: none;
  padding: 0;
}

.security-card li {
  font-size: .88rem;
  font-weight: 700;
  padding: 6px 0;
  border-bottom: 1px dashed rgba(0,0,0,.08);
}

.security-note {
  margin-top: 50px;
  padding: 18px 22px;
  background: #fff8ef;
  border-radius: 14px;
  font-size: .9rem;
  font-weight: 700;
  color: #6b4a20;
  text-align: center;
}

/* RESPONSIVE */
@media(max-width: 1100px){
  .security-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media(max-width: 600px){
  .security-grid {
    grid-template-columns: 1fr;
  }
}
/* Security & Compliance end */

/* Voice FAQs (technical + billing + compliance)  startt */
.voice-faq {
  padding: 110px 0;
  background: linear-gradient(180deg,#ffffff,#fffdf8);
}

.faq-grid {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 30px;
}

.faq-column {
  background: #ffffff;
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 18px 45px rgba(0,0,0,.08);
  border: 1px solid rgba(0,0,0,.06);
}

.faq-title {
  font-size: 1.1rem;
  font-weight: 900;
  margin-bottom: 18px;
  color: #f18613;
}

/* FAQ ITEM */
.faq-item {
  border-bottom: 1px dashed rgba(0,0,0,.1);
  padding: 12px 0;
  cursor: pointer;
}

.faq-q {
  font-weight: 800;
  font-size: .9rem;
  position: relative;
  padding-right: 20px;
}

.faq-q::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
  font-weight: 900;
  transition: transform .3s ease;
}

.faq-item.active .faq-q::after {
  content: "–";
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  font-size: .88rem;
  color: #6b4a20;
  font-weight: 600;
  line-height: 1.6;
  transition: max-height .4s ease;
  margin-top: 8px;
}

.faq-item.active .faq-a {
  max-height: 220px;
}

/* RESPONSIVE */
@media(max-width: 1100px){
  .faq-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media(max-width: 650px){
  .faq-grid {
    grid-template-columns: 1fr;
  }
}
/* Voice FAQs (technical + billing + compliance) end */

/* CTA startt */
.voice-final-cta {
  padding: 110px 0;
  background: linear-gradient(135deg,#3a2005,#f18613);
  color: #fff;
}

.voice-cta-box {
  display: flex;
  gap: 50px;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,255,255,.08);
  border-radius: 26px;
  padding: 60px;
  backdrop-filter: blur(14px);
  box-shadow: 0 30px 80px rgba(0,0,0,.35);
}

/* LEFT */
.voice-cta-badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: .75rem;
  font-weight: 800;
  background: rgba(255,255,255,.18);
  margin-bottom: 16px;
}

.voice-cta-content h2 {
  font-size: clamp(1.8rem,3vw,2.6rem);
  font-weight: 900;
  margin-bottom: 16px;
}

.voice-cta-content p {
  font-size: 1.05rem;
  opacity: .92;
  max-width: 560px;
}

.voice-cta-points {
  list-style: none;
  padding: 0;
  margin: 24px 0;
}

.voice-cta-points li {
  margin: 8px 0;
  font-weight: 700;
}

.voice-cta-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 18px;
}

/* RIGHT TECH METRICS */
.voice-cta-tech {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 18px;
  min-width: 300px;
}

.tech-card {
  background: rgba(255,255,255,.14);
  border-radius: 18px;
  padding: 22px;
  text-align: center;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.18);
  transition: transform .35s ease;
}

.tech-card span {
  font-size: .75rem;
  opacity: .8;
  font-weight: 700;
}

.tech-card strong {
  display: block;
  font-size: 1.15rem;
  font-weight: 900;
  margin-top: 6px;
}

.tech-card:hover {
  transform: translateY(-6px);
}

/* RESPONSIVE */
@media(max-width: 980px){
  .voice-cta-box {
    flex-direction: column;
    text-align: center;
  }
  .voice-cta-tech {
    grid-template-columns: repeat(2,1fr);
  }
}

@media(max-width: 520px){
  .voice-cta-tech {
    grid-template-columns: 1fr;
  }
}
/*  CTA end */
/* VOICE ENDING  */

/* WHATSAPP PAGE START  */

/* hero section :start */
/* ================= WHATSAPP HERO ================= */
.wa-hero {
  padding: 90px 0;
  background: linear-gradient(180deg,#f6fff9,#ffffff);
}

.wa-hero-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  display: flex;
  gap: 60px;
  align-items: center;
  flex-wrap: wrap;
}

.wa-hero-content {
  flex: 1 1 520px;
}

.wa-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(37,211,102,.12);
  color: #128C7E;
  border-radius: 999px;
  font-weight: 700;
  margin-bottom: 16px;
}

.wa-hero-content h1 {
  font-size: clamp(2rem,3.5vw,3.1rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 16px;
}

.wa-subtext {
  font-size: 1.05rem;
  color: #5a5a5a;
  margin-bottom: 18px;
}

.wa-points {
  list-style: none;
  padding: 0;
  margin-bottom: 22px;
}

.wa-points li {
  margin: 6px 0;
  font-weight: 600;
  color: #1f3d2b;
}

.wa-hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.wa-trust {
  margin-top: 16px;
  font-size: .9rem;
  color: #5a5a5a;
}

/* PHONE MOCKUP */
.wa-hero-visual {
  flex: 1 1 420px;
  display: flex;
  justify-content: center;
}

.wa-phone {
  width: 330px;
  background: #fff;
  border-radius: 26px;
  box-shadow: 0 25px 60px rgba(0,0,0,.18);
  overflow: hidden;
}

.wa-phone-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  background: #075E54;
  color: #fff;
}

.wa-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #25D366;
}

.wa-verified {
  margin-left: auto;
  color: #25D366;
}

.wa-phone-header small {
  display: block;
  font-size: .75rem;
  opacity: .85;
}

.wa-chat {
  padding: 14px;
  background: #e5ddd5;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.wa-bubble {
  max-width: 85%;
  padding: 10px 14px;
  border-radius: 14px;
  font-size: .95rem;
  font-weight: 600;
}

.wa-left {
  background: #fff;
  align-self: flex-start;
}

.wa-right {
  background: #dcf8c6;
  align-self: flex-end;
}

.wa-status {
  padding: 10px;
  font-size: .8rem;
  text-align: center;
  background: #f4f4f4;
  color: #4a4a4a;
}
/* hero section end  */

/* WhatsApp Use-Cases Section:start */
/* ================= WHATSAPP USE CASES ================= */
.wa-usecases {
  padding: 90px 0;
  background: linear-gradient(180deg,#ffffff,#f6fff9);
}

.wa-usecase-scroll {
  overflow-x: auto;
  margin-top: 40px;
}

.wa-usecase-track {
  display: flex;
  gap: 22px;
  min-width: max-content;
  padding-bottom: 10px;
}

.wa-usecase-card {
  width: 280px;
  background: #fff;
  border-radius: 20px;
  padding: 26px;
  box-shadow: 0 14px 40px rgba(0,0,0,.08);
  transition: transform .35s ease, box-shadow .35s ease;
}

.wa-usecase-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 60px rgba(0,0,0,.12);
}

.wa-usecase-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 14px;
}

/* Icon gradients */
.wa-usecase-icon.otp {
  background: linear-gradient(135deg,#25D366,#128C7E);
}
.wa-usecase-icon.alert {
  background: linear-gradient(135deg,#0ea5e9,#38bdf8);
}
.wa-usecase-icon.support {
  background: linear-gradient(135deg,#6366f1,#818cf8);
}
.wa-usecase-icon.marketing {
  background: linear-gradient(135deg,#f59e0b,#fbbf24);
}
.wa-usecase-icon.cart {
  background: linear-gradient(135deg,#ec4899,#f472b6);
}
.wa-usecase-icon.payment {
  background: linear-gradient(135deg,#22c55e,#4ade80);
}

.wa-usecase-card h3 {
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.wa-usecase-card p {
  font-size: .95rem;
  color: #555;
  margin-bottom: 12px;
}

.wa-usecase-card ul {
  list-style: none;
  padding: 0;
}

.wa-usecase-card li {
  font-size: .85rem;
  font-weight: 600;
  color: #1f3d2b;
  margin-bottom: 6px;
}

/* Hide scrollbar (optional) */
.wa-usecase-scroll::-webkit-scrollbar {
  height: 6px;
}
.wa-usecase-scroll::-webkit-scrollbar-thumb {
  background: rgba(37,211,102,.4);
  border-radius: 10px;
}
/*WhatsApp Use-Cases Section end  */

/* WhatsApp Message Types :start */
/* ================= WHATSAPP MESSAGE TYPES ================= */
.wa-message-types {
  padding: 90px 0;
  background: linear-gradient(180deg,#ffffff,#f6fff9);
}

/* Tabs */
.wa-tabs {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin: 30px 0;
  flex-wrap: wrap;
}

.wa-tab {
  padding: 10px 22px;
  border-radius: 999px;
  border: 1px solid rgba(37,211,102,.35);
  background: #fff;
  font-weight: 800;
  cursor: pointer;
}

.wa-tab.active {
  background: linear-gradient(90deg,#25D366,#128C7E);
  color: #fff;
}

/* Panels */
.wa-panel {
  display: none;
  animation: waFade .35s ease;
}

.wa-panel.active {
  display: block;
}

@keyframes waFade {
  from { opacity:0; transform:translateY(14px); }
  to { opacity:1; transform:translateY(0); }
}

/* Grid */
.wa-panel-grid {
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
}

.wa-info {
  flex: 1 1 420px;
}

.wa-info ul {
  list-style: none;
  padding: 0;
}

.wa-info li {
  font-weight: 600;
  margin: 6px 0;
}

.wa-meta {
  margin-top: 12px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  font-size: .85rem;
  color: #128C7E;
  font-weight: 700;
}

/* Mini WhatsApp */
.wa-phone-mini {
  width: 280px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 18px 45px rgba(0,0,0,.15);
  overflow: hidden;
}

.wa-mini-header {
  background: #075E54;
  color: #fff;
  padding: 10px;
  font-weight: 700;
  text-align: center;
}

.wa-mini-body {
  padding: 12px;
  background: #e5ddd5;
}

.wa-bubble {
  padding: 10px 14px;
  border-radius: 14px;
  margin-bottom: 6px;
  font-weight: 600;
  font-size: .9rem;
}

.wa-bubble.right {
  background: #dcf8c6;
  align-self: flex-end;
}

.wa-bubble.left {
  background: #fff;
}

.wa-bubble.auth {
  background: linear-gradient(90deg,#25D366,#128C7E);
  color: #fff;
}

.wa-bubble.promo {
  background: #fff3d6;
  border: 1px dashed #f59e0b;
}

.wa-label {
  font-size: .75rem;
  opacity: .7;
  text-align: center;
}

/* Responsive */
@media(max-width:768px){
  .wa-panel-grid { flex-direction: column; }
}
/*  WhatsApp Message Types end  */

/* How WhatsApp Messaging Work:start */
/* ================= SIMPLE WHATSAPP FLOW ================= */
.wa-simple-flow {
  padding: 100px 0;
  background: linear-gradient(180deg,#ffffff,#f6fff9);
}

.wa-flow-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 26px;
  margin-top: 50px;
}

.wa-step {
  background: #ffffff;
  border-radius: 20px;
  padding: 28px;
  text-align: center;
  box-shadow: 0 18px 50px rgba(0,0,0,.08);
  transition: transform .3s ease;
}

.wa-step:hover {
  transform: translateY(-6px);
}

.wa-step-num {
  width: 48px;
  height: 48px;
  margin: 0 auto 12px;
  border-radius: 50%;
  background: linear-gradient(135deg,#25D366,#128C7E);
  color: #fff;
  font-weight: 800;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wa-step h3 {
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.wa-step p {
  font-size: .9rem;
  color: #4b6f62;
  margin-bottom: 10px;
}

.wa-example {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  color: #0f766e;
  background: #ecfdf5;
  padding: 6px 10px;
  border-radius: 999px;
}

/* Responsive */
@media(max-width:768px){
  .wa-step { padding: 22px; }
}
.wa-step.active-step {
  box-shadow: 0 0 0 3px rgba(37,211,102,.25),
              0 22px 60px rgba(0,0,0,.12);
}
/* How WhatsApp Messaging Work end  */

/* Pricing & Conversation Categories :start */
.wa-pricing {
  padding: 100px 0;
  background: linear-gradient(180deg,#f6fff9,#ffffff);
}

.wa-price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(240px,1fr));
  gap: 24px;
  margin-top: 50px;
}

.wa-price-card {
  background: #fff;
  border-radius: 22px;
  padding: 28px;
  box-shadow: 0 18px 50px rgba(0,0,0,.08);
  transition: transform .3s ease;
  position: relative;
}

.wa-price-card:hover {
  transform: translateY(-8px);
  outline: 2px solid green;
}

.wa-price-card.featured {
  border: 2px solid #25D366;
}

.wa-price-card h3 {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 6px;
}

.wa-price-card p {
  font-size: .9rem;
  color: #4b6f62;
  margin-bottom: 12px;
}

.wa-price-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 16px;
}

.wa-price-card li {
  font-size: .85rem;
  font-weight: 600;
  margin-bottom: 6px;
}

/* BADGES */
.wa-badge {
  display: inline-block;
  font-size: .7rem;
  font-weight: 800;
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 12px;
}

.wa-badge.utility { background:#e0f2fe; color:#0369a1; }
.wa-badge.auth { background:#ecfdf5; color:#047857; }
.wa-badge.marketing { background:#fff7ed; color:#9a3412; }
.wa-badge.service { background:#f1f5f9; color:#334155; }

/* PRICE */
.wa-price {
  font-size: 1.6rem;
  font-weight: 900;
  margin-bottom: 6px;
}

.wa-price span {
  font-size: .8rem;
  font-weight: 700;
  color: #64748b;
}

.wa-note {
  font-size: .75rem;
  font-weight: 700;
  color: #0f766e;
}

/* EXPLANATION BOX */
.wa-pricing-explain {
  margin-top: 70px;
  background: #ffffff;
  border-radius: 22px;
  padding: 34px;
  box-shadow: 0 14px 40px rgba(0,0,0,.06);
}

.wa-pricing-explain h3 {
  font-weight: 800;
  margin-bottom: 16px;
}

.wa-pricing-explain ol {
  padding-left: 20px;
}

.wa-pricing-explain li {
  font-size: .9rem;
  margin-bottom: 8px;
  font-weight: 600;
}

/* Responsive */
@media(max-width:768px){
  .wa-pricing { padding: 80px 0; }
}
/* Pricing & Conversation Categories end  */

/* WhatsApp Automation & Integrations:start */
/* ================= WHATSAPP AUTOMATION SIMPLE ================= */
.wa-auto-simple {
  padding: 110px 0;
  background: linear-gradient(180deg,#ffffff,#f0fdf9);
}

.wa-auto-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 60px;
}

.wa-auto-step {
  background: #ffffff;
  width: 200px;
  padding: 22px 18px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 12px 35px rgba(0,0,0,.08);
  transition: .3s ease;
}

.wa-auto-step:hover {
  transform: translateY(-6px);
}

.wa-step-icon {
  font-size: 26px;
  margin-bottom: 8px;
}

.wa-auto-step h4 {
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 6px;
}

.wa-auto-step p {
  font-size: .9rem;
  font-weight: 600;
  color: #374151;
}

.wa-auto-step span {
  display: block;
  font-size: .75rem;
  color: #6b7280;
  margin-top: 6px;
}

.wa-auto-arrow {
  font-size: 1.6rem;
  font-weight: 900;
  color: #25D366;
}

/* Integrations */
.wa-integration-box {
  margin-top: 60px;
  text-align: center;
}

.wa-integration-box h3 {
  font-size: 1.2rem;
  font-weight: 900;
  margin-bottom: 16px;
}

.wa-integration-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.wa-integration-tags span {
  background: #ffffff;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 700;
  font-size: .75rem;
  box-shadow: 0 6px 18px rgba(0,0,0,.06);
  color: #065f46;
}

/* Note */
.wa-auto-note {
  margin-top: 40px;
  text-align: center;
  font-size: .95rem;
  font-weight: 600;
  color: #065f46;
}

/* Active animation */
.wa-auto-step.active {
  outline: 2px solid rgba(37,211,102,.4);
}

/* Responsive */
@media(max-width:900px){
  .wa-auto-arrow { display:none; }
}
/* WhatsApp Automation & Integrations end  */

/* WhatsApp Template Approval & Compliance:start */
.wa-compliance-v2 {
  padding: 110px 0;
  background: linear-gradient(180deg,#f7fffb,#ffffff);
}

/* Layout */
.wa-comp-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 50px;
  margin-top: 60px;
}

/* Timeline */
.wa-comp-timeline {
  position: relative;
  padding-left: 20px;
  border-left: 2px solid rgba(37,211,102,.25);
}

.wa-comp-node {
  margin-bottom: 40px;
  cursor: pointer;
  opacity: .5;
  transition: .3s ease;
}

.wa-comp-node.active {
  opacity: 1;
}

.wa-comp-node span {
  width: 36px;
  height: 36px;
  background: #25D366;
  color: #fff;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 6px;
}

.wa-comp-node h4 {
  font-size: .95rem;
  font-weight: 800;
}

.wa-comp-node p {
  font-size: .8rem;
  color: #4b6f62;
}

/* Right Panel */
.wa-comp-details {
  background: #ffffff;
  border-radius: 22px;
  padding: 36px;
  box-shadow: 0 20px 60px rgba(0,0,0,.08);
}

.wa-comp-content {
  display: none;
  animation: fadeIn .4s ease;
}

.wa-comp-content.active {
  display: block;
}

.wa-comp-content h3 {
  font-weight: 800;
  margin-bottom: 10px;
}

.wa-comp-content p {
  color: #4b6f62;
  margin-bottom: 14px;
}

.wa-comp-content ul {
  list-style: none;
  padding: 0;
}

.wa-comp-content li {
  font-weight: 600;
  margin-bottom: 8px;
}

.wa-comp-content pre {
  background: #ecfdf5;
  border-left: 4px solid #25D366;
  padding: 14px;
  border-radius: 12px;
  font-size: .85rem;
  margin-bottom: 14px;
}

/* Footnote */
.wa-comp-footnote {
  margin-top: 50px;
  background: #ecfdf5;
  padding: 20px 24px;
  border-radius: 16px;
  font-weight: 700;
  color: #065f46;
}

/* Responsive */
@media(max-width:900px){
  .wa-comp-layout {
    grid-template-columns: 1fr;
  }
  .wa-comp-timeline {
    border-left: none;
    display: flex;
    gap: 14px;
    overflow-x: auto;
  }
  .wa-comp-node {
    min-width: 200px;
  }
}
/* ===== WhatsApp Compliance – Mobile Fix ===== */
@media (max-width: 768px) {

  .wa-comp-layout {
    display: block;
  }

  .wa-comp-timeline {
    margin-bottom: 24px;
  }

  .wa-comp-details {
    width: 100%;
  }

}

/* WhatsApp Template Approval & Compliance end  */

/* WhatsApp Analytics Dashboard:start */
.wa-conv-analytics {
  padding: 120px 0;
  background: linear-gradient(180deg,#ffffff,#ecfdf5);
}

/* KPIs */
.wa-kpi-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 24px;
  margin-top: 50px;
}

.wa-kpi {
  background: #ffffff;
  padding: 26px;
  border-radius: 18px;
  box-shadow: 0 14px 40px rgba(0,0,0,.08);
}

.wa-kpi span {
  font-size: .8rem;
  font-weight: 700;
  color: #6b7280;
}

.wa-kpi h3 {
  font-size: 2rem;
  font-weight: 900;
  margin-top: 6px;
  color: #065f46;
}

/* Lifecycle */
.wa-lifecycle {
  margin-top: 80px;
  text-align: center;
}

.wa-lifecycle h3 {
  font-size: 1.3rem;
  font-weight: 900;
  margin-bottom: 30px;
}

.wa-life-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.wa-life-step {
  background: #ffffff;
  width: 180px;
  padding: 18px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
}

.wa-life-step h4 {
  font-size: 1rem;
  font-weight: 800;
}

.wa-life-step p {
  font-size: .8rem;
  color: #6b7280;
}

.wa-life-step span {
  display: block;
  margin-top: 10px;
  font-size: 1.4rem;
  font-weight: 900;
  color: #25D366;
}

.wa-life-arrow {
  font-size: 1.6rem;
  font-weight: 900;
  color: #16a34a;
}

/* Feed */
.wa-conv-feed {
  margin-top: 80px;
}

.wa-conv-feed h4 {
  font-size: 1.1rem;
  font-weight: 900;
  margin-bottom: 16px;
}

.wa-conv-feed ul {
  list-style: none;
  padding: 0;
}

.wa-conv-feed li {
  background: #ffffff;
  margin-bottom: 10px;
  padding: 14px 18px;
  border-radius: 14px;
  box-shadow: 0 6px 20px rgba(0,0,0,.06);
  font-weight: 600;
  display: flex;
  justify-content: space-between;
}

/* Responsive */
@media(max-width:900px){
  .wa-kpi-grid {
    grid-template-columns: repeat(2,1fr);
  }
  .wa-life-arrow {
    display: none;
  }
}
/* WhatsApp Analytics Dashboard end  */

/*  whatspp FAQ :start */
/* ================= WHATSAPP FAQ ================= */
.wa-faq {
  padding: 120px 0;
  background: linear-gradient(180deg,#ffffff,#f9fffb);
}

.wa-faq-list {
  max-width: 820px;
  margin: 60px auto 0;
}

/* FAQ ITEM */
.wa-faq-item {
  background: #ffffff;
  border-radius: 16px;
  margin-bottom: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
  overflow: hidden;
  transition: .3s ease;
}

.wa-faq-question {
  padding: 20px 24px;
  font-weight: 800;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-icon {
  font-size: 22px;
  font-weight: 900;
  color: #25D366;
  transition: .3s ease;
}

.wa-faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 24px;
  font-size: .95rem;
  font-weight: 600;
  color: #374151;
  transition: max-height .4s ease, padding .3s ease;
}

/* ACTIVE */
.wa-faq-item.active .wa-faq-answer {
  max-height: 200px;
  padding: 0 24px 20px;
}

.wa-faq-item.active .faq-icon {
  transform: rotate(45deg);
}

/* Hover */
.wa-faq-item:hover {
  transform: translateY(-3px);
}
/* whatsapp FAQ end  */

/* WhatsApp CTA:start */
.wa-final-cta {
  padding: 120px 0;
  background: linear-gradient(135deg,#3a2005,#f18613);
}

.wa-cta-box {
  display: flex;
  gap: 50px;
  align-items: center;
  background: linear-gradient(135deg,#ffffff,#f0fdf9);
  border-radius: 28px;
  padding: 60px;
  box-shadow: 0 40px 120px rgba(0,0,0,.12);
}

/* LEFT */
.wa-cta-left {
  flex: 1;
}

.wa-cta-badge {
  display: inline-block;
  background: rgba(37,211,102,.12);
  color: #065f46;
  font-weight: 800;
  font-size: .75rem;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.wa-cta-left h2 {
  font-size: 2.2rem;
  font-weight: 900;
  margin-bottom: 14px;
}

.wa-cta-left p {
  font-size: 1.05rem;
  color: #374151;
  margin-bottom: 20px;
}

.wa-cta-points {
  list-style: none;
  padding: 0;
  margin-bottom: 28px;
}

.wa-cta-points li {
  font-weight: 700;
  margin-bottom: 8px;
  color: #065f46;
}

.wa-cta-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* RIGHT MOCK */
.wa-cta-right {
  flex: 0 0 320px;
}

.wa-cta-mock {
  background: #ffffff;
  border-radius: 22px;
  padding: 18px;
  box-shadow: 0 20px 60px rgba(0,0,0,.15);
}

.wa-chat-msg {
  padding: 12px 14px;
  border-radius: 14px;
  font-weight: 600;
  font-size: .9rem;
  margin-bottom: 10px;
  max-width: 90%;
}

.wa-chat-msg.bot {
  background: #f0fdf4;
  color: #065f46;
}

.wa-chat-msg.user {
  background: #25D366;
  color: #fff;
  margin-left: auto;
}

.wa-chat-msg.highlight {
  border: 2px solid rgba(37,211,102,.4);
}

/* Responsive */
@media(max-width:900px){
  .wa-cta-box {
    flex-direction: column;
    padding: 40px 30px;
  }
  .wa-cta-right {
    width: 100%;
  }
}
/*  WhatsApp CTA end  */
/* WAHTAPP PAGE END  */

/* RCS page :start */

/*  hero section :start */
.rcs-hero {
  padding: 100px 0;
  background: linear-gradient(180deg, #f7fbff, #ffffff);
}

.rcs-hero-wrap {
  display: flex;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}

.rcs-hero-content {
  flex: 1 1 480px;
}

.rcs-badge {
  display: inline-block;
  background: rgba(37, 117, 252, 0.1);
  color: #2575fc;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.rcs-hero-content h1 {
  font-size: clamp(2rem, 3.5vw, 3.1rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 16px;
}

.rcs-subtext {
  font-size: 1.05rem;
  color: #5b677a;
  max-width: 520px;
}

.rcs-points {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.rcs-points li {
  margin: 8px 0;
  font-weight: 600;
  color: #1f2937;
}

.rcs-hero-cta {
  display: flex;
  gap: 14px;
  margin-top: 22px;
  flex-wrap: wrap;
}

/* PHONE */
.rcs-hero-visual {
  flex: 1 1 420px;
  display: flex;
  justify-content: center;
}

.rcs-phone {
  width: 320px;
  background: #fff;
  border-radius: 26px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.18);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.05);
}

.rcs-phone-header {
  background: linear-gradient(90deg, #2575fc, #6a11cb);
  color: #fff;
  font-weight: 800;
  padding: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.verified-dot {
  height: 10px;
  width: 10px;
  background: #22c55e;
  border-radius: 50%;
}

.rcs-screen {
  padding: 14px;
  background: #f3f6fb;
  min-height: 380px;
}

/* MESSAGE UI */
.rcs-msg {
  background: #fff;
  border-radius: 16px;
  padding: 12px;
  margin-bottom: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,.08);
  animation: slideIn .5s ease;
}

.rcs-msg img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 8px;
}

.rcs-actions {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}

.rcs-actions button {
  flex: 1;
  padding: 8px;
  border-radius: 10px;
  border: none;
  background: #2575fc;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}

@keyframes slideIn {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

@media(max-width: 900px){
  .rcs-hero-wrap { flex-direction: column; }
  .rcs-hero-visual { margin-top: 40px; }
}
/* hero section end  */

/* What is RCS :start */
.rcs-what {
  padding: 90px 0;
  background: linear-gradient(180deg, #fffdf8, #ffffff);
}

.rcs-what-wrap {
  display: flex;
  gap: 60px;
  align-items: flex-start;
  flex-wrap: wrap;
}

/* LEFT */
.rcs-what-content {
  flex: 1 1 520px;
}

.rcs-mini-badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(241,134,19,.15);
  color: #f18613;
  font-weight: 700;
  margin-bottom: 14px;
}

.rcs-what-content h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 900;
  margin-bottom: 14px;
  color: #3a2005;
}

.rcs-desc {
  color: #6b4a20;
  font-size: 1.05rem;
  max-width: 560px;
}

.rcs-definition-box {
  margin: 18px 0;
  padding: 16px;
  background: #fff;
  border-left: 4px solid #f18613;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,.06);
  font-weight: 600;
  color: #3a2005;
}

.rcs-feature-list {
  list-style: none;
  padding: 0;
  margin-top: 18px;
}

.rcs-feature-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-weight: 600;
  color: #3a2005;
}

/* DOT COLORS (NO BLUE) */
.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dot.orange { background: #f18613; }
.dot.brown  { background: #3a2005; }
.dot.gold   { background: #ffb86a; }
.dot.dark   { background: #6b4a20; }

/* RIGHT */
.rcs-what-visual {
  flex: 1 1 360px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.rcs-step-card {
  background: #ffffff;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
  border-left: 4px solid transparent;
  transition: .3s ease;
}

.rcs-step-card.active {
  border-left-color: #f18613;
  transform: translateX(6px);
}

.rcs-step-card h4 {
  margin-bottom: 6px;
  font-weight: 800;
  color: #3a2005;
}

.rcs-step-card p {
  color: #6b4a20;
  font-size: .95rem;
}

.step-num {
  font-size: .8rem;
  font-weight: 800;
  color: #f18613;
}

/* Responsive */
@media(max-width: 900px){
  .rcs-what-wrap { flex-direction: column; }
}
/* What is RCS end  */

/* RCS vs SMS vs WhatsApp (Clean Visual Comparison):start */
.rcs-compare {
  padding: 100px 0;
  background: linear-gradient(180deg,#fffdf8,#ffffff);
}

.compare-cards {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 26px;
  margin-top: 50px;
}

/* CARD BASE */
.compare-card {
  background: #fff;
  border-radius: 20px;
  padding: 28px 26px;
  box-shadow: 0 14px 40px rgba(0,0,0,.08);
  border: 1px solid rgba(58,32,5,.08);
  text-align: center;
  transition: .35s ease;
}

.compare-card:hover {
  transform: translateY(-8px);
}

/* FEATURED RCS */
.compare-card.featured {
  border: 2px solid #f18613;
  box-shadow: 0 18px 55px rgba(241,134,19,.25);
  transform: scale(1.03);
}

/* HEADINGS */
.compare-card h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: #3a2005;
  margin-bottom: 6px;
}

.compare-tag {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(58,32,5,.1);
  color: #3a2005;
  margin-bottom: 18px;
}

.compare-tag.highlight {
  background: linear-gradient(90deg,#f18613,#ffb86a);
  color: #fff;
}

/* LIST */
.compare-card ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.compare-card li {
  margin: 10px 0;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
}

/* ICON STATES */
.compare-card li::before {
  content: "✔";
  font-weight: 900;
}

.compare-card li.no::before {
  content: "✖";
  color: #9ca3af;
}

.compare-card li.partial::before {
  content: "◐";
  color: #f18613;
}

/* FOOT */
.compare-foot {
  margin-top: 16px;
  font-weight: 700;
  color: #f18613;
}

/* RESPONSIVE */
@media(max-width: 900px){
  .compare-cards {
    grid-template-columns: 1fr;
  }
  .compare-card.featured {
    transform: none;
  }
}
/* RCS vs SMS vs WhatsApp (Clean Visual Comparison)end  */

/* RCS Message Types:start */
.rcs-types {
  padding: 100px 0;
  background: linear-gradient(180deg,#fffdf8,#ffffff);
}

.rcs-type-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 30px;
  margin-top: 50px;
}

/* CARD */
.rcs-type-card {
  background: #fff;
  border-radius: 22px;
  padding: 32px 28px;
  box-shadow: 0 14px 45px rgba(0,0,0,.08);
  border: 1px solid rgba(58,32,5,.08);
  transition: .35s ease;
}

.rcs-type-card:hover {
  transform: translateY(-10px);
}

/* FEATURED */
.rcs-type-card.featured {
  border: 2px solid #f18613;
  box-shadow: 0 18px 60px rgba(241,134,19,.25);
}

/* ICON */
.rcs-type-icon {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  margin-bottom: 18px;
  color: #fff;
}

.rcs-type-icon.text {
  background: linear-gradient(135deg,#3a2005,#6b4a20);
}

.rcs-type-icon.media {
  background: linear-gradient(135deg,#f18613,#ffb86a);
}

.rcs-type-icon.carousel {
  background: linear-gradient(135deg,#8b5a2b,#f18613);
}

/* TEXT */
.rcs-type-card h3 {
  font-size: 1.35rem;
  font-weight: 800;
  color: #3a2005;
  margin-bottom: 8px;
}

.rcs-desc {
  color: #6b4a20;
  margin-bottom: 16px;
  font-weight: 500;
}

/* LIST */
.rcs-type-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
}

.rcs-type-card li {
  margin: 8px 0;
  font-weight: 600;
  position: relative;
  padding-left: 20px;
}

.rcs-type-card li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #f18613;
  font-weight: 900;
}

/* EXAMPLE */
.rcs-example {
  background: #fff8ef;
  border-left: 4px solid #f18613;
  padding: 12px 14px;
  border-radius: 10px;
  font-size: .9rem;
  font-weight: 600;
}

/* RESPONSIVE */
@media(max-width: 992px){
  .rcs-type-grid {
    grid-template-columns: 1fr;
  }
}
/* RCS Message Types end  */

/* Live RCS Message Simulator:start */
.rcs-simulator-v2 {
  padding: 100px 0;
  background: linear-gradient(180deg,#fffdf8,#ffffff);
}

.rcs-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  margin-top: 50px;
}

/* LEFT CONSOLE */
.rcs-console {
  background: #0f0f0f;
  border-radius: 20px;
  padding: 26px;
  color: #f8f8f8;
  box-shadow: 0 18px 60px rgba(0,0,0,.35);
}

.rcs-buttons {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
}

.rcs-buttons button {
  flex: 1;
  padding: 12px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  font-weight: 700;
  background: linear-gradient(90deg,#f18613,#ffb86a);
  color: #fff;
}

.rcs-api-box {
  background: #000;
  border-radius: 14px;
  padding: 16px;
  margin-top: 10px;
}

.api-title {
  font-weight: 800;
  color: #f18613;
  margin-bottom: 8px;
}

#rcsApi {
  font-size: .9rem;
  line-height: 1.6;
  color: #e7c08a;
}

.rcs-status {
  margin-top: 16px;
  font-weight: 600;
  color: #ffd8a8;
}

/* RIGHT PREVIEW */
.rcs-preview {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 20px 55px rgba(0,0,0,.15);
  overflow: hidden;
  border: 3px solid rgba(241,134,19,.25);
}

.rcs-preview-header {
  background: linear-gradient(90deg,#f18613,#ffb86a);
  color: #fff;
  font-weight: 800;
  padding: 14px;
}

.rcs-preview-body {
  padding: 16px;
  min-height: 300px;
  background: #fff8ef;
}

.rcs-empty {
  text-align: center;
  margin-top: 100px;
  font-weight: 600;
  color: #8b6a44;
}

/* MESSAGE BLOCKS */
.rcs-msg {
  background: #fff;
  border-radius: 14px;
  padding: 14px;
  margin-bottom: 14px;
  box-shadow: 0 6px 18px rgba(0,0,0,.1);
}

.rcs-msg strong {
  color: #3a2005;
}

.rcs-cta {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.rcs-cta button {
  flex: 1;
  padding: 8px;
  border-radius: 8px;
  border: none;
  background: #f18613;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}

.rcs-carousel {
  display: flex;
  gap: 12px;
  overflow-x: auto;
}

.rcs-card {
  min-width: 140px;
  background: #fff;
  border-radius: 12px;
  padding: 10px;
  box-shadow: 0 6px 20px rgba(0,0,0,.12);
}

/* RESPONSIVE */
@media(max-width: 900px){
  .rcs-layout {
    grid-template-columns: 1fr;
  }
}
/* RCS CAROUSEL */
.rcs-carousel {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding: 6px 2px 10px;
  scroll-snap-type: x mandatory;
}

.rcs-carousel::-webkit-scrollbar {
  height: 6px;
}

.rcs-carousel::-webkit-scrollbar-thumb {
  background: rgba(241,134,19,.4);
  border-radius: 999px;
}

/* CARD */
.rcs-card {
  min-width: 220px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,.15);
  overflow: hidden;
  scroll-snap-align: start;
  transition: transform .3s ease;
}

.rcs-card:hover {
  transform: translateY(-6px);
}

.rcs-card img {
  width: 100%;
  height: 120px;
  object-fit: cover;
}

/* BODY */
.rcs-card-body {
  padding: 12px;
}

.rcs-card-body h4 {
  font-size: .95rem;
  font-weight: 800;
  color: #3a2005;
  margin-bottom: 4px;
}

.rcs-card-body p {
  font-size: .85rem;
  color: #6b4a20;
  margin-bottom: 6px;
}

.rcs-price {
  display: block;
  font-weight: 700;
  color: #f18613;
  margin-bottom: 8px;
}

.rcs-card-body button {
  width: 100%;
  padding: 8px;
  border-radius: 8px;
  border: none;
  background: linear-gradient(90deg,#f18613,#ffb86a);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}
/* ===== RCS Simulator – Mobile Fix ===== */
@media (max-width: 768px) {

  .rcs-layout {
    display: block;
  }

  .rcs-console {
    margin-bottom: 24px;
  }

  .rcs-preview {
    width: 100%;
  }

}

/* Live RCS Message Simulator end  */

/* RCS → SMS FALLBACK:start */
.rcs-fallback-tech {
  padding: 110px 0;
  background: linear-gradient(180deg,#fffdf8,#ffffff);
}

/* GRID */
.fallback-tech-grid {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 24px;
  margin: 60px 0;
  flex-wrap: wrap;
}

/* NODE */
.tech-node {
  width: 280px;
  background: #ffffff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 14px 40px rgba(0,0,0,.12);
  opacity: .45;
  transition: .4s ease;
}

.tech-node.active {
  opacity: 1;
}

/* HEADER */
.node-header {
  font-weight: 800;
  color: #3a2005;
  margin-bottom: 12px;
  font-size: 1rem;
}

/* LIST */
.node-list {
  list-style: none;
  padding-left: 0;
  font-size: .85rem;
  color: #6b4a20;
}

.node-list li {
  margin: 6px 0;
}

/* RESULT */
.node-result {
  margin-top: 14px;
  padding: 8px 12px;
  border-radius: 8px;
  font-weight: 800;
  font-size: .8rem;
}

.node-result.fail {
  background: #ffecec;
  color: #a10000;
}

.node-result.warn {
  background: #fff3e0;
  color: #a85a00;
}

.node-result.success {
  background: #e8fff2;
  color: #1f7a4f;
}

/* ARROW */
.tech-arrow {
  font-size: 2rem;
  color: #f18613;
  margin-top: 90px;
}

/* RUNTIME LOG */
.fallback-runtime {
  max-width: 720px;
  margin: 40px auto 0;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 20px 60px rgba(0,0,0,.15);
  padding: 20px;
  text-align: center;
}

.runtime-header {
  font-weight: 800;
  color: #3a2005;
  margin-bottom: 10px;
}

.runtime-body {
  background: #0f0f0f;
  color: #f5f5f5;
  font-family: monospace;
  padding: 16px;
  border-radius: 12px;
  min-height: 120px;
  text-align: left;
  font-size: .85rem;
  margin-bottom: 16px;
}

/* RESPONSIVE */
@media(max-width:900px){
  .tech-arrow { display: none; }
}
/* RCS → SMS FALLBACK end  */

/* RCS USE CASES:start */
.rcs-usecases-v2 {
  padding: 110px 0;
  background: linear-gradient(180deg,#ffffff,#fffdf8);
}

.rcs-usecase-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  margin-top: 50px;
}

/* LEFT LIST */
.rcs-usecase-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.usecase-btn {
  padding: 14px 18px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid rgba(241,134,19,.25);
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  transition: .25s;
}

.usecase-btn.active,
.usecase-btn:hover {
  background: linear-gradient(90deg,#f18613,#ffb86a);
  color: #fff;
}

/* RIGHT PANEL */
.rcs-usecase-panel {
  background: #fff;
  border-radius: 20px;
  padding: 36px;
  box-shadow: 0 22px 60px rgba(0,0,0,.12);
}

.usecase-panel {
  display: none;
  animation: fadeSlide .4s ease;
}

.usecase-panel.active {
  display: block;
}

.usecase-panel h3 {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.usecase-panel p {
  color: #6b4a20;
  margin-bottom: 18px;
}

/* CAPABILITIES */
.rcs-capabilities {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.rcs-capabilities div {
  padding: 6px 14px;
  border-radius: 999px;
  background: #fff7ec;
  border: 1px dashed #f18613;
  font-weight: 700;
  font-size: .85rem;
}

/* OUTCOME */
.rcs-outcome {
  margin-top: 10px;
  font-weight: 800;
  color: #3a2005;
}

@media(max-width:900px){
  .rcs-usecase-layout {
    grid-template-columns: 1fr;
  }
}
/* RCS USE CASES end  */

/* RCS Analytics & Engagement Metrics:start */
.rcs-analytics {
  padding: 110px 0;
  background: linear-gradient(180deg,#ffffff,#fffdf8);
}

/* KPI GRID */
.rcs-kpi-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 22px;
  margin-top: 50px;
}

.kpi-card {
  background: #fff;
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 16px 45px rgba(0,0,0,.12);
}

.kpi-label {
  font-size: .8rem;
  font-weight: 700;
  color: #6b4a20;
}

.kpi-card h3 {
  font-size: 2rem;
  font-weight: 900;
  color: #f18613;
  margin: 6px 0;
}

.kpi-card p {
  font-size: .9rem;
  color: #3a2005;
}

/* TIMELINE */
.rcs-interaction-timeline {
  margin-top: 70px;
  background: #fff;
  border-radius: 22px;
  padding: 36px;
  box-shadow: 0 22px 60px rgba(0,0,0,.15);
  text-align: center;
}

.timeline-head {
  font-weight: 800;
  font-size: 1.2rem;
  color: #3a2005;
  margin-bottom: 30px;
}

.timeline-track {
  display: grid;
  grid-template-columns: repeat(5,1fr);
  gap: 18px;
  margin-bottom: 30px;
}

.timeline-step {
  background: #fff7ec;
  border-radius: 14px;
  padding: 16px;
  opacity: .4;
  transition: .4s ease;
}

.timeline-step.active {
  opacity: 1;
  background: linear-gradient(180deg,#fff7ec,#ffffff);
  box-shadow: 0 12px 30px rgba(241,134,19,.25);
}

.step-dot {
  display: block;
  width: 12px;
  height: 12px;
  background: #f18613;
  border-radius: 50%;
  margin: 0 auto 10px;
}

.timeline-step h4 {
  font-size: .95rem;
  font-weight: 800;
  margin-bottom: 6px;
}

.timeline-step p {
  font-size: .8rem;
  color: #6b4a20;
}

/* RESPONSIVE */
@media(max-width:1000px){
  .rcs-kpi-grid { grid-template-columns: repeat(2,1fr); }
  .timeline-track { grid-template-columns: 1fr; }
}
/* RCS Analytics & Engagement Metrics end  */

/* RCS Pricing & Billing Model:start */
.rcs-pricing {
  padding: 110px 0;
  background: linear-gradient(180deg,#ffffff,#fff8ef);
}

/* FLOW */
.rcs-pricing-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  margin-top: 50px;
  flex-wrap: wrap;
}

.pricing-step {
  background: #fff;
  border-radius: 18px;
  padding: 26px;
  width: 260px;
  box-shadow: 0 18px 50px rgba(0,0,0,.12);
}

.step-badge {
  display: inline-block;
  background: #f18613;
  color: #fff;
  font-weight: 800;
  font-size: .75rem;
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
}

.pricing-step h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: #3a2005;
  margin-bottom: 8px;
}

.pricing-step p {
  font-size: .9rem;
  color: #6b4a20;
}

.pricing-arrow {
  font-size: 1.6rem;
  font-weight: 900;
  color: #f18613;
}

/* TABLE */
.rcs-pricing-table {
  margin-top: 70px;
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 22px 60px rgba(0,0,0,.14);
  overflow: hidden;
}

.pricing-table-head {
  padding: 18px;
  font-weight: 800;
  background: linear-gradient(90deg,#f18613,#ffb86a);
  color: #fff;
  text-align: center;
}

.pricing-table-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
}

.table-cell {
  padding: 16px;
  border-bottom: 1px solid #f2e3d1;
  font-size: .9rem;
}

.table-cell.head {
  font-weight: 800;
  background: #fff7ec;
}

.table-cell.highlight {
  font-weight: 900;
  color: #f18613;
}

/* NOTES */
.rcs-pricing-notes {
  margin-top: 40px;
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 12px 35px rgba(0,0,0,.1);
}

.rcs-pricing-notes ul {
  list-style: none;
  padding: 0;
}

.rcs-pricing-notes li {
  margin: 8px 0;
  font-weight: 600;
  color: #3a2005;
}

/* RESPONSIVE */
@media(max-width:900px){
  .rcs-pricing-flow { flex-direction: column; }
  .pricing-arrow { display: none; }
  .pricing-table-grid { grid-template-columns: 1fr; }
}
/* RCS Pricing & Billing Model end */

/* RCS ONBOARDING, BRAND VERIFICATION & TEMPLATE APPROVAL:start */
.rcs-onboarding {
  padding: 110px 0;
  background: linear-gradient(180deg,#ffffff,#fffdf8);
}

/* PROCESS FLOW */
.rcs-process {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 22px;
  margin-top: 50px;
  flex-wrap: wrap;
}

.process-step {
  background: #fff;
  border-radius: 20px;
  padding: 26px;
  width: 260px;
  box-shadow: 0 18px 45px rgba(0,0,0,.12);
  opacity: .4;
  transition: .4s ease;
}

.process-step.active {
  opacity: 1;
  box-shadow: 0 22px 60px rgba(241,134,19,.25);
}

.step-icon {
  width: 36px;
  height: 36px;
  background: #f18613;
  color: #fff;
  border-radius: 50%;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.process-step h3 {
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 6px;
  color: #3a2005;
}

.process-step p {
  font-size: .9rem;
  color: #6b4a20;
}

.process-step ul {
  margin-top: 10px;
  padding-left: 16px;
}

.process-step li {
  font-size: .85rem;
  font-weight: 600;
  color: #3a2005;
}

.process-arrow {
  font-size: 1.6rem;
  font-weight: 900;
  color: #f18613;
  align-self: center;
}

/* APPROVAL BOX */
.rcs-approval-box {
  margin-top: 70px;
  background: #fff8ef;
  border-radius: 20px;
  padding: 30px;
}

.rcs-approval-box h3 {
  font-weight: 800;
  margin-bottom: 20px;
}

.approval-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 16px;
}

.approval-grid div {
  background: #fff;
  border-radius: 14px;
  padding: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,.1);
}

.approval-grid strong {
  display: block;
  font-size: .85rem;
}

.approval-grid span {
  font-weight: 800;
  color: #f18613;
}

/* CTA */
.rcs-onboarding-cta {
  margin-top: 50px;
  text-align: center;
}

.cta-note {
  margin-top: 10px;
  font-size: .9rem;
  color: #6b4a20;
}

/* RESPONSIVE */
@media(max-width:1000px){
  .process-arrow { display:none; }
  .approval-grid { grid-template-columns: 1fr 1fr; }
}
/* RCS ONBOARDING, BRAND VERIFICATION & TEMPLATE APPROVAL end */

/* RCS FAQs:start */
.rcs-faq {
  padding: 110px 0;
  background: linear-gradient(180deg,#ffffff,#fffdf8);
}

.faq-list {
  max-width: 900px;
  margin: 50px auto 0;
}

.faq-item {
  background: #fff;
  border-radius: 16px;
  margin-bottom: 16px;
  box-shadow: 0 12px 35px rgba(0,0,0,.12);
  overflow: hidden;
}

.faq-question {
  padding: 18px 22px;
  font-weight: 800;
  color: #3a2005;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question span {
  font-size: 1.3rem;
  color: #f18613;
  transition: transform .3s ease;
}

.faq-item.active .faq-question span {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 22px;
  max-height: 0;
  overflow: hidden;
  font-size: .95rem;
  color: #6b4a20;
  line-height: 1.6;
  transition: max-height .4s ease, padding .4s ease;
}

.faq-item.active .faq-answer {
  padding: 0 22px 18px;
  max-height: 300px;
}
/* RCS FAQs end */

/* RCS CTA :start */
.rcs-final-cta {
  padding: 120px 0;
  background: linear-gradient(180deg,#fffdf8,#fff6ea);
}

.cta-card {
  max-width: 900px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 28px;
  padding: 60px 40px;
  text-align: center;
  box-shadow: 0 30px 90px rgba(0,0,0,.18);
  position: relative;
  overflow: hidden;
}

/* subtle glow */
.cta-card::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle, rgba(241,134,19,.18), transparent 65%);
  z-index: 0;
}

.cta-card * {
  position: relative;
  z-index: 1;
}

.cta-badge {
  display: inline-block;
  padding: 8px 16px;
  background: #fff1df;
  color: #f18613;
  font-weight: 800;
  border-radius: 999px;
  margin-bottom: 20px;
  font-size: .85rem;
}

.cta-card h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 900;
  margin-bottom: 14px;
  color: #3a2005;
}

.cta-subtext {
  max-width: 700px;
  margin: 0 auto 30px;
  font-size: 1.05rem;
  color: #6b4a20;
  line-height: 1.6;
}

.cta-points {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 12px;
  max-width: 560px;
  margin: 0 auto 36px;
  font-weight: 700;
  color: #3a2005;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.cta-note {
  margin-top: 18px;
  font-size: .9rem;
  color: #6b4a20;
}

/* Responsive */
@media(max-width:768px){
  .cta-points {
    grid-template-columns: 1fr;
  }
  .cta-card {
    padding: 50px 26px;
  }
}
/* RCS CTA end */
/* RCS page end  */

/* EMAIL PAGE START  */
/*  Hero section start */
.email-hero {
  padding: 120px 0 100px;
  background: linear-gradient(180deg,#fffdf8,#ffffff);
}

.email-hero-wrap {
  display: flex;
  gap: 60px;
  align-items: center;
  flex-wrap: wrap;
}

/* LEFT */
.email-hero-content {
  flex: 1 1 520px;
}

.email-badge {
  display: inline-block;
  padding: 8px 16px;
  background: #fff1df;
  color: #f18613;
  font-weight: 800;
  border-radius: 999px;
  margin-bottom: 16px;
  font-size: .85rem;
}

.email-hero-content h1 {
  font-size: clamp(2rem,3.5vw,2.8rem);
  font-weight: 900;
  color: #3a2005;
  line-height: 1.1;
}

.email-subtext {
  margin: 18px 0 24px;
  font-size: 1.05rem;
  color: #6b4a20;
  max-width: 520px;
}

.email-points {
  list-style: none;
  padding-left: 0;
  margin-bottom: 30px;
}

.email-points li {
  font-weight: 700;
  margin: 8px 0;
  color: #3a2005;
}

.email-hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* RIGHT VISUAL */
.email-hero-visual {
  flex: 1 1 420px;
  display: flex;
  justify-content: center;
}

.email-client {
  width: 360px;
  background: #ffffff;
  border-radius: 22px;
  box-shadow: 0 30px 80px rgba(0,0,0,.18);
  overflow: hidden;
  animation: floatEmail 6s ease-in-out infinite;
}

@keyframes floatEmail {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.email-header {
  height: 42px;
  background: #f7f1ea;
  display: flex;
  gap: 8px;
  align-items: center;
  padding: 0 14px;
}

.email-header .dot {
  width: 10px;
  height: 10px;
  background: #d4b08c;
  border-radius: 50%;
}

.email-body {
  padding: 18px;
}

.email-meta {
  font-size: .85rem;
  color: #6b4a20;
  margin-bottom: 14px;
}

.email-card {
  background: #fff8ef;
  border-radius: 16px;
  padding: 20px;
}

.email-card h3 {
  margin-bottom: 8px;
  font-weight: 800;
  color: #3a2005;
}

.otp-box {
  margin: 14px 0;
  padding: 14px;
  background: #ffffff;
  border-radius: 12px;
  font-size: 1.6rem;
  font-weight: 900;
  letter-spacing: 3px;
  color: #f18613;
  text-align: center;
}

.email-footer-note {
  font-size: .85rem;
  color: #6b4a20;
}

.email-status {
  margin-top: 12px;
  font-size: .8rem;
  font-weight: 700;
  color: #3a2005;
  text-align: center;
}

/* RESPONSIVE */
@media(max-width:900px){
  .email-hero-wrap { flex-direction: column; }
  .email-hero-visual { order: -1; }
}
/* Hero section end */

/* WHAT IS EMAIL SERVICE SECTION start */
.email-what {
  padding: 110px 0;
  background: linear-gradient(180deg,#ffffff,#fffdf8);
}

.email-what-grid {
  display: flex;
  gap: 60px;
  align-items: center;
  margin-top: 50px;
  flex-wrap: wrap;
}

/* LEFT */
.email-what-content {
  flex: 1 1 520px;
  font-size: 1.02rem;
  color: #6b4a20;
}

.email-what-content p {
  margin-bottom: 16px;
  line-height: 1.6;
}

.email-what-points {
  list-style: none;
  padding-left: 0;
  margin-top: 20px;
}

.email-what-points li {
  font-weight: 700;
  margin: 8px 0;
  color: #3a2005;
}

/* RIGHT */
.email-what-visual {
  flex: 1 1 420px;
  display: flex;
  justify-content: center;
}

.email-flow {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  background: #fff8ef;
  padding: 22px;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0,0,0,.15);
}

.flow-step {
  background: #ffffff;
  padding: 14px 18px;
  border-radius: 14px;
  font-weight: 800;
  color: #3a2005;
  box-shadow: 0 10px 30px rgba(0,0,0,.12);
}

.flow-step.highlight {
  background: linear-gradient(90deg,#f18613,#ffb86a);
  color: #fff;
}

.flow-arrow {
  font-size: 1.2rem;
  font-weight: 900;
  color: #f18613;
}

/* RESPONSIVE */
@media(max-width:900px){
  .email-what-grid { flex-direction: column; }
}
/* WHAT IS EMAIL SERVICE SECTION end */

/* Types of Email Messaging start */
.email-types {
  padding: 110px 0;
  background: linear-gradient(180deg,#fffdf8,#ffffff);
}

/* TABS */
.email-tabs {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin: 30px 0 40px;
  flex-wrap: wrap;
}

.email-tab {
  padding: 10px 22px;
  border-radius: 999px;
  border: 1px solid rgba(241,134,19,.35);
  background: #fff;
  font-weight: 800;
  cursor: pointer;
}

.email-tab.active {
  background: linear-gradient(90deg,#f18613,#ffb86a);
  color: #fff;
}

/* PANELS */
.email-panel {
  display: none;
  animation: fadeUp .4s ease;
}

.email-panel.active {
  display: block;
}

@keyframes fadeUp {
  from { opacity:0; transform:translateY(18px); }
  to { opacity:1; transform:translateY(0); }
}

/* GRID */
.email-grid {
  display: flex;
  gap: 50px;
  align-items: center;
  flex-wrap: wrap;
}

.email-info {
  flex: 1 1 420px;
}

.email-info h3 {
  font-weight: 900;
  margin-bottom: 10px;
}

.email-info p {
  color: #6b4a20;
}

.email-info ul {
  list-style: none;
  padding-left: 0;
  margin-top: 14px;
}

.email-info li {
  font-weight: 700;
  margin: 6px 0;
  color: #3a2005;
}

/* EMAIL PREVIEW */
.email-preview {
  flex: 1 1 360px;
  display: flex;
  justify-content: center;
}

.email-mock {
  width: 320px;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(0,0,0,.15);
  overflow: hidden;
}

.email-mock-head {
  background: #f7f1ea;
  padding: 12px;
  font-weight: 800;
}

.email-mock-body {
  padding: 18px;
  font-size: .95rem;
}

.email-tag {
  display: inline-block;
  margin-top: 12px;
  padding: 6px 12px;
  background: #fff1df;
  border-radius: 999px;
  font-weight: 800;
  color: #f18613;
  font-size: .75rem;
}

.email-tag.promo { background:#ffe8d6; }
.email-tag.alert { background:#ffd9c9; }
.email-tag.trigger { background:#fff0e0; }

.otp-box {
  margin: 10px 0;
  padding: 12px;
  background: #fff8ef;
  border-radius: 12px;
  font-size: 1.5rem;
  font-weight: 900;
  color: #f18613;
  text-align: center;
}

/* RESPONSIVE */
@media(max-width:900px){
  .email-grid { flex-direction: column; }
}
/* Types of Email Messaging end */

/*Live Email Preview Simulator start */
.email-simulator {
  padding: 110px 0;
  background: linear-gradient(180deg,#ffffff,#fffdf8);
}

.simulator-wrap {
  display: flex;
  gap: 50px;
  margin-top: 50px;
  align-items: flex-start;
  flex-wrap: wrap;
}

/* CONTROLS */
.email-controls {
  flex: 1 1 280px;
}

.email-controls h3 {
  font-weight: 900;
  margin-bottom: 16px;
}

.sim-btn {
  width: 100%;
  padding: 12px;
  border-radius: 14px;
  border: 1px solid rgba(241,134,19,.4);
  background: #fff;
  font-weight: 800;
  margin-bottom: 10px;
  cursor: pointer;
}

.sim-btn.active {
  background: linear-gradient(90deg,#f18613,#ffb86a);
  color: #fff;
}

.delivery-status {
  margin-top: 20px;
  font-size: .85rem;
  font-weight: 700;
  color: #3a2005;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* EMAIL CLIENT */
.email-client-sim {
  flex: 1 1 420px;
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 30px 80px rgba(0,0,0,.18);
  overflow: hidden;
}

.email-client-head {
  height: 42px;
  background: #f7f1ea;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 14px;
}

.email-client-head span {
  width: 10px;
  height: 10px;
  background: #d4b08c;
  border-radius: 50%;
}

.email-client-body {
  padding: 18px;
}

.email-meta {
  font-size: .85rem;
  color: #6b4a20;
  margin-bottom: 16px;
}

.email-content h4 {
  font-weight: 900;
  margin-bottom: 8px;
}

.email-content p {
  font-size: .95rem;
  color: #6b4a20;
}

.otp-box {
  margin: 14px 0;
  padding: 14px;
  background: #fff8ef;
  border-radius: 12px;
  font-size: 1.6rem;
  font-weight: 900;
  color: #f18613;
  text-align: center;
  letter-spacing: 3px;
}

.email-cta {
  margin-top: 14px;
  padding: 10px;
  background: linear-gradient(90deg,#f18613,#ffb86a);
  color: #fff;
  border-radius: 12px;
  font-weight: 800;
  text-align: center;
}

.email-footer {
  margin-top: 18px;
  font-size: .8rem;
  opacity: .6;
  text-align: center;
}

/* RESPONSIVE */
@media(max-width:900px){
  .simulator-wrap { flex-direction: column; }
}
/* ================================
   EMAIL SIMULATOR – BACKGROUND ENHANCEMENT
================================ */

.email-simulator-bg {
  position: relative;
  background:
    radial-gradient(
      circle at top right,
      rgba(241,134,19,0.08),
      transparent 60%
    ),
    linear-gradient(180deg, #fff7ec, #ffffff);
  overflow: hidden;
}

/* subtle grid pattern */
.email-simulator-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(
      rgba(241,134,19,0.05) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(241,134,19,0.05) 1px,
      transparent 1px
    );
  background-size: 28px 28px;
  pointer-events: none;
}

/* keep content above pattern */
.email-simulator-bg .container {
  position: relative;
  z-index: 1;
}

/* enhance email client card */
.email-client-sim {
  background: #ffffff;
  border: 1px solid rgba(241,134,19,.15);
  box-shadow:
    0 40px 90px rgba(0,0,0,.18),
    inset 0 0 0 1px rgba(255,255,255,.6);
}

/* enhance control panel */
.email-controls {
  background: #fff;
  padding: 22px;
  border-radius: 18px;
  border: 1px solid rgba(241,134,19,.18);
  box-shadow: 0 18px 50px rgba(0,0,0,.12);
}
.email-simulator-bg {
  animation: emailSectionFade 0.8s ease both;
}

@keyframes emailSectionFade {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Live Email Preview Simulator end */

/* EMAIL DELIVERY FLOW start */
.email-delivery-flow-clean {
  padding: 110px 0;
  background: #ffffff;
}

.delivery-steps {
  max-width: 800px;
  margin: 60px auto 0;
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.delivery-step {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.step-num {
  font-weight: 900;
  font-size: .9rem;
  color: #f18613;
  min-width: 32px;
}

.delivery-step h4 {
  margin: 0 0 4px;
  font-weight: 800;
  color: #3a2005;
}

.delivery-step p {
  margin: 0;
  font-size: .95rem;
  color: #6b4a20;
  line-height: 1.6;
}

.delivery-note {
  margin-top: 40px;
  text-align: center;
  font-weight: 700;
  font-size: .95rem;
  color: #6b4a20;
}
/*EMAIL DELIVERY FLOW end */

/*INBOX PLACEMENT & DELIVERABILITY start */
.email-deliverability-sim {
  padding: 120px 0;
  background: linear-gradient(180deg,#fff7ec,#ffffff);
}

.deliverability-wrap {
  margin-top: 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.deliverability-controls {
  background: #fff;
  padding: 28px;
  border-radius: 18px;
  box-shadow: 0 30px 80px rgba(0,0,0,.12);
}

.deliverability-controls h4 {
  margin-bottom: 18px;
  font-weight: 800;
  color: #3a2005;
}

.deliverability-controls label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: #6b4a20;
  margin-bottom: 12px;
  cursor: pointer;
}

.deliverability-controls input {
  accent-color: #f18613;
}

.deliverability-result {
  text-align: center;
}

.placement-meter {
  margin-bottom: 18px;
}

.meter-bar {
  height: 14px;
  background: #f1f1f1;
  border-radius: 999px;
  overflow: hidden;
}

.meter-bar span {
  display: block;
  height: 100%;
  width: 65%;
  background: linear-gradient(90deg,#f18613,#ffb86a);
  transition: width .4s ease;
}

.meter-value {
  margin-top: 12px;
  font-weight: 800;
  color: #3a2005;
}

.placement-status {
  margin-top: 16px;
  font-size: 1.05rem;
  font-weight: 800;
  color: #2e7d32;
}

.placement-note {
  margin-top: 10px;
  font-size: .9rem;
  font-weight: 600;
  color: #6b4a20;
}

@media(max-width:768px){
  .deliverability-wrap {
    grid-template-columns: 1fr;
  }
}
/* INBOX PLACEMENT & DELIVERABILITY end */

/* Email Analytics & Engagement  start */
.email-analytics-fixed {
  padding: 110px 0;
  background: linear-gradient(180deg,#fff7ec,#ffffff);
}

.email-kpis {
  margin: 50px auto 40px;
  max-width: 900px;
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(140px,1fr));
  gap: 18px;
}

.kpi {
  background:#fff;
  border-radius:14px;
  padding:18px;
  text-align:center;
  box-shadow:0 14px 40px rgba(0,0,0,.12);
}

.kpi span {
  display:block;
  font-weight:700;
  font-size:.85rem;
  color:#6b4a20;
}

.kpi strong {
  font-size:1.5rem;
  color:#3a2005;
}

.email-distribution {
  max-width: 900px;
  margin: 0 auto;
}

.dist-labels {
  display:flex;
  justify-content:space-between;
  font-weight:700;
  font-size:.85rem;
  color:#6b4a20;
  margin-bottom:8px;
}

.dist-bar {
  height:16px;
  background:#ececec;
  border-radius:999px;
  overflow:hidden;
  display:flex;
}

.dist {
  height:100%;
  transition:width .6s ease;
}

.dist.open {
  background:linear-gradient(90deg,#f18613,#ffb86a);
}

.dist.click {
  background:#d97706;
}

.dist.bounce {
  background:#b45309;
}

.analytics-footnote {
  margin-top:18px;
  text-align:center;
  font-weight:700;
  font-size:.9rem;
  color:#6b4a20;
}
/* Email Analytics & Engagement end */

/* Email API & SMTP Integration start */
.email-api-section {
  padding: 110px 0;
  background: #fffaf3;
}

.email-api-grid {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(320px,1fr));
  gap: 30px;
}

.email-api-card {
  background: #fff;
  border-radius: 18px;
  padding: 26px;
  box-shadow: 0 18px 45px rgba(0,0,0,.12);
}

.email-api-card h3 {
  margin-bottom: 8px;
}

.code-block {
  background: #121212;
  color: #ffb86a;
  padding: 16px;
  border-radius: 12px;
  font-size: .85rem;
  margin: 16px 0;
}

.email-api-card ul {
  list-style: none;
  padding: 0;
}

.email-api-card li {
  font-weight: 600;
  margin: 6px 0;
}

.email-api-flow {
  margin-top: 50px;
  display: flex;
  justify-content: center;
  gap: 12px;
  font-weight: 700;
  flex-wrap: wrap;
}
/* Email API & SMTP Integration end */

/*  Email Security & Compliance start */
.email-security-section {
  padding: 110px 0;
  background: linear-gradient(180deg,#fffdf8,#ffffff);
}

.security-grid {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(260px,1fr));
  gap: 26px;
}

.security-card {
  background: #fff;
  padding: 26px;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(0,0,0,.1);
}

.security-card h3 {
  margin-bottom: 12px;
  font-size: 1.1rem;
}

.security-card ul {
  list-style: none;
  padding: 0;
}

.security-card li {
  font-weight: 600;
  margin: 8px 0;
  color: #3a2005;
}

.security-flow {
  margin-top: 45px;
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  font-weight: 700;
  color: #6b4a20;
}
/*Email Security & Compliance  end */

/* Email Pricing & Billing start */
.email-pricing {
  padding: 110px 0;
  background: #fff8ef;
}

.pricing-grid {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(260px,1fr));
  gap: 26px;
}

.price-card {
  background: #fff;
  border-radius: 18px;
  padding: 28px;
  text-align: center;
  box-shadow: 0 18px 40px rgba(0,0,0,.12);
}

.price-card.featured {
  border: 2px solid #f18613;
  transform: translateY(-6px);
}

.price {
  font-size: 1.8rem;
  font-weight: 800;
  margin: 12px 0;
}

.price span {
  font-size: .9rem;
  font-weight: 600;
}

.price-card ul {
  list-style: none;
  padding: 0;
  margin: 16px 0;
}

.price-card li {
  margin: 8px 0;
  font-weight: 600;
}

.billing-note {
  margin-top: 35px;
  text-align: center;
  font-weight: 700;
  color: #6b4a20;
}
/* Email Pricing & Billing end */

/* Email Use Cases by Industry start */
.email-usecases {
  padding: 110px 0;
  background: linear-gradient(180deg,#ffffff,#fffdf8);
}

/* SCROLL */
.usecase-scroll {
  overflow-x: auto;
  padding-bottom: 20px;
  scroll-behavior: smooth;
}

.usecase-scroll::-webkit-scrollbar {
  height: 6px;
}
.usecase-scroll::-webkit-scrollbar-thumb {
  background: #f18613;
  border-radius: 6px;
}

.usecase-track {
  display: flex;
  gap: 22px;
  width: max-content;
  padding: 10px 4px;
}

/* CARD */
.usecase-card {
  min-width: 260px;
  background: #fff;
  padding: 26px;
  border-radius: 18px;
  box-shadow: 0 16px 36px rgba(0,0,0,.1);
  transition: transform .3s ease, box-shadow .3s ease;
}

.usecase-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 46px rgba(0,0,0,.14);
}

.usecase-card h3 {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.usecase-card ul {
  list-style: none;
  padding: 0;
}

.usecase-card li {
  margin: 8px 0;
  font-weight: 600;
  color: #5a4634;
}
/*Email Use Cases by Industry end */

/* FAQ :start */
.email-faq-pro {
  padding: 120px 0;
  background: linear-gradient(180deg,#fffdf8,#ffffff);
}

.faq-pro-grid {
  max-width: 900px;
  margin: 60px auto 0;
  display: grid;
  gap: 18px;
}

.faq-pro-item {
  background: #ffffff;
  border-radius: 18px;
  padding: 22px 26px;
  box-shadow: 0 16px 36px rgba(0,0,0,.08);
  cursor: pointer;
  transition: box-shadow .3s ease, transform .3s ease;
}

.faq-pro-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 44px rgba(0,0,0,.12);
}

.faq-pro-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-pro-q h4 {
  font-size: 1.05rem;
  font-weight: 800;
  margin: 0;
  color: #3a2005;
}

.toggle {
  font-size: 1.4rem;
  font-weight: 800;
  color: #f18613;
  transition: transform .3s ease;
}

.faq-pro-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
  margin-top: 12px;
  font-weight: 600;
  line-height: 1.65;
  color: #6b4a20;
}

.faq-pro-item.active .faq-pro-a {
  max-height: 260px;
}

.faq-pro-item.active .toggle {
  transform: rotate(45deg);
}
/* FAQ end */

/* Final Email CTA :start */
.email-final-cta {
  padding: 120px 20px;
  background: linear-gradient(135deg,#3a2005,#f18613);
  color: #fff;
  text-align: center;
}

.cta-inner {
  max-width: 820px;
  margin: 0 auto;
}

.email-final-cta h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 14px;
}

.email-final-cta p {
  font-size: 1.05rem;
  opacity: 0.95;
  margin-bottom: 26px;
  line-height: 1.6;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.cta-trust {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  font-weight: 700;
  font-size: 0.9rem;
  opacity: 0.9;
}

/* Final Email CTA end */
/* EMAIL PAGE END  */

/* About us page start  */
/* Hero section start  */
/* ================= CONECSY ABOUT HERO ================= */
.cx-about-hero {
  background: linear-gradient(180deg, #0b0f14 0%, #121821 100%);
  color: #ffffff;
  padding: 110px 0 90px;
}

/* Eyebrow */
.cx-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #ff9f1c;
  margin-bottom: 18px;
}

/* Heading */
.cx-hero-title {
  font-size: clamp(2.6rem, 4vw, 3.8rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 22px;
}

/* Accent text */
.cx-accent {
  background: linear-gradient(90deg, #ff9f1c, #f77f00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Description */
.cx-hero-desc {
  font-size: 1.08rem;
  line-height: 1.85;
  color: #b8c0cc;
  max-width: 640px;
}

/* CTA */
.cx-hero-actions {
  display: flex;
  gap: 18px;
  margin-top: 36px;
  flex-wrap: wrap;
}

/* Outline button */
.btn-outline {
  padding: 14px 30px;
  border-radius: 10px;
  border: 1px solid rgba(255,159,28,.45);
  color: #ff9f1c;
  font-weight: 600;
  text-decoration: none;
  transition: all .3s ease;
}

.btn-outline:hover {
  background: rgba(255,159,28,.12);
  color: #ffffff;
}

/* Primary button */
.btn-primary-lg {
  background: linear-gradient(135deg, #ff9f1c, #f77f00);
  border: none;
  transition: transform .2s ease, box-shadow .2s ease;
}

.btn-primary-lg:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(247,127,0,.35);
}

.cx-hero-image-wrap {
  max-width: 520px;
}

.cx-hero-image {
  width: 100%;
  height: auto;
  opacity: 0.95;
  transform: translateY(10px);
}
/* Hero section end  */

/* COMPANY SNAPSHOT start  */
.cx-snapshot {
  background: #0b0f14;
  padding: 90px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.cx-snapshot-title {
  font-size: clamp(2rem, 3vw, 2.6rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 12px;
}

.cx-snapshot-sub {
  font-size: 1.05rem;
  color: #b8c0cc;
  line-height: 1.7;
}

/* Metric Card */
.cx-metric-card {
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.03),
    rgba(255,255,255,0.01)
  );
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  padding: 34px 20px;
  text-align: center;
  height: 100%;
  transition: transform .25s ease, border-color .25s ease;
}

.cx-metric-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255,159,28,0.45);
}

/* Metric Value */
.cx-metric-value {
  font-size: 2.4rem;
  font-weight: 800;
  color: #ff9f1c;
  margin-bottom: 8px;
}

/* Metric Label */
.cx-metric-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: #cfd6e2;
  letter-spacing: 0.02em;
}
/* COMPANY SNAPSHOT end  */

/*(Problems & Solutions)” start  */
.cx-problems {
  background: #121821;
  padding: 90px 0;
}

.cx-section-title {
  font-size: clamp(2rem, 3vw, 2.6rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 14px;
}

.cx-section-sub {
  font-size: 1.05rem;
  color: #b8c0cc;
  line-height: 1.7;
}

/* Problem List */
.cx-problem-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.cx-problem {
  padding: 16px 20px;
  margin-bottom: 12px;
  border-radius: 12px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  color: #cfd6e2;
  font-weight: 600;
  cursor: pointer;
  transition: all .25s ease;
}

.cx-problem:hover {
  border-color: rgba(255,159,28,0.4);
}

.cx-problem.active {
  background: rgba(255,159,28,0.12);
  border-color: #ff9f1c;
  color: #ffffff;
}

/* Solution Box */
.cx-solution-box {
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.03),
    rgba(255,255,255,0.01)
  );
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 36px;
  min-height: 240px;
}

.cx-solution {
  display: none;
}

.cx-solution.active {
  display: block;
}

.cx-solution h4 {
  color: #ff9f1c;
  font-weight: 700;
  margin-bottom: 12px;
}

.cx-solution p {
  color: #cfd6e2;
  line-height: 1.75;
  font-size: 1.02rem;
}
/* (Problems & Solutions)” end  */

/* Why Choose Conecsy start  */
.cx-why {
  background: #0b0f14;
  padding: 90px 0;
}

/* Reuse existing heading styles */
.cx-section-title {
  color: #ffffff;
  font-weight: 800;
}

.cx-section-sub {
  color: #b8c0cc;
}

/* Card */
.cx-why-card {
  background: #121821; /* SOLID background to avoid blending */
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 28px;
  height: 100%;
  display: block;
}

.cx-why-card h4 {
  color: #ff9f1c;
  font-weight: 700;
  margin-bottom: 10px;
}

.cx-why-card p {
  color: #d6dde8;
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Hover */
.cx-why-card:hover {
  border-color: rgba(255,159,28,0.45);
  transform: translateY(-4px);
  transition: all .25s ease;
}

/*  Why Choose Conecsy end  */

/*PLATFORM CAPABILITIES start  */
.cx-capabilities {
  background: #121821;
  padding: 90px 0;
}

/* Flow Container */
.cx-flow {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
}

/* Flow Step */
.cx-flow-step {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  padding: 18px 20px;
  min-width: 190px;
  cursor: pointer;
  transition: all .25s ease;
}

.cx-flow-step span {
  display: block;
  color: #ff9f1c;
  font-weight: 700;
  font-size: 1.05rem;
}

.cx-flow-step small {
  color: #cfd6e2;
  font-size: 0.85rem;
}

.cx-flow-step.active,
.cx-flow-step:hover {
  background: rgba(255,159,28,0.12);
  border-color: #ff9f1c;
}

/* Arrow */
.cx-flow-arrow {
  color: #cfd6e2;
  font-size: 1.4rem;
  opacity: 0.6;
}

/* Capability Box */
.cx-capability-box {
  background: #0b0f14;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 18px;
  padding: 36px;
}

/* Capability Content */
.cx-capability {
  display: none;
}

.cx-capability.active {
  display: block;
}

.cx-capability h4 {
  color: #ff9f1c;
  font-weight: 700;
  margin-bottom: 12px;
}

.cx-capability p {
  color: #d6dde8;
  line-height: 1.75;
  font-size: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
  .cx-flow-arrow {
    display: none;
  }
}
/* PLATFORM CAPABILITIES end  */

/* SECURITY & COMPLIANCE start  */
.cx-security {
  background: #0b0f14;
  padding: 90px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}

/* Card */
.cx-security-card {
  background: #121821;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 28px;
  height: 100%;
  transition: all .25s ease;
}

.cx-security-card h4 {
  color: #ff9f1c;
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.cx-security-card p {
  color: #d6dde8;
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Hover */
.cx-security-card:hover {
  border-color: rgba(255,159,28,0.45);
  transform: translateY(-4px);
}
/*  SECURITY & COMPLIANCE end  */

/* TEAM & CULTURE start  */
/* ================= TEAM & CULTURE ================= */
.cx-team {
  background: #0b0f14;
  padding: 90px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}

/* Team Card */
.cx-team-card {
  background: #121821;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 24px;
  height: 100%;
  text-align: center;
  transition: all .3s ease;
}

/* Image wrapper */
.cx-team-img {
  width: 120px;
  height: 120px;
  margin: 0 auto 16px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(255,159,28,0.4);
}

.cx-team-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Name */
.cx-team-card h4 {
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 4px;
}

/* Role */
.cx-team-card span {
  display: block;
  color: #ff9f1c;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 10px;
}

/* Bio */
.cx-team-card p {
  color: #cfd6e2;
  font-size: 0.92rem;
  line-height: 1.6;
}

/* Hover */
.cx-team-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255,159,28,0.5);
}
/* TEAM & CULTURE end  */

/* CUSTOMER LOGOS start  */
/* ================= CUSTOMER LOGOS ================= */
.cx-logos {
  background: #121821;
  padding: 80px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}

/* Track container */
.cx-logo-track {
  overflow: hidden;
  position: relative;
  margin-top: 30px;
}

/* Row animation */
.cx-logo-row {
  display: flex;
  align-items: center;
  gap: 60px;
  animation: cx-logo-scroll 30s linear infinite;
}

/* Logo item */
.cx-logo-item {
  flex: 0 0 auto;
  opacity: 0.75;
  transition: opacity .25s ease, transform .25s ease;
}

.cx-logo-item img {
  max-height: 60px;
  width: auto;
  filter: grayscale(100%);
}

/* Hover */
.cx-logo-item:hover {
  opacity: 1;
  transform: scale(1.05);
}

.cx-logo-item:hover img {
  filter: grayscale(0%);
}

/* Animation */
@keyframes cx-logo-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Pause on hover */
.cx-logo-track:hover .cx-logo-row {
  animation-play-state: paused;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .cx-logo-row {
    gap: 40px;
  }

  .cx-logo-item img {
    max-height: 46px;
  }
}
/* CUSTOMER LOGOS  end  */

/* About Us – FAQ start  */
/* ================= ABOUT FAQ STYLES ================= */
.about-faq-section {
  padding: 80px 0;
  background: #f6f9fc;
}

.about-faq-section .section-header h2 {
  font-weight: 800;
  color: #0d182a;
}

.about-faq-section .section-header p {
  max-width: 720px;
  margin: 12px auto 50px;
  color: #6b7280;
  font-size: 16px;
}

.faq-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: #ffffff;
  border-radius: 14px;
  margin-bottom: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-2px);
}

.faq-question {
  width: 100%;
  padding: 22px 24px;
  background: none;
  border: none;
  outline: none;
  font-size: 17px;
  font-weight: 600;
  color: #0d182a;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-icon {
  font-size: 22px;
  font-weight: 400;
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer p {
  padding: 0 24px 22px;
  color: #4b5563;
  line-height: 1.7;
  font-size: 15.5px;
}

/* Active State */
.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}
/*  About Us – FAQ end  */

/*  CONECSY CTA start  */
/* ================= ABOUT US CTA (DISTINCT STYLE) ================= */
.about-cta-alt {
  padding: 110px 20px;
  background: linear-gradient(
    135deg,
    #3a2005 0%,
    #f18613 100%
  );
  position: relative;
  overflow: hidden;
}

/* subtle abstract background layers */
.about-cta-alt::before,
.about-cta-alt::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  opacity: 0.18;
  filter: blur(80px);
}

.about-cta-alt::before {
  width: 420px;
  height: 420px;
  background: #f18613;
  top: -140px;
  left: -140px;
}

.about-cta-alt::after {
  width: 520px;
  height: 520px;
  background: #3a2005;
  bottom: -180px;
  right: -180px;
}

.about-cta-container {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  color: #ffffff;
}

/* left content */
.about-cta-content h2 {
  font-size: 2.15rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.about-cta-content p {
  font-size: 1.05rem;
  line-height: 1.65;
  opacity: 0.95;
  max-width: 520px;
}

/* right side highlights */
.about-cta-points {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.about-cta-point {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(6px);
  border-radius: 14px;
  padding: 18px 22px;
  font-weight: 700;
  font-size: 0.95rem;
}

/* actions */
.about-cta-actions {
  display: flex;
  gap: 16px;
  margin-top: 28px;
  flex-wrap: wrap;
}

/* responsive */
@media (max-width: 900px) {
  .about-cta-container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .about-cta-content p {
    margin: 0 auto;
  }

  .about-cta-actions {
    justify-content: center;
  }
}
/* CONECSY CTA   end  */
/* About us page end */

/* Contact us page Start */

/* Hero start  */
.contact-hero {
  padding: 120px 0 100px;
  background: linear-gradient(135deg, #3a2005, #f18613);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

/* subtle background glow */
.contact-hero::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  top: -200px;
  right: -200px;
  filter: blur(120px);
}

.contact-eyebrow {
  display: inline-block;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.9;
  margin-bottom: 12px;
}

.contact-hero-content h1 {
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 16px;
}

.contact-hero-content p {
  font-size: 1.08rem;
  line-height: 1.65;
  opacity: 0.95;
  max-width: 520px;
}

.contact-hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.contact-hero-trust {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 26px;
  font-weight: 700;
  font-size: 0.9rem;
  opacity: 0.9;
}

/* Right visual */
.contact-hero-visual {
  display: flex;
  justify-content: center;
}

.hero-visual-card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border-radius: 18px;
  padding: 36px 42px;
  max-width: 420px;
  width: 100%;
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.35);
  position: relative;
}

.visual-line {
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: #ffffff;
  border-radius: 0 6px 6px 0;
}

.visual-metric {
  margin-bottom: 22px;
}

.visual-metric strong {
  display: block;
  font-size: 1.6rem;
  font-weight: 800;
}

.visual-metric span {
  font-size: 0.95rem;
  opacity: 0.9;
}

/* Responsive */
@media (max-width: 992px) {
  .contact-hero {
    padding: 100px 0 80px;
    text-align: center;
  }

  .contact-hero-content p {
    margin: 0 auto;
  }

  .contact-hero-actions,
  .contact-hero-trust {
    justify-content: center;
  }
}
/* Hero end  */

/* How Can We Help? start  */
.contact-intent {
  padding: 90px 0;
  background: #f8fafc;
}

.section-header h2 {
  font-weight: 800;
  font-size: 2rem;
  color: #0d182a;
}

.section-header p {
  max-width: 680px;
  margin: 12px auto 50px;
  color: #6b7280;
  font-size: 1.05rem;
}

.intent-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
}

.intent-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 26px 24px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.06);
  cursor: pointer;
  transition: all 0.35s ease;
  border: 2px solid transparent;
}

.intent-card:hover {
  transform: translateY(-6px);
}

.intent-card.active {
  border-color: #f18613;
  background: linear-gradient(
    135deg,
    rgba(241,134,19,0.08),
    rgba(58,32,5,0.05)
  );
}

.intent-icon {
  font-size: 28px;
  color: #f18613;
  margin-bottom: 14px;
}

.intent-card h4 {
  font-weight: 700;
  color: #0d182a;
  margin-bottom: 6px;
}

.intent-card p {
  font-size: 0.95rem;
  color: #4b5563;
  line-height: 1.6;
}

/* Mobile refinement */
@media (max-width: 768px) {
  .contact-intent {
    padding: 70px 0;
  }
}
/* How Can We Help? end  */

/* SMART CONTACT start  */

#contact {
  padding: 120px 0;
  position: relative;
  background:
    radial-gradient(circle at 15% 20%, rgba(241,134,19,0.15), transparent 40%),
    radial-gradient(circle at 85% 80%, rgba(58,32,5,0.18), transparent 45%),
    #f8fafc;
}

/* Premium divider */
#contact::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 160px;
  height: 4px;
  background: linear-gradient(90deg, #3a2005, #f18613);
  transform: translateX(-50%);
  border-radius: 4px;
}

/* Main form container */
#contact form {
  position: relative;
  background: #ffffff;
  border-radius: 18px;
  padding: 42px 38px;
  box-shadow:
    0 30px 70px rgba(3,12,38,0.12),
    0 0 0 1px rgba(13,24,42,0.04);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

/* Hover lift */
@media (hover:hover) {
  #contact form:hover {
    transform: translateY(-8px);
    box-shadow:
      0 45px 100px rgba(3,12,38,0.18),
      0 0 0 1px rgba(13,24,42,0.06);
  }
}
/* SMART CONTACT end  */

/*What Happens Next start */

.contact-next-steps {
  padding: 110px 0;
  background: #f8fafc;
  position: relative;
}

.contact-next-steps .section-header h2 {
  font-weight: 800;
  font-size: 2.1rem;
  color: #0d182a;
}

.contact-next-steps .section-header p {
  max-width: 720px;
  margin: 14px auto 60px;
  color: #6b7280;
  font-size: 1.05rem;
  line-height: 1.6;
}

.next-steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

.next-step-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 38px 32px;
  box-shadow:
    0 20px 55px rgba(3,12,38,0.08),
    0 0 0 1px rgba(13,24,42,0.04);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  position: relative;
}

@media (hover:hover) {
  .next-step-card:hover {
    transform: translateY(-6px);
    box-shadow:
      0 35px 85px rgba(3,12,38,0.14),
      0 0 0 1px rgba(13,24,42,0.06);
  }
}

.step-number {
  font-size: 2.2rem;
  font-weight: 800;
  color: #f18613;
  margin-bottom: 12px;
}

.next-step-card h4 {
  font-weight: 700;
  color: #0d182a;
  margin-bottom: 10px;
}

.next-step-card p {
  font-size: 0.95rem;
  color: #4b5563;
  line-height: 1.65;
}

/* Bottom reassurance */
.next-steps-note {
  margin-top: 50px;
  text-align: center;
}

.next-steps-note p {
  font-size: 0.9rem;
  color: #6b7280;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-next-steps {
    padding: 90px 0;
  }
}
/*What Happens Next end  */

/*FINAL LIGHTWEIGHT CTA :start */

.contact-light-cta {
  padding: 70px 0 90px;
  background: linear-gradient(
    180deg,
    rgba(241,134,19,0.06),
    rgba(248,250,252,1)
  );
}

.light-cta-inner {
  max-width: 900px;
  margin: 0 auto;
  padding-top: 28px;
  border-top: 1px solid rgba(13,24,42,0.08);
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
}

.light-cta-content h3 {
  font-weight: 800;
  font-size: 1.35rem;
  color: #0d182a;
  margin-bottom: 6px;
}

.light-cta-content p {
  font-size: 0.95rem;
  color: #6b7280;
  max-width: 520px;
}

.light-cta-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 700;
  font-size: 0.95rem;
}

.light-cta-link {
  color: #f18613;
  text-decoration: none;
  position: relative;
}

.light-cta-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 2px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.light-cta-link:hover::after {
  transform: scaleX(1);
}

.divider {
  color: #cbd5e1;
}

/* Mobile */
@media (max-width: 768px) {
  .light-cta-inner {
    text-align: center;
    justify-content: center;
  }

  .light-cta-actions {
    justify-content: center;
  }
}
/*FINAL LIGHTWEIGHT CTA end  */
/* Contact us page end */

/* privacy page Start */

/* :start */
/* ================= PRIVACY POLICY ================= */

.privacy-hero {
  padding: 120px 20px 90px;
  background: linear-gradient(135deg, #3a2005, #f18613);
  color: #ffffff;
}

.privacy-hero h1 {
  font-size: 2.6rem;
  font-weight: 800;
}

.privacy-hero p {
  max-width: 780px;
  margin: 14px auto;
  opacity: 0.95;
}

.privacy-date {
  font-size: 0.9rem;
  opacity: 0.85;
}

.privacy-content {
  padding: 110px 20px;
  background: #f8fafc;
}

.privacy-block {
  max-width: 920px;
  margin: 0 auto 60px;
}

.privacy-block h2 {
  font-size: 1.45rem;
  font-weight: 800;
  color: #0d182a;
  margin-bottom: 14px;
}

.privacy-block p,
.privacy-block li {
  font-size: 0.95rem;
  color: #4b5563;
  line-height: 1.7;
}

.privacy-block ul {
  padding-left: 18px;
}

.privacy-block.highlight {
  background: #ffffff;
  padding: 34px;
  border-radius: 16px;
  box-shadow: 0 20px 55px rgba(3,12,38,0.08);
}

.privacy-block.contact {
  border-top: 1px solid #e5e7eb;
  padding-top: 40px;
}

/* ================= PRIVACY CTA ================= */
.privacy-block.highlight.text-center {
  margin-top: 90px;
}

.privacy-block.highlight.text-center h2 {
  margin-bottom: 12px;
}

.privacy-block.highlight.text-center p {
  margin-bottom: 10px;
}

.privacy-block.highlight.text-center a {
  color: #f18613;
  font-weight: 600;
  text-decoration: none;
}

.privacy-block.highlight.text-center a:hover {
  text-decoration: underline;
}

/* end  */
/* privacy page end */

/* Terms page :start */
.terms-hero {
  padding: 120px 20px 90px;
  background: linear-gradient(135deg, #3a2005, #f18613);
  color: #ffffff;
}

.terms-hero h1 {
  font-size: 2.6rem;
  font-weight: 800;
}

.terms-hero p {
  max-width: 780px;
  margin: 14px auto;
  opacity: 0.95;
}

.terms-date {
  font-size: 0.9rem;
  opacity: 0.85;
}

/* ================= TERMS CONTENT ================= */
.terms-content {
  padding: 110px 20px;
  background: #f8fafc;
}

.terms-block {
  max-width: 920px;
  margin: 0 auto 60px;
}

.terms-block h2 {
  font-size: 1.45rem;
  font-weight: 800;
  color: #0d182a;
  margin-bottom: 14px;
}

.terms-block p,
.terms-block li {
  font-size: 0.95rem;
  color: #4b5563;
  line-height: 1.7;
}

.terms-block ul {
  padding-left: 18px;
}

/* ================= OPTIONAL HIGHLIGHT BLOCK ================= */
.terms-block.highlight {
  background: #ffffff;
  padding: 34px;
  border-radius: 16px;
  box-shadow: 0 20px 55px rgba(3,12,38,0.08);
}

/* ================= CONTACT / CTA BLOCK ================= */
.terms-block.contact {
  border-top: 1px solid #e5e7eb;
  padding-top: 40px;
}

/* ================= LINKS ================= */
.terms-block a {
  color: #f18613;
  font-weight: 600;
  text-decoration: none;
}

.terms-block a:hover {
  text-decoration: underline;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  .terms-hero h1 {
    font-size: 2.1rem;
  }

  .terms-block h2 {
    font-size: 1.25rem;
  }
}
/* Terms page end  */

/* Solution Page start  */

/* Hero Section start */
/* ===================================
   SOLUTIONS HERO – CONECSY BRAND
=================================== */
.solutions-hero-alt {
  padding: 130px 0 110px;
  background:
    radial-gradient(circle at top right, rgba(241,134,19,.08), transparent 55%),
    linear-gradient(180deg,#fffdf8,#ffffff);
}

.solutions-hero-alt-wrap {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 80px;
  align-items: center;
}

/* TEXT SIDE */
.solutions-text h1 {
  font-size: clamp(2.2rem,3.8vw,3rem);
  font-weight: 900;
  line-height: 1.1;
  color: #3a2005;
  margin-bottom: 18px;
}

.solutions-eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  font-size: .85rem;
  font-weight: 800;
  color: #f18613;
  letter-spacing: .4px;
}

.solutions-description {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #6b4a20;
  max-width: 560px;
  margin-bottom: 30px;
}

.solutions-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* VISUAL SIDE */
.solutions-visual {
  position: relative;
}

.solutions-stack {
  display: grid;
  gap: 14px;
}

.stack-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 18px 22px;
  box-shadow: 0 20px 50px rgba(0,0,0,.12);
  border-left: 4px solid #f18613;
}

.stack-card span {
  display: block;
  font-size: .8rem;
  font-weight: 800;
  color: #f18613;
  margin-bottom: 4px;
}

.stack-card strong {
  font-size: .95rem;
  font-weight: 800;
  color: #3a2005;
}

.stack-card.highlight {
  background: linear-gradient(135deg,#f18613,#ffb86a);
  color: #fff;
  border-left: none;
}

.stack-card.highlight span,
.stack-card.highlight strong {
  color: #fff;
}

.solutions-trust {
  margin-top: 22px;
  font-size: .85rem;
  font-weight: 800;
  color: #3a2005;
  text-align: center;
}

/* INITIAL STATES FOR JS */
.js-reveal {
  opacity: 0;
  transform: translateY(24px);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .solutions-hero-alt-wrap {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}
/* Hero Section end */

/* SOLUTIONS BY INDUSTRY start */
.cx-solutions-layout {
  display: grid;
  grid-template-columns: 80px 420px 1fr;
  min-height: 100vh;
  padding: 120px 80px;
  background: linear-gradient(135deg, #fff, #fff7ee);
  gap: 60px;
}

/* ICON STRIP */
.cx-icon-strip {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  position: sticky;
  top: 120px;
}

.cx-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,.08);
  background: #fff;
  opacity: .35;
  transition: all .35s ease;
  cursor: pointer;/* ===== Sticky Icon Strip ===== */

 
}



.cx-icon i {
  font-size: 20px;
  color: #3a2005;
}

.cx-icon.active {
  opacity: 1;
  background: linear-gradient(135deg,#f18613,#ffb86a);
  box-shadow: 0 10px 28px rgba(241,134,19,.4);
}

.cx-icon.active i {
  color: #fff;
}

/* INTRO */
.cx-solutions-intro h2 {
  font-size: 3rem;
  font-weight: 900;
  color: #3a2005;
}

.cx-solutions-intro p {
  margin-top: 18px;
  font-size: 1.05rem;
  color: #6b4a20;
  line-height: 1.6;
}

/* CONTENT PANEL */
.cx-solutions-panel {
  max-width: 620px;
}

.cx-solution {
  display: none;
  animation: fadeSlide .45s ease;
}

.cx-solution.active {
  display: block;
}

@keyframes fadeSlide {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.cx-solution h3 {
  font-size: 2.2rem;
  font-weight: 900;
  color: #3a2005;
  margin-bottom: 10px;
}

.cx-solution p {
  color: #6b4a20;
  margin-bottom: 26px;
}

.cx-solution ul {
  list-style: none;
  padding-left: 0;
}

.cx-solution li {
  font-weight: 700;
  margin-bottom: 12px;
  padding-left: 20px;
  position: relative;
}

.cx-solution li::before {
  content: "–";
  position: absolute;
  left: 0;
  color: #f18613;
}
.cx-solutions-layout {
  position: relative;
  background:
    radial-gradient(
      circle at top left,
      rgba(241,134,19,0.06),
      transparent 60%
    ),
    linear-gradient(180deg, #fffdf9, #ffffff);
}

/* subtle divider between columns */
.cx-solutions-layout::before {
  content: "";
  position: absolute;
  left: 80px;
  top: 0;
  width: 1px;
  height: 100%;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(58,32,5,0.08),
    transparent
  );
}
.cx-icon {
  background: linear-gradient(180deg,#ffffff,#fffaf4);
  box-shadow:
    0 6px 20px rgba(0,0,0,.06),
    inset 0 0 0 1px rgba(255,255,255,.6);
}

.cx-icon:hover {
  opacity: .7;
  transform: translateY(-2px);
}

.cx-icon.active {
  background:
    linear-gradient(135deg,#f18613,#ffb86a);
  box-shadow:
    0 12px 30px rgba(241,134,19,.45),
    inset 0 0 0 1px rgba(255,255,255,.4);
}
.cx-solutions-intro h2 {
  letter-spacing: -0.5px;
}

.cx-solutions-intro p {
  position: relative;
  padding-left: 18px;
}

.cx-solutions-intro p::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 3px;
  height: 36px;
  border-radius: 3px;
  background: linear-gradient(
    180deg,
    #f18613,
    rgba(241,134,19,0.2)
  );
}
.cx-solutions-panel {
  position: relative;
  padding: 40px 0 40px 40px;
}

.cx-solutions-panel::before {
  content: "";
  position: absolute;
  left: 0;
  top: 40px;
  width: 2px;
  height: calc(100% - 80px);
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(241,134,19,.25),
    transparent
  );
}
.cx-solution h3 {
  letter-spacing: -0.4px;
}

.cx-solution ul {
  margin-top: 24px;
}

.cx-solution li {
  font-size: 0.95rem;
  color: #4a3726;
}

.cx-solution li::before {
  content: "▸";
  font-size: .9rem;
  top: 1px;
}
/* ===== Solutions Layout – Mobile Fix ===== */
@media (max-width: 768px) {

  .cx-solutions-layout {
    display: block;
  }

  .cx-icon-strip {
    display: flex;
    flex-direction: row;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 12px;
    margin-bottom: 20px;
    -webkit-overflow-scrolling: touch;
      position: sticky;
      top: 80px; /* adjust to your header height */
      z-index: 10;
  }
  .cx-icon-strip {
  background: #fffaf3;
  padding: 8px 0;
}
  

  .cx-solutions-intro {
    margin-bottom: 20px;
  }

  .cx-solutions-panel {
    width: 100%;
  }

}

/* SOLUTIONS BY INDUSTRY end */

/* Solution Categories Section start */
/* === CORE SOLUTIONS SECTION === */
.cx-core-section {
  padding: 120px 100px;
  background: linear-gradient(180deg,#ffffff,#fffdf8);
}

/* HEADER */
.cx-core-header {
  max-width: 760px;
  margin-bottom: 80px;
}

.cx-core-header h2 {
  font-size: 2.8rem;
  font-weight: 900;
  color: #3a2005;
}

.cx-core-header p {
  margin-top: 18px;
  color: #6b4a20;
  line-height: 1.6;
}

/* BODY LAYOUT */
.cx-core-body {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 80px;
}

/* LEFT LIST */
.cx-core-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cx-core-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid rgba(0,0,0,.06);
  font-weight: 700;
  color: #3a2005;
  opacity: .5;
  cursor: pointer;
  transition: all .3s ease;
}

.cx-core-item i {
  font-size: 18px;
}

.cx-core-item.active {
  opacity: 1;
  background: linear-gradient(135deg,#f18613,#ffb86a);
  color: #fff;
  box-shadow: 0 14px 36px rgba(241,134,19,.35);
}

.cx-core-item.active i {
  color: #fff;
}

/* RIGHT PANEL */
.cx-core-panel {
  max-width: 720px;
}

.cx-core-content {
  display: none;
  animation: fadeUp .45s ease;
}

.cx-core-content.active {
  display: block;
}

.cx-core-content h3 {
  font-size: 2.2rem;
  font-weight: 900;
  color: #3a2005;
  margin-bottom: 10px;
}

.cx-core-content p {
  margin-bottom: 24px;
  color: #6b4a20;
}

.cx-core-content ul {
  list-style: none;
  padding-left: 0;
}

.cx-core-content li {
  margin-bottom: 12px;
  padding-left: 20px;
  font-weight: 700;
  position: relative;
}

.cx-core-content li::before {
  content: "–";
  position: absolute;
  left: 0;
  color: #f18613;
}

/* ANIMATION */
@keyframes fadeUp {
  from { opacity:0; transform:translateY(22px); }
  to { opacity:1; transform:translateY(0); }
}

/* MOBILE */
@media(max-width:900px){
  .cx-core-section {
    padding: 80px 24px;
  }

  .cx-core-body {
    grid-template-columns: 1fr;
  }

  .cx-core-list {
    flex-direction: row;
    overflow-x: auto;
  }
}
/* === CORE OFFERINGS SECTION ENHANCEMENT === */
.cx-core-section {
  position: relative;
  /* margin-top: 160px;  */
  padding: 80px 100px;
  background:
    radial-gradient(
      circle at top center,
      rgba(241,134,19,0.08),
      transparent 55%
    ),
    linear-gradient(180deg,#fffdf8,#ffffff);
}
.cx-core-header {
  text-align: center;
  margin: 0 auto 100px;
  max-width: 760px;
}

.cx-core-header h2 {
  font-size: 3rem;
  font-weight: 900;
  color: #3a2005;
  letter-spacing: -0.6px;
}

.cx-core-header p {
  margin-top: 18px;
  font-size: 1.05rem;
  color: #6b4a20;
  line-height: 1.7;
}
.cx-core-header::after {
  content: "";
  display: block;
  margin: 48px auto 0;
  width: 72px;
  height: 4px;
  border-radius: 4px;
  background: linear-gradient(
    90deg,
    #f18613,
    #ffb86a
  );
}
.cx-core-body {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 100px;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
}
.cx-core-list {
  position: sticky;
  top: 140px;
  padding-left: 20px;
  border-left: 2px solid rgba(58,32,5,0.08);
}
.cx-core-panel {
  position: relative;
  padding-left: 40px;
}

.cx-core-panel::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 2px;
  height: calc(100% - 20px);
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(241,134,19,.35),
    transparent
  );
}
@media(max-width:900px){
  .cx-core-section {
    padding: 100px 24px;
  }

  .cx-core-header {
    margin-bottom: 60px;
  }

  .cx-core-body {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .cx-core-list {
    position: static;
    border-left: none;
    padding-left: 0;
    display: flex;
    overflow-x: auto;
    gap: 12px;
  }

  .cx-core-panel {
    padding-left: 0;
  }

  .cx-core-panel::before {
    display: none;
  }
}
/* Solution Categories Section end */

/*Business Problems We Solve start */
/* === PROFESSIONAL BUSINESS PROBLEMS SECTION === */
.cx-problems-pro {
  padding: 160px 100px;
  background:
    radial-gradient(circle at top center, rgba(241,134,19,.08), transparent 60%),
    linear-gradient(180deg,#fffdf8,#ffffff);
}

/* HEADER */
.cx-problems-pro-header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 140px;
}

.cx-eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  font-size: .85rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #f18613;
}

.cx-problems-pro-header h2 {
  font-size: 3.2rem;
  font-weight: 900;
  color: #3a2005;
  letter-spacing: -0.6px;
}

.cx-problems-pro-header p {
  margin-top: 20px;
  font-size: 1.1rem;
  line-height: 1.7;
  color: #6b4a20;
}

/* LIST */
.cx-problems-pro-list {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 120px;
}

/* BLOCK */
.cx-problem-pro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: flex-start;
}

.cx-problem-pro.reverse {
  direction: rtl;
}

.cx-problem-pro.reverse > * {
  direction: ltr;
}

/* LEFT */
.cx-problem-pro-left h3 {
  font-size: 2rem;
  font-weight: 900;
  color: #3a2005;
  margin-bottom: 14px;
}

.cx-problem-pro-left p {
  color: #6b4a20;
  line-height: 1.7;
  font-size: 1.05rem;
}

/* RIGHT */
.cx-problem-pro-right {
  position: relative;
  padding-left: 32px;
}

.cx-problem-pro-right strong {
  display: block;
  margin-bottom: 18px;
  font-size: .9rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #f18613;
}

.cx-problem-pro-right::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 3px;
  height: calc(100% - 8px);
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(241,134,19,.4),
    transparent
  );
}

.cx-problem-pro-right ul {
  list-style: none;
  padding-left: 0;
}

.cx-problem-pro-right li {
  margin-bottom: 14px;
  font-weight: 700;
  color: #4a3726;
  padding-left: 18px;
  position: relative;
}

.cx-problem-pro-right li::before {
  content: "–";
  position: absolute;
  left: 0;
  color: #f18613;
}

/* MOBILE */
@media(max-width:900px){
  .cx-problems-pro {
    padding: 120px 24px;
  }

  .cx-problems-pro-list {
    gap: 80px;
  }

  .cx-problem-pro,
  .cx-problem-pro.reverse {
    grid-template-columns: 1fr;
    gap: 30px;
    direction: ltr;
  }

  .cx-problem-pro-right {
    padding-left: 0;
  }

  .cx-problem-pro-right::before {
    display: none;
  }
}
/* === COMPACT BUSINESS PROBLEMS SECTION === */
.cx-problems-compact {
  padding: 120px 24px;
  background:
    radial-gradient(circle at top, rgba(241,134,19,.08), transparent 55%),
    linear-gradient(180deg,#fffdf8,#ffffff);
}

.cx-problems-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 70px;
}

.cx-problems-head h2 {
  font-size: 2.6rem;
  font-weight: 900;
  color: #3a2005;
}

.cx-problems-head p {
  margin-top: 16px;
  color: #6b4a20;
  font-size: 1.05rem;
  line-height: 1.6;
}

/* STACK */
.cx-problems-stack {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

/* CARD */
.cx-problem-card {
  background: #fff;
  border-radius: 18px;
  padding: 34px 38px;
  box-shadow: 0 30px 70px rgba(0,0,0,.12);
  opacity: 0;
  transform: translateY(40px);
  position: absolute;
  inset: 0;
}

.cx-problem-card.active {
  opacity: 1;
  transform: translateY(0);
  position: relative;
}

.cx-problem-card h3 {
  font-size: 1.6rem;
  font-weight: 900;
  margin-bottom: 10px;
  color: #3a2005;
}

.cx-problem-card p {
  color: #6b4a20;
  margin-bottom: 16px;
}

.cx-problem-card ul {
  list-style: none;
  padding: 0;
}

.cx-problem-card li {
  font-weight: 700;
  color: #4a3726;
  margin-bottom: 8px;
  padding-left: 14px;
  position: relative;
}

.cx-problem-card li::before {
  content: "–";
  position: absolute;
  left: 0;
  color: #f18613;
}

/* MOBILE */
@media(max-width:768px){
  .cx-problem-card {
    padding: 26px;
  }
}
.cx-problems-hybrid {
  padding: 120px 24px;
  background:
    radial-gradient(circle at top, rgba(241,134,19,.08), transparent 55%),
    linear-gradient(180deg,#fffdf8,#ffffff);
}

.cx-problems-wrap {
  max-width: 980px;
  margin: 0 auto;
}

/* NAV */
.cx-problems-nav {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.cx-problems-nav button {
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(241,134,19,.3);
  background: #fff;
  font-weight: 800;
  cursor: pointer;
}

.cx-problems-nav button.active {
  background: linear-gradient(90deg,#f18613,#ffb86a);
  color: #fff;
}

/* STACK */
.cx-problems-stack {
  position: relative;
  height: 260px;
}

.cx-problem-card {
  position: absolute;
  inset: 0;
  padding: 32px 36px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 30px 70px rgba(0,0,0,.12);
  opacity: 0;
  transform: translateY(30px);
}

.cx-problem-card.active {
  opacity: 1;
  transform: translateY(0);
  position: relative;
}
/* === PROBLEMS WITH PROGRESS BAR === */
.cx-problems-progress {
  padding: 120px 24px;
  background:
    radial-gradient(circle at top, rgba(241,134,19,.08), transparent 55%),
    linear-gradient(180deg,#fffdf8,#ffffff);
}

.cx-progress-rail {
  max-width: 900px;
  margin: 50px auto 40px;
  position: relative;
}

/* TRACK */
.cx-progress-track {
  height: 6px;
  background: #eee;
  border-radius: 999px;
  overflow: hidden;
}

.cx-progress-fill {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg,#f18613,#ffb86a);
  transition: width .4s ease;
}

/* POINTS */
.cx-progress-points {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}

.cx-progress-points button {
  pointer-events: auto;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #f18613;
  transform: translateY(-7px);
  cursor: pointer;
}

.cx-progress-points button:hover {
  background: #f18613;
}
/*Business Problems We Solve end */

/* How Conecsy Works start */
/* === HOW CONECSY WORKS (TECHNICAL FLOW) === */
.cx-how-it-works {
  padding: 140px 24px;
  background: linear-gradient(180deg,#ffffff,#fffdf8);
}

/* HEADER */
.cx-hiw-head {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 90px;
}

.cx-hiw-head h2 {
  font-size: 2.8rem;
  font-weight: 900;
  color: #3a2005;
}

.cx-hiw-head p {
  margin-top: 18px;
  font-size: 1.05rem;
  line-height: 1.7;
  color: #6b4a20;
}

.cx-hiw-head-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

/* TOGGLE */
.cx-hiw-toggle {
  display: flex;
  border-radius: 999px;
  overflow: hidden;
  border: 1px solid rgba(241,134,19,.4);
  background: #fff;
}

.cx-hiw-toggle span {
  padding: 8px 16px;
  font-size: .85rem;
  font-weight: 800;
  cursor: pointer;
}

.cx-hiw-toggle span.active {
  background: linear-gradient(90deg,#f18613,#ffb86a);
  color: #fff;
}

/* FLOW */
.cx-hiw-flow {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
}

.cx-hiw-step {
  width: 18%;
  background: #fff;
  padding: 26px;
  border-radius: 18px;
  box-shadow: 0 30px 70px rgba(0,0,0,.1);
  opacity: .3;
  transform: translateY(20px);
}

.cx-hiw-index {
  font-size: .8rem;
  font-weight: 900;
  color: #f18613;
}

.cx-hiw-step h3 {
  margin: 8px 0;
  font-size: 1.1rem;
  font-weight: 800;
  color: #3a2005;
}

.cx-hiw-step p {
  font-size: .95rem;
  color: #6b4a20;
}

.cx-hiw-step code {
  display: block;
  margin-top: 12px;
  padding: 8px 10px;
  font-size: .75rem;
  border-radius: 10px;
  background: #121212;
  color: #ffb86a;
}

/* CONNECTOR */
.cx-hiw-connector {
  width: 6%;
  position: relative;
}

.cx-hiw-connector::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, transparent, rgba(241,134,19,.6), transparent);
}

/* DIAGRAM MODE */
.cx-hiw-diagram {
  display: none;
  max-width: 1000px;
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.cx-hiw-diagram.active {
  display: flex;
}

.cx-diagram-node {
  background: #fff;
  padding: 18px 22px;
  border-radius: 14px;
  font-weight: 800;
  color: #3a2005;
  box-shadow: 0 18px 40px rgba(0,0,0,.12);
  text-align: center;
  min-width: 160px;
}

.cx-diagram-node.highlight {
  background: linear-gradient(135deg,#f18613,#ffb86a);
  color: #fff;
}

.cx-diagram-arrow {
  flex: 1;
  height: 2px;
  background: linear-gradient(to right, transparent, rgba(241,134,19,.6), transparent);
}

/* HIDE FLOW IN DIAGRAM MODE */
.cx-how-it-works.diagram-mode .cx-hiw-flow {
  display: none;
}

/* MOBILE */
@media(max-width:900px){
  .cx-hiw-flow {
    flex-direction: column;
    gap: 26px;
  }

  .cx-hiw-step {
    width: 100%;
    opacity: 1;
    transform: none;
  }

  .cx-hiw-connector {
    display: none;
  }

  .cx-hiw-diagram {
    flex-direction: column;
  }

  .cx-diagram-arrow {
    width: 2px;
    height: 30px;
  }
}
/* === HOW CONECSY WORKS (SIMPLE + PROFESSIONAL) === */
.cx-how-it-works {
  padding: 140px 24px;
  background:
    radial-gradient(circle at top, rgba(241,134,19,.08), transparent 60%),
    linear-gradient(180deg,#fffdf8,#ffffff);
}

/* HEADER */
.cx-hiw-head {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 90px;
}

.cx-hiw-head h2 {
  font-size: 2.6rem;
  font-weight: 900;
  color: #3a2005;
}

.cx-hiw-head p {
  margin-top: 16px;
  font-size: 1.05rem;
  line-height: 1.7;
  color: #6b4a20;
}

.cx-hiw-head-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* TOGGLE */
.cx-hiw-toggle {
  display: flex;
  border-radius: 999px;
  overflow: hidden;
  border: 1px solid rgba(241,134,19,.4);
  background: #fff;
}

.cx-hiw-toggle span {
  padding: 8px 16px;
  font-weight: 800;
  font-size: .85rem;
  cursor: pointer;
}

.cx-hiw-toggle span.active {
  background: linear-gradient(90deg,#f18613,#ffb86a);
  color: #fff;
}

/* FLOW */
.cx-hiw-flow {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}

.cx-hiw-step {
  width: 18%;
  background: #fff;
  padding: 26px;
  border-radius: 18px;
  box-shadow: 0 28px 60px rgba(0,0,0,.1);
  opacity: .25;
  transform: translateY(20px);
}

.cx-hiw-index {
  font-size: .8rem;
  font-weight: 900;
  color: #f18613;
}

.cx-hiw-step h3 {
  margin: 10px 0;
  font-size: 1.1rem;
  font-weight: 800;
  color: #3a2005;
}

.cx-hiw-step p {
  font-size: .95rem;
  color: #6b4a20;
  line-height: 1.6;
}

.cx-hiw-step code {
  display: block;
  margin-top: 12px;
  padding: 8px 10px;
  font-size: .75rem;
  border-radius: 10px;
  background: #121212;
  color: #ffb86a;
}

/* CONNECTOR */
.cx-hiw-connector {
  width: 6%;
  position: relative;
}

.cx-hiw-connector::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(241,134,19,.6),
    transparent
  );
}

/* DIAGRAM MODE */
.cx-hiw-diagram {
  display: none;
  max-width: 1000px;
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.cx-hiw-diagram.active {
  display: flex;
}

.cx-diagram-node {
  background: #fff;
  padding: 18px 22px;
  border-radius: 14px;
  font-weight: 800;
  color: #3a2005;
  box-shadow: 0 18px 40px rgba(0,0,0,.12);
  min-width: 160px;
  text-align: center;
}

.cx-diagram-node.highlight {
  background: linear-gradient(135deg,#f18613,#ffb86a);
  color: #fff;
}

.cx-diagram-arrow {
  flex: 1;
  height: 2px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(241,134,19,.6),
    transparent
  );
}

/* HIDE FLOW IN DIAGRAM MODE */
.cx-how-it-works.diagram-mode .cx-hiw-flow {
  display: none;
}

/* MOBILE */
@media(max-width:900px){
  .cx-hiw-flow {
    flex-direction: column;
    gap: 26px;
  }

  .cx-hiw-step {
    width: 100%;
    opacity: 1;
    transform: none;
  }

  .cx-hiw-connector {
    display: none;
  }

  .cx-hiw-diagram {
    flex-direction: column;
  }

  .cx-diagram-arrow {
    width: 2px;
    height: 30px;
  }
}
/* === HOW CONECSY ADDS VALUE === */
.cx-value-section {
  padding: 90px 24px;
  background:
    radial-gradient(circle at top, rgba(241,134,19,.08), transparent 60%),
    linear-gradient(180deg,#fffdf8,#ffffff);
}

.cx-value-head {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 80px;
}

.cx-value-head h2 {
  font-size: 2.6rem;
  font-weight: 900;
  color: #3a2005;
}

.cx-value-head p {
  margin-top: 16px;
  font-size: 1.05rem;
  line-height: 1.7;
  color: #6b4a20;
}

/* GRID */
.cx-value-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 30px;
}

/* CARD */
.cx-value-card {
  background: #fff;
  padding: 34px 28px;
  border-radius: 20px;
  box-shadow: 0 30px 70px rgba(0,0,0,.1);
  opacity: 0;
  transform: translateY(30px);
}

.cx-value-card h3 {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 12px;
  color: #3a2005;
}

.cx-value-card p {
  font-size: .95rem;
  line-height: 1.6;
  color: #6b4a20;
}

/* MOBILE */
@media(max-width:900px){
  .cx-value-grid {
    grid-template-columns: 1fr;
  }
}
/* How Conecsy Works end */

/*Reliability & SLA Metrics start */
/* === RELIABILITY & SLA METRICS === */
.cx-reliability-section {
  padding: 90px 24px;
  background:
    linear-gradient(180deg,#fffdf8,#ffffff);
}

/* HEADER */
.cx-reliability-head {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 90px;
}

.cx-reliability-head h2 {
  font-size: 2.6rem;
  font-weight: 900;
  color: #3a2005;
}

.cx-reliability-head p {
  margin-top: 16px;
  font-size: 1.05rem;
  line-height: 1.7;
  color: #6b4a20;
}

/* METRICS */
.cx-reliability-metrics {
  max-width: 1100px;
  margin: 0 auto 80px;
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
  gap: 30px;
}

.cx-metric {
  background: #fff;
  padding: 36px 28px;
  border-radius: 22px;
  box-shadow: 0 30px 70px rgba(0,0,0,.1);
  text-align: center;
  opacity: 0;
  transform: translateY(30px);
}

.cx-metric strong {
  display: block;
  font-size: 2.4rem;
  font-weight: 900;
  color: #f18613;
}

.cx-metric span {
  display: block;
  margin-top: 6px;
  font-weight: 800;
  color: #3a2005;
}

.cx-metric p {
  margin-top: 12px;
  font-size: .95rem;
  color: #6b4a20;
  line-height: 1.6;
}

/* SUPPORTING POINTS */
.cx-reliability-points {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(260px,1fr));
  gap: 40px;
}

.cx-reliability-points h4 {
  font-size: 1.1rem;
  font-weight: 800;
  color: #3a2005;
  margin-bottom: 8px;
}

.cx-reliability-points p {
  font-size: .95rem;
  color: #6b4a20;
  line-height: 1.6;
}

/* MOBILE */
@media(max-width:900px){
  .cx-reliability-metrics,
  .cx-reliability-points {
    grid-template-columns: 1fr;
  }
}
/*Reliability & SLA Metrics end */

/*FAQ section start */
/* === FAQ SECTION === */
.cx-faq-section {
  padding: 90px 24px;
  background: linear-gradient(180deg,#fffdf8,#ffffff);
}

/* HEADER */
.cx-faq-head {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 80px;
}

.cx-faq-head h2 {
  font-size: 2.6rem;
  font-weight: 900;
  color: #3a2005;
}

.cx-faq-head p {
  margin-top: 16px;
  font-size: 1.05rem;
  line-height: 1.7;
  color: #6b4a20;
}

/* FAQ LIST */
.cx-faq-list {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  gap: 18px;
}

/* ITEM */
.cx-faq-item {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(0,0,0,.08);
  overflow: hidden;
  opacity: 0;
  transform: translateY(24px);
}

/* QUESTION */
.cx-faq-question {
  width: 100%;
  padding: 22px 26px;
  background: none;
  border: none;
  text-align: left;
  font-size: 1.05rem;
  font-weight: 800;
  color: #3a2005;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.cx-faq-icon {
  width: 18px;
  height: 18px;
  position: relative;
}

.cx-faq-icon::before,
.cx-faq-icon::after {
  content: "";
  position: absolute;
  background: #f18613;
}

.cx-faq-icon::before {
  width: 18px;
  height: 2px;
  top: 8px;
  left: 0;
}

.cx-faq-icon::after {
  width: 2px;
  height: 18px;
  top: 0;
  left: 8px;
  transition: transform .3s ease;
}

/* ANSWER */
.cx-faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 26px;
  font-size: .95rem;
  line-height: 1.7;
  color: #6b4a20;
  transition: max-height .4s ease, padding .4s ease;
}

/* ACTIVE STATE */
.cx-faq-item.active .cx-faq-answer {
  max-height: 240px;
  padding: 0 26px 22px;
}

.cx-faq-item.active .cx-faq-icon::after {
  transform: rotate(90deg);
}

/* MOBILE */
@media(max-width:900px){
  .cx-faq-head h2 {
    font-size: 2.2rem;
  }
}
/*FAQ section end */

/*Design high-impact final CTA start */
/* === FINAL CTA === */
.cx-final-cta {
  padding: 90px 24px;
  background:
    radial-gradient(circle at top, rgba(241,134,19,.25), transparent 60%),
    linear-gradient(135deg,#3a2005,#f18613);
  color: #fff;
  position: relative;
  overflow: hidden;
}

/* subtle glow */
.cx-final-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(255,255,255,.08), transparent 70%);
  pointer-events: none;
}

/* CONTENT */
.cx-final-cta-inner {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.cx-final-cta-inner h2 {
  font-size: clamp(2.2rem,4vw,3rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 18px;
}

.cx-final-cta-inner p {
  font-size: 1.05rem;
  line-height: 1.7;
  opacity: .95;
  max-width: 680px;
  margin: 0 auto 36px;
}

/* ACTIONS */
.cx-cta-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

/* TRUST STRIP */
.cx-cta-trust {
  display: flex;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
  font-weight: 700;
  font-size: .9rem;
  opacity: .95;
}

.cx-cta-trust span {
  position: relative;
  padding-left: 14px;
}

.cx-cta-trust span::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #ffddb4;
}

/* MOBILE */
@media(max-width:900px){
  .cx-final-cta {
    padding: 120px 20px;
  }
}
/*Design high-impact final CTA end */
/* Solution page end */

/* Pricing page start */
/* Pricing Hero Section start */
.pricing-hero {
  padding: 120px 0 100px;
  background: linear-gradient(180deg,#fffaf3,#ffffff);
  overflow: hidden;
}

.pricing-hero-inner {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 60px;
  align-items: center;
}

/* LEFT */
.pricing-eyebrow {
  display: inline-block;
  font-weight: 800;
  font-size: .85rem;
  letter-spacing: .08em;
  color: #f18613;
  margin-bottom: 10px;
}

.pricing-badge {
  display: inline-block;
  margin-bottom: 16px;
  padding: 6px 14px;
  font-size: .75rem;
  font-weight: 800;
  color: #1b8f3a;
  background: rgba(27,143,58,.1);
  border-radius: 999px;
}

.pricing-hero-content h1 {
  font-size: clamp(2.1rem, 4vw, 3rem);
  font-weight: 900;
  color: #3a2005;
  line-height: 1.15;
}

.pricing-hero-content p {
  margin-top: 18px;
  max-width: 560px;
  color: #6b4a20;
  font-weight: 500;
}

.pricing-hero-actions {
  display: flex;
  gap: 18px;
  margin-top: 28px;
}

.pricing-hero-trust {
  display: flex;
  gap: 18px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.pricing-hero-trust span {
  background: #fff;
  border-radius: 999px;
  padding: 8px 16px;
  font-size: .85rem;
  font-weight: 700;
  box-shadow: 0 10px 30px rgba(58,32,5,.08);
}

/* CHANNELS */
.pricing-channels {
  display: flex;
  gap: 14px;
  margin-top: 18px;
}

.pricing-channels span {
  font-size: .8rem;
  font-weight: 800;
  padding: 6px 14px;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(58,32,5,.08);
  color: #3a2005;
}

/* RIGHT */
.pricing-metrics {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.metric-card {
  background: #fff;
  border-radius: 18px;
  padding: 26px;
  box-shadow: 0 20px 60px rgba(0,0,0,.12);
  text-align: center;
  animation: float 6s ease-in-out infinite;
}

.metric-card strong {
  display: block;
  font-size: 2rem;
  font-weight: 900;
  color: #3a2005;
}

.metric-card span {
  font-size: .9rem;
  font-weight: 600;
  color: #6b4a20;
}

.metric-card.highlight {
  border: 2px solid #f18613;
  background: linear-gradient(180deg,#fff6ea,#ffffff);
}

/* FLOAT */
@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
  100% { transform: translateY(0); }
}

/* ENTRY ANIMATIONS */
[data-animate] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .8s ease, transform .8s ease;
}

[data-animate].in-view {
  opacity: 1;
  transform: translateY(0);
}

[data-animate="fade-left"] {
  transform: translateX(20px);
}

[data-animate="fade-left"].in-view {
  transform: translateX(0);
}

/* MOBILE */
@media (max-width: 768px) {
  .pricing-hero {
    padding: 90px 0 70px;
  }

  .pricing-hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .pricing-metrics {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
  }
}
/* Pricing Hero Section end */

/* How Conecsy Pricing worksstart */
.pricing-framework {
  padding: 100px 0;
  background: linear-gradient(180deg,#fffaf3,#ffffff);
}

/* HEADER */
.framework-header {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.framework-eyebrow {
  display: inline-block;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .1em;
  color: #f18613;
  margin-bottom: 10px;
}

.framework-header h2 {
  font-size: clamp(1.9rem, 3vw, 2.4rem);
  font-weight: 900;
  color: #3a2005;
}

.framework-header p {
  margin-top: 14px;
  color: #6b4a20;
  font-weight: 500;
}

/* FLOW */
.framework-flow {
  margin-top: 70px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  gap: 42px;
}

/* STEP */
.framework-step {
  display: flex;
  gap: 26px;
  align-items: flex-start;
  padding-left: 8px;
  position: relative;
}

.framework-step::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 42px;
  bottom: -42px;
  width: 1px;
  background: rgba(0,0,0,0.08);
}

.framework-step:last-child::before {
  display: none;
}

/* MARKER */
.step-marker {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #f18613;
  color: #f18613;
  font-weight: 900;
  font-size: .85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* CONTENT */
.step-content h4 {
  font-size: 1.3rem;
  font-weight: 900;
  margin-bottom: 6px;
  color: #3a2005;
}

.step-content p {
  color: #6b4a20;
  font-weight: 500;
  line-height: 1.55;
}

/* HIGHLIGHT STEP */
.framework-step.highlight .step-marker {
  background: linear-gradient(135deg,#f18613,#ffb86a);
  color: #fff;
  border-color: transparent;
}

/* MOBILE */
@media (max-width: 768px) {
  .framework-flow {
    gap: 34px;
  }

  .framework-step {
    gap: 18px;
  }

  .step-content h4 {
    font-size: 1.15rem;
  }
}
/*How Conecsy Pricing works end */

/* Choose the Right Plan  start */
.cx-pricing-plans {
  padding: 110px 0;
  background: linear-gradient(180deg,#fffaf3,#ffffff);
}

/* HEADER */
.cx-pricing-header {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.cx-eyebrow {
  display: inline-block;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .12em;
  color: #f18613;
  margin-bottom: 8px;
}

.cx-pricing-header h2 {
  font-size: clamp(2rem, 3vw, 2.5rem);
  font-weight: 900;
  color: #3a2005;
}

.cx-pricing-header p {
  margin-top: 14px;
  color: #6b4a20;
  font-weight: 500;
}

/* GRID */
.cx-pricing-grid {
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 36px;
}

/* PLAN */
.cx-plan {
  background: #ffffff;
  border-radius: 18px;
  padding: 40px 36px;
  border: 1px solid rgba(0,0,0,0.06);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .4s ease, transform .4s ease;
}

.cx-plan.reveal {
  opacity: 1;
  transform: translateY(0);
}

.cx-plan h3 {
  font-size: 1.45rem;
  font-weight: 900;
  color: #3a2005;
}

.cx-plan-desc {
  margin: 8px 0 22px;
  font-size: .9rem;
  color: #6b4a20;
}

/* FEATURED */
.cx-featured {
  border-color: #f18613;
  background: #fffdf9;
}

.cx-plan-tag {
  display: inline-block;
  margin-bottom: 10px;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .08em;
  color: #f18613;
}

/* LIST */
.cx-plan ul {
  list-style: none;
  padding: 0;
  margin-bottom: 28px;
}

.cx-plan ul li {
  margin: 8px 0;
  font-size: .9rem;
  color: #3a2005;
}

/* FOOTNOTE */
.cx-pricing-note {
  margin-top: 40px;
  text-align: center;
  font-size: .85rem;
  color: #6b4a20;
}

/* MOBILE */
@media (max-width: 768px) {
  .cx-pricing-grid {
    grid-template-columns: 1fr;
  }

  .cx-plan {
    padding: 34px 30px;
  }
}
/* Choose the Right Plan  end */

/*Channel-Wise Pricing section start */

.cx-channel-pricing-engaged {
  padding: 120px 0;
  background:
    radial-gradient(1200px 300px at 50% 0%, rgba(241,134,19,0.06), transparent),
    linear-gradient(180deg,#fffaf3,#ffffff);
  position: relative;
}

/* ---------- HEADER ---------- */
.cx-channel-header {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.cx-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: #f18613;
  margin-bottom: 8px;
}

.cx-channel-header h2 {
  font-size: clamp(2rem, 3vw, 2.5rem);
  font-weight: 900;
  color: #3a2005;
  letter-spacing: -0.02em;
}

.cx-channel-header p {
  margin-top: 14px;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
  color: #6b4a20;
  font-weight: 500;
}

/* ---------- TABS ---------- */
.cx-channel-tabs {
  margin-top: 50px;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.cx-tab {
  padding: 10px 20px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.12);
  font-size: 0.85rem;
  font-weight: 700;
  color: #3a2005;
  cursor: pointer;
  transition: background .25s ease, color .25s ease, transform .25s ease;
}

.cx-tab:hover {
  transform: translateY(-1px);
}

.cx-tab.active {
  background: #f18613;
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 8px 22px rgba(241,134,19,0.18);
}

/* ---------- CONTENT ---------- */
.cx-channel-content {
  margin-top: 70px;
}

/* PANEL */
.cx-channel-panel {
  display: none;
}

.cx-channel-panel.active {
  display: block;
  animation: cxFadeUp .45s ease both;
}

@keyframes cxFadeUp {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* PANEL GRID */
.cx-panel-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 50px;
  align-items: center;
  padding: 40px 44px;
  border-radius: 24px;
  background: linear-gradient(180deg,#ffffff,#fffdf9);
  border: 1px solid rgba(0,0,0,0.06);
}

/* LEFT CONTENT */
.cx-panel-grid h3 {
  font-size: 1.55rem;
  font-weight: 900;
  color: #3a2005;
  letter-spacing: -0.01em;
}

.cx-panel-grid p {
  margin: 10px 0 20px;
  color: #6b4a20;
  font-weight: 500;
  max-width: 520px;
}

.cx-panel-grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.cx-panel-grid ul li {
  position: relative;
  margin: 8px 0;
  padding-left: 18px;
  font-size: 0.9rem;
  font-weight: 500;
  color: #3a2005;
}

.cx-panel-grid ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #f18613;
  font-weight: 900;
}

/* ---------- PRICE BOX ---------- */
.cx-price-box {
  text-align: center;
  padding: 34px 30px;
  border-radius: 20px;
  background: linear-gradient(180deg,#ffffff,#fffaf3);
  border: 1px solid rgba(0,0,0,0.08);
  position: relative;
}

/* SUBTLE ACCENT BORDER */
.cx-price-box::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 20px;
  background: linear-gradient(
    135deg,
    rgba(241,134,19,0.25),
    rgba(255,184,106,0.25)
  );
  z-index: -1;
}

/* PRICE TEXT */
.price-label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  font-weight: 800;
  color: #6b4a20;
  margin-bottom: 8px;
}

.cx-price {
  font-size: 2.2rem;
  font-weight: 900;
  color: #3a2005;
  letter-spacing: -0.02em;
}

.price-unit {
  display: block;
  margin-top: 6px;
  font-size: 0.8rem;
  color: #6b4a20;
}

/* ---------- FOOTNOTE ---------- */
.cx-channel-note {
  margin-top: 36px;
  text-align: center;
  font-size: 0.85rem;
  color: #6b4a20;
  opacity: 0.85;
}

/* ---------- MOBILE ---------- */
@media (max-width: 768px) {
  .cx-panel-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 30px 26px;
  }

  .cx-channel-tabs {
    gap: 8px;
  }

  .cx-tab {
    padding: 8px 16px;
    font-size: 0.8rem;
  }

  .cx-price {
    font-size: 1.9rem;
  }
}
/*Channel-Wise Pricing section end */

.cx-volume-pricing {
  padding: 120px 0;
  background: linear-gradient(180deg,#ffffff,#fffaf3);
}

/* HEADER */
.cx-volume-header {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.cx-volume-header h2 {
  font-size: clamp(2rem, 3vw, 2.5rem);
  font-weight: 900;
  color: #3a2005;
}

.cx-volume-header p {
  margin-top: 14px;
  color: #6b4a20;
  font-weight: 500;
}

/* SCALE */
.cx-volume-scale {
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 20px;
}

.cx-volume-step {
  padding: 20px;
  text-align: center;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.08);
  cursor: pointer;
  transition: background .3s ease, transform .3s ease;
}

.cx-volume-step.active {
  background: #fff6ea;
  border-color: #f18613;
}

.cx-volume-step:hover {
  transform: translateY(-2px);
}

.step-range {
  font-weight: 900;
  color: #3a2005;
}

.step-price {
  margin-top: 6px;
  font-size: .85rem;
  color: #6b4a20;
}

/* DETAILS */
.cx-volume-details {
  margin-top: 60px;
}

.cx-volume-panel {
  display: none;
  max-width: 760px;
  margin: 0 auto;
}

.cx-volume-panel.active {
  display: block;
}

.cx-volume-panel h3 {
  font-size: 1.45rem;
  font-weight: 900;
  color: #3a2005;
}

.cx-volume-panel p {
  margin: 10px 0 20px;
  color: #6b4a20;
}

.cx-volume-panel ul {
  list-style: none;
  padding: 0;
}

.cx-volume-panel ul li {
  margin: 8px 0;
  padding-left: 18px;
  position: relative;
  color: #3a2005;
}

.cx-volume-panel ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #f18613;
  font-weight: 900;
}

/* NOTE */
.cx-volume-note {
  margin-top: 40px;
  text-align: center;
  font-size: .85rem;
  color: #6b4a20;
}

/* MOBILE */
@media (max-width: 768px) {
  .cx-volume-scale {
    grid-template-columns: 1fr;
  }
}
/*Volume-Based Pricing Advantage  end */

/* WHAT’S INCLUDED start */

.cx-included-pro {
  padding: 120px 0;
  background: linear-gradient(180deg,#ffffff,#fffaf3);
}

/* HEADER */
.cx-included-head {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.cx-included-head h2 {
  font-size: clamp(2.1rem, 3vw, 2.6rem);
  font-weight: 900;
  color: #3a2005;
}

.cx-included-head p {
  margin-top: 14px;
  color: #6b4a20;
  font-size: 1rem;
}

/* GRID */
.cx-included-cards {
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 32px;
}

/* CARD */
.cx-include-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 34px 28px;
  border: 1px solid rgba(0,0,0,0.08);
  transition: transform .25s ease, box-shadow .25s ease;
}

.cx-include-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

/* CARD HEADER */
.cx-card-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.cx-icon {
  font-size: 1.6rem;
}

.cx-include-card h3 {
  font-size: 1.2rem;
  font-weight: 900;
  color: #3a2005;
}

/* LIST */
.cx-include-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.cx-include-card ul li {
  position: relative;
  padding-left: 18px;
  margin: 10px 0;
  font-size: 0.95rem;
  color: #3a2005;
}

.cx-include-card ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #f18613;
  font-weight: 900;
}

/* FOOTNOTE */
.cx-included-foot {
  margin-top: 50px;
  text-align: center;
  font-size: 0.9rem;
  color: #6b4a20;
}

/* MOBILE */
@media (max-width: 992px) {
  .cx-included-cards {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 576px) {
  .cx-included-cards {
    grid-template-columns: 1fr;
  }
}
/* WHAT’S INCLUDED  end */

/*Custom Pricing for High-Scale Communication start */
.cx-enterprise-pricing {
  padding: 120px 0;
  background: linear-gradient(180deg,#ffffff,#fffaf3);
}

/* HEADER */
.cx-enterprise-head {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.cx-enterprise-head h2 {
  font-size: clamp(2.1rem, 3vw, 2.6rem);
  font-weight: 900;
  color: #3a2005;
}

.cx-enterprise-head p {
  margin-top: 14px;
  color: #6b4a20;
  font-size: 1rem;
}

/* GRID */
.cx-enterprise-grid {
  margin-top: 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

/* CARD */
.cx-enterprise-card {
  position: relative;
  background: #ffffff;
  padding: 42px 36px;
  border-radius: 22px;
  border: 1px solid rgba(0,0,0,0.08);
}

/* FEATURED */
.cx-enterprise-card.featured {
  border: 2px solid #f18613;
  background: linear-gradient(180deg,#fff6ea,#ffffff);
}

/* BADGE */
.cx-badge {
  position: absolute;
  top: -14px;
  right: 24px;
  background: linear-gradient(135deg,#f18613,#ffb86a);
  color: #ffffff;
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 800;
}

/* TITLES */
.cx-enterprise-card h3 {
  font-size: 1.5rem;
  font-weight: 900;
  color: #3a2005;
}

.cx-enterprise-card p {
  margin: 12px 0 22px;
  color: #6b4a20;
}

/* LIST */
.cx-enterprise-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.cx-enterprise-card ul li {
  position: relative;
  padding-left: 18px;
  margin: 10px 0;
  font-size: 0.95rem;
  color: #3a2005;
}

.cx-enterprise-card ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #f18613;
  font-weight: 900;
}

/* HIGHLIGHT */
.cx-highlight {
  margin-top: 26px;
  padding: 14px 16px;
  border-radius: 12px;
  background: #fffaf3;
  font-size: 0.9rem;
  color: #3a2005;
  font-weight: 600;
}

/* FOOTNOTE */
.cx-enterprise-note {
  margin-top: 50px;
  text-align: center;
  font-size: 0.9rem;
  color: #6b4a20;
}

/* MOBILE */
@media (max-width: 768px) {
  .cx-enterprise-grid {
    grid-template-columns: 1fr;
  }
}
/*Custom Pricing for High-Scale Communication end */

/*Pricing FAQ  start */

.cx-pricing-faq-v2 {
  padding: 120px 0;
  background: #ffffff;
}

/* HEADER */
.cx-pricing-faq-head {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.cx-pricing-faq-head h2 {
  font-size: clamp(2.1rem, 3vw, 2.6rem);
  font-weight: 900;
  color: #3a2005;
}

.cx-pricing-faq-head p {
  margin-top: 14px;
  color: #6b4a20;
}

/* LIST */
.cx-pricing-faq-list {
  margin-top: 80px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* ITEM */
.cx-pricing-faq-item {
  border-bottom: 1px solid rgba(0,0,0,0.08);
  padding: 18px 0;
}

/* REMOVE DEFAULT MARKER */
.cx-pricing-faq-item summary {
  list-style: none;
  cursor: pointer;
  font-size: 1.05rem;
  font-weight: 800;
  color: #3a2005;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cx-pricing-faq-item summary::-webkit-details-marker {
  display: none;
}

/* CUSTOM ICON */
.cx-pricing-faq-item summary::after {
  content: "+";
  font-size: 1.4rem;
  font-weight: 800;
  color: #f18613;
  transition: transform .3s ease;
}

/* OPEN STATE */
.cx-pricing-faq-item[open] summary::after {
  transform: rotate(45deg);
}

/* ANSWER */
.cx-pricing-faq-item p {
  margin-top: 14px;
  font-size: 0.95rem;
  color: #6b4a20;
  line-height: 1.6;
}

/* MOBILE */
@media (max-width: 768px) {
  .cx-pricing-faq-item summary {
    font-size: 1rem;
  }
}
/*Pricing FAQ  end */

/* Pricing CTA  start */
/* =========================================
   CONECSY PRICING CTA – ABOUT STYLE
========================================= */

.cx-pricing-cta-about-style {
  padding: 120px 0;
  background: linear-gradient(135deg,#5b2d06,#d77a18);
  color: #ffffff;
}

/* LAYOUT */
.cx-pricing-cta-layout {
  display: grid;
  grid-template-columns: 2fr 1.2fr;
  gap: 80px;
  align-items: center;
}

/* LEFT */
.cx-pricing-cta-left h2 {
  font-size: clamp(2.3rem, 3.5vw, 3rem);
  font-weight: 900;
  line-height: 1.2;
}

.cx-pricing-cta-left h2 strong {
  color: #ffffff;
}

.cx-pricing-cta-left p {
  margin-top: 20px;
  max-width: 620px;
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.9);
}

/* BUTTONS */
.cx-pricing-cta-buttons {
  margin-top: 36px;
  display: flex;
  gap: 18px;
}

/* RIGHT */
.cx-pricing-cta-right {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* PILL */
.cx-pricing-pill {
  background: rgba(255,255,255,0.18);
  padding: 18px 24px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 1rem;
  backdrop-filter: blur(6px);
}

/* MOBILE */
@media (max-width: 768px) {
  .cx-pricing-cta-layout {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .cx-pricing-cta-buttons {
    flex-direction: column;
  }

  .cx-pricing-cta-buttons a {
    text-align: center;
  }
}

/*  Pricing CTA end */

/* Pricing page end */
