
@font-face {
font-family: "Inter-Regular";
src: url(../fonts/Inter-Regular.ttf) format("opentype");
}
@font-face {
font-family: "Inter-SemiBold";
src: url(../fonts/Inter-SemiBold.ttf) format("opentype");
}
@font-face {
font-family: "Inter-Medium";
src: url(../fonts/Inter-Medium.ttf) format("opentype");
}
@font-face {
font-family: "Inter-Bold";
src: url(../fonts/Inter-Bold.ttf) format("opentype");
}
@font-face {
font-family: "Inter-Black";
src: url(../fonts/Inter-Black.ttf) format("opentype");
}

* {
	margin: 0;
	padding: 0;
	outline: none;
	box-sizing: border-box;
}
::after, ::before {
box-sizing: border-box;
}
a {
	text-decoration: none;
}
body{font-size: 16px;color:var(--text2);line-height:1.65;overflow-x:hidden;}
:root{
  --bg:        #FFFFFF;
  --bg2:       #F6F8FF;
  --bg3:       #fbf0f0;
  --navy:      #ff7400;
  --navy-dark: #ff7400;
  --navy-lt:   #fbf0f0;
  --navy-mid:  #fbb7b7;
  --orange:    #ff7400;
  --orange-lt: #fff1ec;
  --orange-mid:#fdddd3;
  --text:      #000;
  --text2:     #3a3f5c;
  --muted:     #7880a4;
  --border:    #ffd6d8;
  --border2:   #f9cece;
  --white:     #FFFFFF;
  --shadow-sm: 0 2px 12px rgba(0,0,0,0.08);
  --shadow-md: 0 6px 30px rgba(0,0,0,0.12);
  --shadow-lg: 0 12px 50px rgba(0,0,0,0.16);
  --font:      'Plus Jakarta Sans', sans-serif;
  --display:   'Bricolage Grotesque', sans-serif;
  --radius:    14px;
  --radius-lg: 22px;
  --gradiant-bg: linear-gradient(to top, #2a2929, #ff7400);
  --gradiant-bg2: linear-gradient(to top, #2a2929, #ff7400);
  --green:       #16a34a;
  --green-lt:    #dcfce7;
  --red:         #dc2626;
  --red-lt:      #fee2e2;
  --purple:      #7c3aed;
  --purple-lt:   #ede9fe;
  --blue:        #2563eb;
  --blue-lt:     #dbeafe;
  
}
html{scroll-behavior:smooth;}

/* ═══════════════════════════════════════════
   Header
═══════════════════════════════════════════ */
.web-header{
	position:sticky;top:0;left:0;right:0;z-index:200;
  background:rgba(255,255,255,0.95);
  backdrop-filter:blur(16px);
  border-bottom:1px solid var(--border);
  box-shadow:0 1px 12px rgba(29,40,120,0.06);
}
.nav-inner{  display:flex;align-items:center;justify-content:space-between;height:80px;}
.nav-logo{display:flex;align-items:center;gap:10px;text-decoration:none;}
.nav-logo img{max-width:130px;}
.nav-right{display:flex;align-items:center;gap:10px;}
.nav-login{color:var(--navy);font-size:14px;font-weight:600;text-decoration:none;padding:8px 16px;border-radius:8px;border:1.5px solid var(--navy-mid);transition:all 0.2s;}
.nav-login:hover{background:var(--navy-lt);}
.nav-cta-btn{background:var(--navy);color:#fff;padding:9px 20px;border-radius:8px;font-size:13.5px;font-weight:700;text-decoration:none;transition:all 0.2s;white-space:nowrap;}
.nav-cta-btn:hover{background:var(--navy-dark);}

/* ═══════════════════════════════════════════
   UTILITY
═══════════════════════════════════════════ */
.tag-label{display:inline-flex;align-items:center;gap:6px;background:var(--navy-lt);border:1px solid var(--navy-mid);color:var(--navy);font-size:11.5px;font-weight:700;padding:5px 14px;border-radius:100px;letter-spacing:0.06em;text-transform:uppercase;margin-bottom:16px;}
.tag-orange{background:var(--orange-lt);border-color:var(--orange-mid);color:var(--orange);}
.sec-title{font-family:var(--display);font-size:clamp(1.9rem,3.8vw,2.9rem);font-weight:800;line-height:1.12;letter-spacing:-0.025em;color:var(--text);margin-bottom:14px;font-family: "Inter-Bold";}
.sec-sub{font-size:1rem;color:var(--text2);line-height:1.72;max-width:560px;}
.hl-navy{color:var(--navy);}
.hl-orange{color:var(--orange);}
.hl-grad{background:linear-gradient(135deg,var(--navy),var(--orange));-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text;}

/* Buttons */
.btn-navy{display:inline-flex;align-items:center;gap:8px;background:var(--navy);color:#fff;padding:13px 28px;border-radius:9px;font-size:14.5px;font-weight:700;text-decoration:none;border:none;cursor:pointer;font-family:var(--font);transition:all 0.22s;box-shadow:0 4px 20px rgba(29,40,120,0.28);}
.btn-navy:hover{background:var(--navy-dark);transform:translateY(-2px);box-shadow:0 8px 30px rgba(29,40,120,0.36);color:#fff;}
.btn-orange{display:inline-flex;align-items:center;gap:8px;background:var(--orange);color:#fff;padding:13px 28px;border-radius:9px;font-size:14.5px;font-weight:700;text-decoration:none;border:none;cursor:pointer;font-family:var(--font);transition:all 0.22s;box-shadow:0 4px 20px rgba(243,92,37,0.3);}
.btn-orange:hover{background:#d94c18;transform:translateY(-2px);box-shadow:0 8px 30px rgba(243,92,37,0.4);}
.btn-outline{display:inline-flex;align-items:center;gap:8px;background:transparent;color:var(--navy);padding:12px 26px;border-radius:9px;font-size:14.5px;font-weight:600;text-decoration:none;border:2px solid var(--navy);cursor:pointer;font-family:var(--font);transition:all 0.22s;}
.btn-outline:hover{background:var(--navy);color:#fff;}

/* Section padding */
section{padding:90px 0;}
section.alt{background:var(--bg2);}
section.navy-bg{background:var(--navy);}

/* Fade-in animation */
.fade-in{opacity:0;transform:translateY(22px);transition:opacity 0.6s ease,transform 0.6s ease;}
.fade-in.visible{opacity:1;transform:translateY(0);}



/* ═══════════════════════════════════════════
   HERO — two-column split
═══════════════════════════════════════════ */
.hero{
  padding:80px 0 80px;
  background:var(--bg);
  position:relative;overflow:hidden;
}
.hero::before{
  content:'';position:absolute;top:0;right:0;
  width:55%;height:100%;
  background:linear-gradient(160deg,var(--bg2) 0%,var(--navy-lt) 60%,rgba(243,92,37,0.06) 100%);
  clip-path:polygon(12% 0,100% 0,100% 100%,0 100%);
  z-index:0;
}
.hero-grid{
  display:grid;grid-template-columns:1fr 1fr;
  gap:40px;align-items:start;
  position:relative;z-index:1;
}
.hero-left{}
.hero-badge{
  display:inline-flex;align-items:center;gap:7px;
  background:var(--orange-lt);border:1px solid var(--orange-mid);
  color:var(--orange);font-size:12px;font-weight:700;
  padding:5px 14px;border-radius:100px;margin-bottom:22px;
}
.hero-badge .live-dot{width:7px;height:7px;border-radius:50%;background:var(--orange);animation:blink 1.5s infinite;}
@keyframes blink{0%,100%{opacity:1}50%{opacity:.3}}
.hero h1{
  font-family:var(--display);
  font-size:52px;
  font-weight:800;line-height:1.07;
  letter-spacing:-0.03em;
  color:var(--text);margin-bottom:22px;
     font-family: "Inter-Bold"; 
}
.hero h1 .line-navy{color:var(--navy);}
.hero h1 .line-orange{color:var(--orange);}
.hero-sub{
  font-size:1.05rem;color:var(--text2);
  line-height:1.75;margin-bottom:32px;max-width:500px;
}
.hero-actions{display:flex;gap:12px;flex-wrap:wrap;margin-bottom:36px;}
.hero-proof{display:flex;flex-wrap:wrap;gap:12px;}
.proof-pill{
  display:flex;align-items:center;gap:7px;
  font-size:13px;font-weight:600;color:var(--text2);
}
.proof-icon{
  width:26px;height:26px;border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  font-size:13px;
}
.pi-navy{background:var(--navy-lt);}
.pi-orange{background:var(--orange-lt);}

/* Hero Right — Demo form */
.hero-form-card{
  background:#fff;border-radius:var(--radius-lg);
  border:1px solid var(--border);
  box-shadow:var(--shadow-lg);
  padding:36px 32px;
  position:relative;z-index:2;
}
.hero-form-card::before{
  content:'';position:absolute;top:0;left:24px;right:24px;
  height:3px;border-radius:0 0 4px 4px;
  background:linear-gradient(90deg,var(--navy),var(--orange));
}
.hfc-title{font-family:var(--display);font-size:20px;font-weight:800;color:var(--text);margin-bottom:4px;font-family: "Inter-Black";}
.hfc-sub{font-size:13px;color:var(--muted);margin-bottom:24px;line-height:1.5;}
.form-row{display:grid;grid-template-columns:1fr 1fr;gap:12px;}
.fg{display:flex;flex-direction:column;gap:5px;margin-bottom:12px;}
.fg.full{grid-column:span 2;}
.fg label{font-size:11.5px;font-weight:700;color:var(--text2);letter-spacing:0.03em;}
.fg input,.fg select,.fg textarea{
  width:100%;
  background:#fafbff;
  border:1.5px solid var(--border);
  border-radius:8px;
  padding:10px 13px;
  font-size:13.5px;
  color:var(--text);
  font-family:var(--font);
  outline:none;
  transition:border-color 0.2s,background 0.2s;
  height:42px;
}
.fg input:focus,.fg select:focus,.fg textarea:focus{
  border-color:var(--navy);background:#fff;
}
.fg input::placeholder,.fg textarea::placeholder{color:#bbbfce;}
.fg select{color:var(--text2);}
.fg select option{color:var(--text);}
.fg textarea{min-height:72px;resize:vertical;}
.slot-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:7px;margin-bottom:12px;}
.time-slot{
  background:#fafbff;border:1.5px solid var(--border);
  border-radius:7px;padding:7px 5px;
  text-align:center;font-size:11.5px;font-weight:700;
  color:var(--text2);cursor:pointer;transition:all 0.15s;
}
.time-slot:hover,.time-slot.sel{
  background:var(--navy-lt);border-color:var(--navy);color:var(--navy);
}
.form-cta{
  width:100%;padding:14px;border-radius:9px;
  background:var(--navy);color:#fff;
  font-family:var(--display);font-size:15px;font-weight:800;
  cursor:pointer;border:none;
  transition:all 0.22s;
  box-shadow:0 5px 20px rgba(29,40,120,0.3);
  letter-spacing:-0.01em;
}
.form-cta:hover{background:var(--navy-dark);transform:translateY(-2px);box-shadow:0 8px 28px rgba(29,40,120,0.4);}
.form-note{font-size:11px;color:var(--muted);text-align:center;margin-top:10px;line-height:1.5;}
.form-success{display:none;text-align:center;padding:24px 12px;}
.fs-em{font-size:52px;margin-bottom:12px;}
.fs-title{font-family:var(--display);font-size:20px;font-weight:800;color:var(--navy);margin-bottom:8px;}
.fs-sub{font-size:13px;color:var(--text2);line-height:1.65;}

/* ═══════════════════════════════════════════
   STATS STRIP
═══════════════════════════════════════════ */
.stats-strip{
  background:var(--navy);padding:0;
}
.stats-inner{
  display:grid;grid-template-columns:repeat(4,1fr);
}
.stat-cell{
  padding:32px 20px;text-align:center;
  border-right:1px solid rgba(255,255,255,0.1);
  position:relative;
}
.stat-cell:last-child{border-right:none;}
.stat-num{
  font-family:var(--display);
  font-size:2.6rem;font-weight:800;
  line-height:1;color:#fff;font-family: "Inter-Bold";
}
.stat-num .accent{color:var(--orange);}
.stat-lbl{font-size:12px;color:rgba(255,255,255,0.55);margin-top:5px;font-weight:500;letter-spacing:0.02em;}



/* ═══════════════════════════════════════════
   SECTION WRAPPER
═══════════════════════════════════════════ */
.wf-section {
  background: var(--bg);
  padding: 90px 0 100px;
  overflow: hidden;
  position: relative;
  font-family: 'Plus Jakarta Sans', sans-serif;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

/* Subtle ambient blobs */
.wf-section::before {
  content: '';
  position: absolute;
  top: -80px; left: -80px;
  width: 420px; height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(29,40,120,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.wf-section::after {
  content: '';
  position: absolute;
  bottom: -80px; right: -80px;
  width: 380px; height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(243,92,37,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.wf-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
  position: relative;
  z-index: 2;
}

/* ═══════════════════════════════════════════
   SECTION HEADER
═══════════════════════════════════════════ */
.wf-header {
  text-align: center;
  margin-bottom: 56px;
}
.wf-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--orange-lt);
  border: 1px solid var(--orange-mid);
  color: var(--orange);
  font-size: 11.5px;
  font-weight: 700;
  padding: 5px 15px;
  border-radius: 100px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.wf-eyebrow .pulse {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--orange);
  animation: pulseDot 1.5s infinite;
}
@keyframes pulseDot {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.35; transform: scale(0.7); }
}
.wf-title {
    font-family: "Inter-Bold";
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--text);
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 14px;
}
.wf-title .hl-navy   { color: var(--navy); }
.wf-title .hl-orange { color: var(--orange); }
.wf-sub {
  font-size: 15px;
  color: var(--text2);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.72;
}

/* ═══════════════════════════════════════════
   SOURCE ICONS ROW
═══════════════════════════════════════════ */
.source-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 0;
}
.src-icon {
  width: 54px; height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  border: 2.5px solid var(--border);
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
  flex-shrink: 0;
  opacity: 0;
  transform: translateY(-18px);
  background: var(--white);
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
     background: transparent !important;
    border: 0 !important; 
}
.src-icon.visible {
  opacity: 1;
  transform: translateY(0);
}
.src-icon:hover {
  transform: translateY(-5px) scale(1.08);
  border-color: var(--navy-mid);
  box-shadow: 0 8px 24px rgba(29,40,120,0.18);
}
.src-icon .icon { width: 100%; height: 100%;border-radius: 50%;overflow:hidden;}
.src-icon .icon img{width:100%;height:100%;object-fit:cover;}
.src-icon.lit {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px var(--orange-mid), 0 8px 24px rgba(243,92,37,0.25);
  transform: translateY(-4px) scale(1.06);
}
.src-tip {
  position: absolute;
  bottom: -28px; left: 50%;
  transform: translateX(-50%);
  background: var(--navy);
  color: #fff;
  font-size: 9.5px; font-weight: 600;
  padding: 3px 8px; border-radius: 5px;
  white-space: nowrap; opacity: 0;
  pointer-events: none; transition: opacity 0.2s;
  font-family: 'Plus Jakarta Sans', sans-serif;
  z-index: 20;
}
.src-icon:hover .src-tip { opacity: 1; }

/* Platform brand fills */
.src-fb   { background: #1877F2; border-color: #1877F2; }
.src-99   { background: #D42D27; border-color: #D42D27; }
.src-mb   { background: #C7272D; border-color: #C7272D; }
.src-im   { background: #1a1a6c; border-color: #1a1a6c; }
.src-hc   { background: var(--purple); border-color: var(--purple); }
.src-sc   { background: #0097d1; border-color: #0097d1; }
.src-jd   { background: #ffd700; border-color: #e6c200; }
.src-gf   { background: #4285F4; border-color: #4285F4; }
.src-wp   { background: #21759B; border-color: #21759B; }

/* ── Funnel arrow ── */
.funnel-arrow {
  display: flex; flex-direction: column; align-items: center;
  margin: 8px 0 6px; gap: 0;
}
.funnel-line {
  width: 2px; height: 30px;
  background: linear-gradient(180deg, var(--navy-mid), var(--orange-mid));
}
.funnel-arrowhead {
  width: 0; height: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 10px solid var(--navy-mid);
}

/* ═══════════════════════════════════════════
   WETROO HUB NODE
═══════════════════════════════════════════ */
.hub-wrap {
  display: flex; justify-content: center;
  margin-bottom: 6px;
}
.hub-node {
  background: var(--white);
  border: 2.5px solid var(--navy-mid);
  border-radius: 16px;
  padding: 14px 30px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: 0 4px 20px rgba(29,40,120,0.14);
  cursor: pointer;
  transition: all 0.3s;
  position: relative; overflow: hidden;
}
.hub-node::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--navy-lt), var(--orange-lt));
  opacity: 0; transition: opacity 0.3s;
}
.hub-node:hover::before, .hub-node.lit::before { opacity: 1; }
.hub-node.lit {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px var(--orange-mid), 0 10px 32px rgba(243,92,37,0.2);
  transform: scale(1.04);
}
.hub-logo {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 22px; font-weight: 800;
  color: var(--navy); letter-spacing: -0.04em;
  position: relative; z-index: 1;
}
.hub-logo em { color: var(--orange); font-style: normal; }
.hub-crm {
  font-size: 10px; font-weight: 700;
  color: var(--navy); background: var(--navy-lt);
  padding: 3px 9px; border-radius: 6px;
  position: relative; z-index: 1; letter-spacing: 0.05em;
}

/* ═══════════════════════════════════════════
   AI AGENT NODE
═══════════════════════════════════════════ */
.ai-wrap {
  display: flex; justify-content: center; margin-bottom: 6px;
}
.ai-node {
  background: var(--navy);
  border: 2px solid var(--navy-dark);
  border-radius: 14px;
  padding: 12px 28px;
  display: flex; align-items: center; gap: 10px;
  cursor: pointer; transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(29,40,120,0.25);
}
.ai-node.lit {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px var(--orange-mid), 0 8px 28px rgba(29,40,120,0.3);
  transform: scale(1.04);
}
.ai-emoji { font-size: 24px; }
.ai-label {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 16px; font-weight: 700; color: #fff;
}

/* ═══════════════════════════════════════════
   FLOW SPLIT — 3-COLUMN GRID
═══════════════════════════════════════════ */
.flow-split {
  display: grid;
  grid-template-columns: 1fr 40px 1fr;
  gap: 0;
  align-items: start;
  position: relative;
}
.path-col { padding: 0 6px; }
.path-col-left  { padding-right: 14px; }
.path-col-right { padding-left: 14px; }
.center-divider {
  display: flex; flex-direction: column; align-items: center;
  padding-top: 8px;
}
.center-divider-line {
  width: 1px; height: 100%;
  background: linear-gradient(180deg, var(--border2), var(--border));
}

/* ── Step connector lines ── */
.flow-step { display: flex; flex-direction: column; align-items: center; }
.step-line {
  width: 2px; height: 28px;
  background: var(--border2);
  position: relative; overflow: hidden; flex-shrink: 0;
}
.step-line .fill {
  position: absolute; top: 0; left: 0; right: 0;
  height: 0%;
  transition: height 0.45s ease;
}
.step-line.navy-line  .fill { background: linear-gradient(180deg, var(--navy), #3142b8); }
.step-line.green-line .fill { background: linear-gradient(180deg, var(--green), #15803d); }
.step-line.orange-line .fill { background: linear-gradient(180deg, var(--orange), #ff8a56); }
.step-line.red-line   .fill { background: linear-gradient(180deg, var(--red), #b91c1c); }
.step-line.blue-line  .fill { background: linear-gradient(180deg, var(--blue), #1d4ed8); }
.step-line.activated .fill { height: 100%; }

/* ═══════════════════════════════════════════
   NODE CARDS
═══════════════════════════════════════════ */
.node {
  width: 100%;
  border-radius: 12px;
  padding: 13px 15px;
  display: flex; align-items: center; gap: 10px;
  cursor: pointer;
  transition: all 0.28s;
  position: relative; overflow: hidden;
  border: 2px solid var(--border);
  background: var(--white);
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.node:hover { transform: translateY(-3px); box-shadow: 0 6px 22px rgba(29,40,120,0.12); }

/* ── Node Themes ── */

/* Qualified — green accent */
.node-qualified {
  border-color: #bbf7d0;
  background: linear-gradient(135deg, #f0fdf4, var(--white));
}
.node-qualified.lit {
  border-color: var(--green);
  box-shadow: 0 0 0 3px var(--green-lt), 0 8px 24px rgba(22,163,74,0.18);
  transform: translateY(-3px);
}

/* No Reply — red accent */
.node-noreply {
  border-color: #fecaca;
  background: linear-gradient(135deg, #fff5f5, var(--white));
}
.node-noreply.lit {
  border-color: var(--red);
  box-shadow: 0 0 0 3px var(--red-lt), 0 8px 24px rgba(220,38,38,0.18);
  transform: translateY(-3px);
}

/* Sales — navy accent */
.node-sales {
  border-color: var(--navy-mid);
  background: linear-gradient(135deg, var(--navy-lt), var(--white));
}
.node-sales.lit {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px var(--navy-lt), 0 8px 24px rgba(29,40,120,0.2);
  transform: translateY(-3px);
}

/* Interested — green */
.node-interested {
  border-color: #bbf7d0;
  background: linear-gradient(135deg, #f0fdf4, var(--white));
}
.node-interested.lit {
  border-color: var(--green);
  box-shadow: 0 0 0 3px var(--green-lt), 0 6px 20px rgba(22,163,74,0.15);
  transform: translateY(-3px);
}

/* Not Interested — orange accent */
.node-notint {
  border-color: var(--orange-mid);
  background: linear-gradient(135deg, var(--orange-lt), var(--white));
}
.node-notint.lit {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px var(--orange-lt), 0 6px 20px rgba(243,92,37,0.2);
  transform: translateY(-3px);
}

/* Nurture — purple accent */
.node-nurture {
  border-color: #ddd6fe;
  background: linear-gradient(135deg, var(--purple-lt), var(--white));
}
.node-nurture.lit {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px var(--purple-lt), 0 6px 20px rgba(124,58,237,0.2);
  transform: translateY(-3px);
}

/* Reminder — blue accent */
.node-reminder {
  border-color: var(--blue-lt);
  background: linear-gradient(135deg, #eff6ff, var(--white));
}
.node-reminder.lit {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px var(--blue-lt), 0 6px 20px rgba(37,99,235,0.18);
  transform: translateY(-3px);
}

/* Auto message — orange */
.node-auto {
  border-color: var(--orange-mid);
  background: linear-gradient(135deg, var(--orange-lt), var(--white));
}
.node-auto.lit {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px var(--orange-lt), 0 6px 20px rgba(243,92,37,0.18);
  transform: translateY(-3px);
}

/* Lead Won — navy filled — special */
.node-won {
  background: var(--navy);
  border-color: var(--navy-dark);
  box-shadow: 0 4px 18px rgba(29,40,120,0.25);
}
.node-won .node-title { color: #fff; font-size: 15px; }
.node-won .node-desc  { color: rgba(255,255,255,0.65); }
@keyframes glowNavy {
  0%,100% { box-shadow: 0 0 0 4px rgba(29,40,120,0.25), 0 10px 32px rgba(29,40,120,0.3); }
  50%      { box-shadow: 0 0 0 8px rgba(29,40,120,0.12), 0 16px 48px rgba(29,40,120,0.4); }
}
.node-won.lit { animation: glowNavy 2s ease infinite; transform: translateY(-3px); }

/* Long Term — orange filled */
.node-longterm {
  background: linear-gradient(135deg, var(--orange), #ff7400);
  border-color: var(--orange);
  box-shadow: 0 4px 18px rgba(243,92,37,0.25);
}
.node-longterm .node-title { color: #fff; }
.node-longterm .node-desc  { color: rgba(255,255,255,0.75); }
@keyframes glowOrange {
  0%,100% { box-shadow: 0 0 0 4px var(--orange-mid), 0 10px 32px rgba(243,92,37,0.3); }
  50%      { box-shadow: 0 0 0 8px var(--orange-lt), 0 16px 48px rgba(243,92,37,0.45); }
}
.node-longterm.lit { animation: glowOrange 2s ease infinite; transform: translateY(-3px); }

/* ── Node internals ── */
.node-icon { font-size: 20px; flex-shrink: 0; line-height: 1; }
.node-body { flex: 1; min-width: 0; }
.node-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 13.5px; font-weight: 700;
  color: var(--text); line-height: 1.2;
}
.node-desc {
  font-size: 11px; color: var(--muted);
  margin-top: 2px; line-height: 1.4;
}
.node-badge {
  font-size: 10px; font-weight: 800;
  padding: 3px 9px; border-radius: 6px;
  flex-shrink: 0; letter-spacing: 0.04em;
  white-space: nowrap;
}
.nb-green  { background: var(--green-lt);  color: var(--green); }
.nb-red    { background: var(--red-lt);    color: var(--red); }
.nb-orange { background: var(--orange-lt); color: var(--orange); }
.nb-navy   { background: var(--navy-lt);   color: var(--navy); }
.nb-blue   { background: var(--blue-lt);   color: var(--blue); }
.nb-purple { background: var(--purple-lt); color: var(--purple); }
.nb-white  { background: rgba(255,255,255,0.2); color: #fff; }

/* ── Branch row ── */
.branch-row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 10px; width: 100%;
}
.branch-item {
  display: flex; flex-direction: column; align-items: center;
}

/* ── YES / NO labels ── */
.yn-label {
  font-size: 10px; font-weight: 800;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 2px 9px; border-radius: 5px; margin: 3px 0;
}
.yn-yes { background: var(--green-lt); color: var(--green); }
.yn-no  { background: var(--red-lt);   color: var(--red); }

/* ── Reminder rows ── */
.reminder-row {
  display: flex; align-items: center; gap: 8px; width: 100%;
}
.reminder-day {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--navy-lt); border: 2px solid var(--navy-mid);
  display: flex; align-items: center; justify-content: center;
  font-size: 10.5px; font-weight: 800; color: var(--navy);
  flex-shrink: 0;
}

/* ── Loop-back info chip ── */
.loop-chip {
  background: var(--bg2);
  border: 1.5px solid var(--navy-mid);
  border-radius: 8px;
  padding: 7px 14px;
  margin-bottom: 6px;
  font-size: 11px; font-weight: 700;
  color: var(--navy); text-align: center;
  width: 100%;
}
.loop-chip span { color: var(--green); }

/* ═══════════════════════════════════════════
   ORANGE HIGHLIGHT BAND (bottom CTA strip)
═══════════════════════════════════════════ */
.wf-band {
  background: linear-gradient(135deg, var(--orange), #ff7400);
  border-radius: 20px;
  padding: 40px 48px;
  margin-top: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  position: relative; overflow: hidden;
  box-shadow: 0 12px 40px rgba(243,92,37,0.25);
}
.wf-band::before {
  content: '';
  position: absolute; top: -40px; right: -40px;
  width: 200px; height: 200px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  pointer-events: none;
}
.wf-band::after {
  content: '';
  position: absolute; bottom: -30px; left: -30px;
  width: 150px; height: 150px; border-radius: 50%;
  background: rgba(255,255,255,0.06);
  pointer-events: none;
}
.wf-band-text { position: relative; z-index: 1; }
.wf-band-text h3 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 800; color: #fff;
  line-height: 1.2; margin-bottom: 6px;
  letter-spacing: -0.02em;
}
.wf-band-text p {
  font-size: 14px; color: rgba(255,255,255,0.82); line-height: 1.6;
}
.wf-band-actions {
  display: flex; gap: 12px; flex-shrink: 0;
  position: relative; z-index: 1; flex-wrap: wrap;
}
.btn-white {
  display: inline-flex; align-items: center; gap: 7px;
  background: #fff; color: var(--navy);
  padding: 12px 26px; border-radius: 9px;
  font-size: 14px; font-weight: 700;
  font-family: 'Plus Jakarta Sans', sans-serif;
  border: none; cursor: pointer; text-decoration: none;
  transition: all 0.22s;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.2);color: var(--orange);}
.btn-outline-white {
  display: inline-flex; align-items: center; gap: 7px;
  background: transparent; color: #fff;
  padding: 11px 24px; border-radius: 9px;
  font-size: 14px; font-weight: 600;
  font-family: 'Plus Jakarta Sans', sans-serif;
  border: 2px solid rgba(255,255,255,0.5); cursor: pointer;
  text-decoration: none; transition: all 0.22s;
}
.btn-outline-white:hover { border-color: #fff; background: rgba(255,255,255,0.1); }

/* ── Stats below header ── */
.wf-stats {
  background: var(--navy);
  border-radius: 14px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-bottom: 48px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(29,40,120,0.2);
}
.wf-stat {
  padding: 20px 16px; text-align: center;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.wf-stat:last-child { border-right: none; }
.wf-stat-num {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.9rem; font-weight: 800; color: #fff;
  line-height: 1; letter-spacing: -0.04em;
}
.wf-stat-num .acc { color: var(--orange); }
.wf-stat-lbl { font-size: 11px; color: rgba(255,255,255,0.5); margin-top: 4px; font-weight: 500; }



/* ═══════════════════════════════════════════
   APPS GRID
═══════════════════════════════════════════ */
.ourAppSec{border-bottom: 1px solid var(--border);}
.ourAppSec .features-header .sec-sub{max-width: 900px;margin:0 auto;}
.ourAppGrid{display:grid;grid-template-columns:repeat(8,1fr);gap:5px;}
.ourAppGrid .homeAboutPlatformBox {padding: 0px; height: 100%;}
.ourAppGrid .homeAboutPlatformBoxinner{
    height: 100%;
    text-align: center;
    background-color: #fff;
    padding: 20px 12px;
    border-radius: 10px;
    box-shadow: 0 0px 6px 0 rgb(0 0 0 / 2%);
    position: relative;	
	padding: 10px 5px;border: 2px solid #f4f4f7;transition: all 0.3s;}
.ourAppGrid .homeAboutPlatformBoxinner:hover {border-color: #fd7b72; transform: scale(1.05);}
.homeAboutPlatformIcon {
    display: inline-block;
    margin-bottom: 10px;
}
.homeAboutPlatformContent h4.ttl {
    font-size: 14px;
    font-family: "Inter-SemiBold";
    color: #000;
}
/* ═══════════════════════════════════════════
   FEATURES GRID
═══════════════════════════════════════════ */
.features-header{text-align:center;margin-bottom:56px;}
.features-header .sec-sub{margin:0 auto;}
.feat-grid{
  display:grid;grid-template-columns:repeat(3,1fr);gap:20px;
}
.feat-card{
  background:#fff;border:1.5px solid var(--border);
  border-radius:var(--radius);padding:28px;
  position:relative;overflow:hidden;
  transition:all 0.25s;
}
.feat-card:hover{
  border-color:var(--navy-mid);
  box-shadow:var(--shadow-md);
  transform:translateY(-4px);
}
.feat-card::after{
  content:'';position:absolute;
  bottom:0;left:0;right:0;height:3px;
  opacity:0;transition:opacity 0.25s;
}
.feat-card:hover::after{opacity:1;}
.fc-navy::after{background:var(--navy);}
.fc-orange::after{background:var(--orange);}
.fc-mix::after{background:linear-gradient(90deg,var(--navy),var(--orange));}
.feat-icon-box{
  width:52px;height:52px;border-radius:14px;
  display:flex;align-items:center;justify-content:center;
  font-size:23px;margin-bottom:18px;
}
.fib-navy{background:var(--navy-lt);}
.fib-orange{background:var(--orange-lt);}
.fib-mix{background:linear-gradient(135deg,var(--navy-lt),var(--orange-lt));}
.feat-card h3{
  font-family:var(--display);font-size:16.5px;font-weight:700;
  color:var(--text);margin-bottom:8px;font-family: "Inter-SemiBold";
}
.feat-card p{font-size:13.5px;color:var(--text2);line-height:1.68;}
.feat-tag{
  display:inline-block;margin-top:14px;font-size:11px;font-weight:700;
  padding:3px 10px;border-radius:6px;
}
.ftg-navy{background:var(--navy-lt);color:var(--navy);}
.ftg-orange{background:var(--orange-lt);color:var(--orange);}

/* ═══════════════════════════════════════════
   HOW IT WORKS
═══════════════════════════════════════════ */
.how-section{background:var(--bg2);}
.how-inner{
  display:grid;grid-template-columns:1fr 1fr;
  gap:64px;align-items:start;
}
.how-steps{display:flex;flex-direction:column;}
.how-step{
  display:flex;gap:18px;
  padding:22px 0;
  border-bottom:1px solid var(--border);
  cursor:pointer;position:relative;
  transition:all 0.2s;
}
.how-step:last-child{border-bottom:none;}
.how-step.active{padding-left:14px;}
.how-step.active::before{
  content:'';position:absolute;left:0;top:18px;bottom:18px;
  width:3px;border-radius:2px;
  background:linear-gradient(180deg,var(--navy),var(--orange));
}
.hs-num{
  width:36px;height:36px;border-radius:10px;flex-shrink:0;
  display:flex;align-items:center;justify-content:center;
  font-family:var(--display);font-size:13px;font-weight:800;
  background:var(--bg3);color:var(--muted);border:1.5px solid var(--border2);
  transition:all 0.25s;
}
.how-step.active .hs-num{background:var(--navy);color:#fff;border-color:var(--navy);}
.hs-body h3{
  font-family:var(--display);font-size:15.5px;font-weight:700;
  color:var(--muted);margin-bottom:5px;transition:color 0.2s;font-family: "Inter-SemiBold";
}
.how-step.active .hs-body h3{color:var(--text);}
.hs-body p{font-size:13px;color:var(--muted);line-height:1.65;}
.how-visual{
  
}
.how-visual-inner{
	background:#fff;border:1.5px solid var(--border);
  border-radius:var(--radius-lg);padding:28px;
  min-height:400px;display:flex;flex-direction:column;
  justify-content:space-between;
  box-shadow:var(--shadow-md);
  position:sticky;top:90px;overflow:hidden;
}
.how-visual::before{
  /*content:'';position:absolute;top:-40px;right:-40px;
  width:180px;height:180px;border-radius:50%;
  background:radial-gradient(var(--navy-lt),transparent 70%);*/
  pointer-events:none;
}
.vis-row{
  background:var(--bg2);border:1px solid var(--border);
  border-radius:10px;padding:12px 15px;margin-bottom:9px;
  position:relative;
}
.vis-lbl{font-size:10px;font-weight:700;color:var(--muted);text-transform:uppercase;letter-spacing:0.06em;margin-bottom:3px;    font-family: "Inter-SemiBold";}
.vis-val{font-size:13px;font-weight:600;color:var(--text);font-family: "Inter-SemiBold";}
.vis-chip{
  display:inline-block;font-size:10px;font-weight:700;
  padding:2px 8px;border-radius:5px;margin-left:7px;    font-family: "Inter-SemiBold";
}
.vc-green{background:#e6faf2;color:#0b8a5a;}
.vc-navy{background:var(--navy-lt);color:var(--navy);}
.vc-orange{background:var(--orange-lt);color:var(--orange);}
.vis-big{
  font-family:var(--display);font-size:3.2rem;font-weight:800;
  color:var(--navy);line-height:1;letter-spacing:-0.04em;
}
.vis-big small{font-family:var(--font);font-size:13px;font-weight:500;color:var(--muted);margin-left:6px;vertical-align:middle;letter-spacing:0;}

/* ═══════════════════════════════════════════
   ORANGE HIGHLIGHT BAND
═══════════════════════════════════════════ */
.highlight-band{
  background:linear-gradient(135deg,var(--orange),#ff7400);
  padding:64px 0;
  position:relative;overflow:hidden;
}
.highlight-band::before{
  content:'';position:absolute;top:-60px;right:-60px;
  width:300px;height:300px;border-radius:50%;
  background:rgba(255,255,255,0.06);
  pointer-events:none;
}
.highlight-band::after{
  content:'';position:absolute;bottom:-80px;left:-40px;
  width:250px;height:250px;border-radius:50%;
  background:rgba(255,255,255,0.05);
  pointer-events:none;
}
.hb-inner{
  display:grid;grid-template-columns:1fr auto;
  gap:32px;
  position:relative;z-index:1;
}
.hb-left h2{
  font-family:var(--display);font-size:34px;
  font-weight:800;color:#fff;line-height:1.15;
  letter-spacing:-0.025em;margin-bottom:10px;
}
.hb-left p{font-size:15px;color:rgba(255,255,255,0.82);line-height:1.65;max-width:660px;}
.hb-stat-row{display:flex;gap:28px;margin-top:5px;flex-wrap:wrap;}
.hb-stat .num{font-family:var(--display);font-size:2rem;font-weight:800;color:#fff;letter-spacing:-0.04em;line-height:1;}
.hb-stat .lbl{font-size:11.5px;color:rgba(255,255,255,0.7);font-weight:600;margin-top:3px;}
.hb-right{display:flex;flex-direction:column;gap:10px;min-width:220px;}
.hb-btn-white{
  display:inline-flex;align-items:center;justify-content:center;gap:8px;
  background:#fff;color:var(--orange);
  padding:13px 28px;border-radius:9px;
  font-size:15px;font-weight:700;    font-family: "Inter-SemiBold";
  font-family:var(--font);text-decoration:none;border:none;cursor:pointer;
  transition:all 0.2s;box-shadow:0 4px 18px rgba(0,0,0,0.15);
}
.hb-btn-white:hover{transform:translateY(-2px);box-shadow:0 8px 26px rgba(0,0,0,0.2);}
.hb-btn-outline-white{
  display:inline-flex;align-items:center;justify-content:center;gap:8px;
  background:transparent;color:#fff;
  padding:12px 28px;border-radius:9px;
  font-size:15px;font-weight:600;
  font-family:var(--font);text-decoration:none;
  border:2px solid rgba(255,255,255,0.5);cursor:pointer;
  transition:all 0.2s;
}
.hb-btn-outline-white:hover{background:rgba(255,255,255,0.1);border-color:#fff;}

/* ═══════════════════════════════════════════
   INTEGRATIONS
═══════════════════════════════════════════ */
.int-section{}
.int-header{text-align:center;margin-bottom:48px;}
.int-header .sec-sub{margin:0 auto;}
.int-grid{
  display:grid;grid-template-columns:repeat(5,1fr);gap:14px;
}
.int-card{
  background:#fff;border:1.5px solid var(--border);
  border-radius:var(--radius);padding:20px 14px;
  text-align:center;cursor:pointer;
  transition:all 0.2s;
}
.int-card:hover{border-color:var(--navy-mid);box-shadow:var(--shadow-sm);transform:translateY(-3px);}
.ic-icon{font-size:27px;margin-bottom:8px;}
.ic-icon img{height:40px;}
.ic-name{font-size:12px;font-weight:700;color:var(--text2);}

/* ═══════════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════════ */
.testi-section{background:var(--bg2);}
.testi-header{text-align:center;margin-bottom:48px;}
.testi-header .sec-sub{margin:0 auto;}
.testi-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px;}
.testi-card{
  background:#fff;border:1.5px solid var(--border);
  border-radius:var(--radius);padding:28px;
  display:flex;flex-direction:column;gap:14px;
  transition:all 0.2s;position:relative;overflow:hidden;
}
.testi-card::before{
  content:'';position:absolute;top:0;left:0;right:0;height:3px;
  background:linear-gradient(90deg,var(--navy),var(--orange));
}
.testi-card:hover{border-color:var(--navy-mid);box-shadow:var(--shadow-md);}
.tc-stars{color:#f59e0b;font-size:13px;letter-spacing:2px;}
.tc-quote{
  font-size:14px;line-height:1.72;color:var(--text2);flex:1;
}
.tc-quote strong{color:var(--text);font-weight:700;    font-family: "Inter-SemiBold";}
.tc-result{
  background:var(--navy-lt);border:1px solid var(--navy-mid);
  border-radius:8px;padding:8px 12px;
  font-size:12px;font-weight:700;color:var(--navy);
}
.tc-author{display:flex;align-items:center;gap:11px;}
.tc-av{
  width:42px;height:42px;border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  font-size:20px;flex-shrink:0;
}
.av-navy{background:linear-gradient(135deg,var(--navy-lt),var(--navy-mid));}
.av-orange{background:linear-gradient(135deg,var(--orange-lt),var(--orange-mid));}
.av-mix{background:linear-gradient(135deg,var(--navy-lt),var(--orange-lt));}
.tc-name{font-size:13.5px;font-weight:700;color:var(--text);}
.tc-role{font-size:11.5px;color:var(--muted);}

/* ═══════════════════════════════════════════
   NAVY DEMO CTA SECTION
═══════════════════════════════════════════ */
.demo-cta-section{
  background:var(--navy);
  padding:90px 0 70px;position:relative;overflow:hidden;
}
.demo-cta-section::before{
  content:'';position:absolute;top:-80px;right:-80px;
  width:400px;height:400px;border-radius:50%;
  background:radial-gradient(rgba(243,92,37,0.12),transparent 70%);
  pointer-events:none;
}
.demo-cta-section::after{
  content:'';position:absolute;bottom:-60px;left:-60px;
  width:300px;height:300px;border-radius:50%;
  background:radial-gradient(rgba(255,255,255,0.05),transparent 70%);
  pointer-events:none;
}
.demo-cta-inner{
  display:grid;grid-template-columns:1fr 1fr;gap:64px;
  align-items:start;position:relative;z-index:1;
}
.demo-cta-left{}
.dcl-tag{
  display:inline-flex;align-items:center;gap:6px;
  background:rgba(243,92,37,0.15);border:1px solid rgba(243,92,37,0.35);
  color:var(--orange);font-size:11.5px;font-weight:700;
  padding:5px 14px;border-radius:100px;margin-bottom:18px;
  letter-spacing:0.06em;text-transform:uppercase;
}
.dcl-title{
  font-family:var(--display);font-size:clamp(1.9rem,3.5vw,2.8rem);
  font-weight:800;line-height:1.1;color:#fff;
  letter-spacing:-0.025em;margin-bottom:16px;
}
.dcl-title .hl{color:var(--orange);}
.dcl-sub{font-size:15px;color:rgba(255,255,255,0.65);line-height:1.72;margin-bottom:32px;max-width:650px;margin: 0 auto;}
.proof-list{/*display:flex;flex-direction:column;gap:13px;*/}
.proof-list .rowBox{}
..proof-list .columnBox{}
.proof-list .proof-row-box{margin-bottom:24px;}
.proof-row{
  display:flex;align-items:flex-start;gap:13px;
  padding:15px;background:rgba(255,255,255,0.15);
  border:1px solid rgba(255,255,255,0.08);border-radius:11px;height:100%;
}
.pr-icon{
  width:38px;height:38px;border-radius:10px;flex-shrink:0;
  display:flex;align-items:center;justify-content:center;font-size:18px;
}
.pri-orange{background:rgba(243,92,37,0.15);}
.pri-navy{background:rgba(255,255,255,0.1);}
.pr-body h4{font-size:14px;font-weight:700;color:#fff;margin-bottom:3px;}
.pr-body p{font-size:12.5px;color:rgba(255,255,255,0.85);line-height:1.5;}

/* Demo form (navy bg version) */
.demo-form-card{
  background:#fff;border-radius:var(--radius-lg);
  padding:34px 30px;
  box-shadow:0 16px 60px rgba(0,0,0,0.25);
  position:relative;
}
.demo-form-card::before{
  content:'';position:absolute;top:0;left:22px;right:22px;
  height:3px;border-radius:0 0 4px 4px;
  background:linear-gradient(90deg,var(--navy),var(--orange));
}
.dfc-title{font-family:var(--display);font-size:20px;font-weight:800;color:var(--text);margin-bottom:5px;}
.dfc-sub{font-size:12.5px;color:var(--muted);margin-bottom:22px;line-height:1.5;}

/* ═══════════════════════════════════════════
   FAQ
═══════════════════════════════════════════ */
.faq-section{}
.faq-header{text-align:center;margin-bottom:48px;}
.faq-wrap{max-width:940px;margin:0 auto;}
.faq-item{border-bottom:1px solid var(--border);}
.faq-q{
  display:flex;align-items:center;justify-content:space-between;
  padding:20px 0;cursor:pointer;gap:14px;
  font-size:15px;font-weight:600;    font-family: "Inter-SemiBold";color:var(--text);
  transition:color 0.2s;
}
.faq-q:hover{color:var(--navy);}
.faq-q .fq-icon{
  width:28px;height:28px;border-radius:50%;flex-shrink:0;
  background:var(--bg3);border:1.5px solid var(--border2);
  display:flex;align-items:center;justify-content:center;
  font-size:17px;color:var(--navy);
  transition:all 0.2s;
}
.faq-item.open .fq-icon{background:var(--navy);color:#fff;border-color:var(--navy);transform:rotate(45deg);}
.faq-a{
  font-size:14px;color:var(--text2);line-height:1.72;
  max-height:0;overflow:hidden;transition:max-height 0.35s ease,padding 0.2s;
}
.faq-item.open .faq-a{max-height:220px;padding-bottom:18px;}
.floatWhatsappBtn{position:fixed;bottom:20px;right:20px;display:inline-block;width:50px;height:50px;z-index:10;animation: whatsappPulse 1.5s infinite;}
.floatWhatsappBtn img{}
.floatWhatsappBtn.hide{display:none;}
@keyframes whatsappPulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.12);
    }
    100% {
        transform: scale(1);
    }
}



.price-table {
	width: 100%;
	border-collapse: collapse;
	border: 0 none;
}
.price-table tr {
}
.price-table tr:not(:last-child) {
 border-bottom: 1px solid rgba(0, 0, 0, 0.08);
/*  border-bottom: 0;*/
}
.price-table tr td {
	border-left: 1px solid rgba(0, 0, 0, 0.08);
	border-left: 0;
	padding: 12px 24px;
	font-size: 14px;/*background-color: #fafafa;*/
}
.price-table tr td .price-table-help {
	color: #414042;
}
.price-table tr td:first-child {
	border-left: 0 none;
}
.price-table tr td:not(:first-child) {
 text-align: center;
}
.price-table tr:nth-child(even) {
 background-color: #FFFFFF;
}
/*.price-table tr:hover {
    background-color: #EEEEEE;
}
*
.price-table .fa-check {
    color: #5336ca;
}
.price-table .fa-times {
    color: #D8D6E3;
}

/* Highlighted column */
.price-table tr:nth-child(2n) td:nth-child(3) {
/*background-color: rgba(216, 214, 227, 0.25);*/
}
.price-table tr td:nth-child(2) {
}
.price-table tr td:nth-child(3) {
 background-color: rgba(216, 214, 227, 0.15);
/*border-left:1px solid #1d2878 !important;
	border-right:1px solid #1d2878 !important;*/
    
}
.price-table tr td:nth-child(3) .fa-check, .price-table tr:nth-child(2n) td:nth-child(3) .fa-check {
/* color: #ffffff; */
}
/**/

.price-table tr.price-table-head td {
	font-size: 16px;
	font-weight: 600;
	text-transform: uppercase;
}
.price-table tr.price-table-head {
	background-color: #5336ca;
	color: #FFFFFF;
}
.price-table td.price {
	padding: 16px 24px 30px;
	font-size: 20px;
}
.price-table td.price .icon {
	margin-bottom: 25px;
}
.price-table td.price .icon img {
}
.price-table td.price h4 {
	font-size: 22px;
	font-weight: 600;
	margin-bottom: 5px;
	font-family: "Inter-Bold";
}
.price-table td.price .para {
	font-size: 13px;
	line-height:17px;
	font-family: "Inter-SemiBold";
	color: #9d9b9b;
	margin-bottom: 20px;
}
.price-table td.price .price {
	display: inline-flex;
	align-items: center;
	margin-bottom: 25px;
}
.price-table td.price .price .currency {
	font-size: 24px;
	font-weight: 900;
	font-family: "Inter-Bold";
}
.price-table td.price .price .month {
	font-size: 13px;
	font-weight: 600;
	color: #9d9b9b;
	margin-left: 3px;
}
.price-table td.price .getStartedBtn {
	background-color: #5336ca;
	background-color: #fff;
	border: 1px solid #ff7400;
	color: #ff7400;
	padding: 8px 32px;
	margin-top: 16px;
	font-size: 14px;
	font-family: "Inter-SemiBold";
	/* text-transform: uppercase; */
    display: inline-block;
	border-radius: 4px;
	width: 100%;
	text-align: center;
}
.price-table tr td:nth-child(1) .getStartedBtn {
 background-color: #ff7400;
 border: 1px solid #ff7400;
 color: #fff;
}
.price-table tr td:nth-child(2) .getStartedBtn {
 background-color: #ff7400;
 border: 1px solid #ff7400;
 color: #fff;
}
.price-table tr td:nth-child(3) .getStartedBtn {
 background-color: #ff7400;
 border: 1px solid #ff7400;
 color: #fff;
}
.price-table tr td:nth-child(4) .getStartedBtn {
 background-color: #ff7400;
 border: 1px solid #ff7400;
 color: #fff;
}
.price-table .price-blank {
	/*background-color: #fafafa;*/
    border: 0 none;
}
.price-table tr.price-blank-tr {
	border-bottom: 0;
}
.price-table tr.price-blank-tr td {
	background-color: #fff;
}
.price-table tr.price-table-body-tr td {
	border-left: 1px solid #fafafa;
	border-left: 0;
}
.price-table tr.price-table-body-tr td:first-child {
	background-color:#fff;
}
.price-table tr.price-blank-tr td.price-table-popular {
	background-color: #1d2878;
	border-top: 0;
	color: #fff;
	text-transform: uppercase;
	font-size: 13px;
	padding: 2px 48px;
	font-family: "Inter-SemiBold";
	border-radius: 20px 20px 0 0;
}
.price-table tr.price-header-tr td {
	border-left: 1px solid #fafafa;
	border-left: 0;
}
.price-table tr.price-header-tr td:first-child {
	background-color:#fff;
}
.price-table tr.price-table-last-tr { /*border-bottom: 0;*/
}
.price-table tr.price-table-last-tr td {
}
.price-table tr.price-table-last-tr td:nth-child(3) {
 border-bottom: 0;
}
.price-table tr.price-footer-tr td {
}
.price-table tr.price-table-last-blank-tr td {
	padding:20px 5px;
}
.price-table tr.price-table-last-blank-tr td:first-child {
	background-color:#fff;
}
.pricingTopField {
    margin-bottom: 40px;
}
.pricing-switcher {
    text-align: center;
}
.pricing-switcher label{font-size: 14px;}
.price-table .conditionTableRow.rowHide{display:none;} 
.pricingTableForMobile {display: none;}
.divshow {display:inline-block;}
.divhide {display: none;}
.price-table td.price .price.price1{display: block;margin-bottom: 10px;}
.price-table td.price .price.price2 .currency { text-decoration:line-through; color: #9d9b9b; font-size:20px; }
.price-table td.price .price.price2 .annual { text-decoration:line-through; color: #9d9b9b; }
.price-table td.price .price { display: block; margin-bottom:10px;}
.price-table tr.price-header-tr td:first-child {background-color: #fff;width: 18%;}
.customePlanPriceSecinner {border-radius: 15px;}
@keyframes colorBlink {
0%   { color: red; }
25%  { color: blue; }
50%  { color: green; }
75%  { color: purple; }
100% { color: red; }
}
.blink {animation: colorBlink 2s infinite;font-size:22px;font-weight:bold;}
.colour-nav[_ngcontent-iei-c7] {background: linear-gradient(90deg, #9ebd13 0%, #008552 100%);color: #fff;font-family: Montserrat;font-size: 15px;font-style: normal;font-family: "Inter-SemiBold";font-weight: 700;line-height: 34px;}		
.pricingAdvantageSec{}
.pricingAdvantageSecinner{}
.pricingAdvantageSecinner .rowBox{}
.pricingAdvantageSecinner .columnBox{}
.pricingAdvantageSecinner .pricingAdvantageBox{margin-bottom:30px;}
.pricingAdvantageBoxinner{padding:25px 15px;border-radius: 8px;background-color:#fff;box-shadow: 0px 0px 18px 3px rgba(0, 0, 0, 0.06);height: 100%;text-align: center;}
.pricingAdvantageBoxinner .icon{margin-bottom:20px;}
.pricingAdvantageBoxinner .icon img{}
.pricingAdvantageBoxinner h4.title{font-size: 15px;color: #000;font-family: "Inter-SemiBold";}
.pricingHighlightSec{background-image: url(../images/homeFeatureSecBg.png);color:#fff;background-position: 50% 50%;background-repeat: no-repeat;background-size: cover;position: relative;overflow:hidden;}
.pricingHighlightSecinner{position:relative;}
.pricingHighlightSecinner .rowBox{}
.pricingHighlightSecinner .columnBox{}
.pricingHighlightSecinner .pricingHighlightContentBox{}
.pricingHighlightContentBoxinner{}
.pricingHighlightContentBoxinner .sub-title{ display: inline-flex;background-color: #fff;color:#1d2878;padding: 3px 15px;border-radius: 6px;margin-bottom:20px;}
.pricingHighlightContentBoxinner .title{font-family: "Inter-Bold"; font-size: 40px; color: #fff;margin-bottom:20px;}
.pricingHighlightContentBoxinner .para{font-size:16px;line-height:24px;color: #b6bbdb;margin-bottom: 30px;}
.pricingHighlightContentBoxinner .contBtnList{padding:0px;margin:0px;}
.pricingHighlightContentBoxinner .contBtnList li{list-style-type:none;display:inline-block;margin-right:10px;}
.pricingHighlightContentBoxinner .contBtnList li:last-child{margin-right:0px;}
.pricingHighlightContentBoxinner .contBtnList li a.getStartedBtn{background-color: #f35c25; border: 1px solid #f35c25;color: #fff;}
.pricingHighlightContentBoxinner .contBtnList li a.getStartedBtn:hover{background-color: #1d2878; border: 1px solid #1d2878;color: #fff;}
.pricingHighlightContentBoxinner .contBtnList li a.cobtactSalesBtn{/*background-color: #fff; border: 1px solid #f35c25;color: #f35c25;*/}
.pricingHighlightSecinner .pricingHighlightThumnailBox{}
.pricingHighlightThumnail{}
.pricingHighlightThumnail img{position: absolute;top: -35px;right: -60px;max-width: 700px;}	
.optionalServiceInfoSec{}
.optionalServiceInfoArea{}
.optionalServiceInfoArea .title{font-size: 22px;font-family: "Inter-Bold";}
.optionalServiceInfoList{padding:0px;margin:0px;margin-left:20px;}
.optionalServiceInfoList li{font-size: 16px;line-height: 24px;font-family: "Inter-SemiBold";margin-bottom: 2px;}
.optionalServiceInfoList li:last-child{margin-bottom:0px;}


.pricing-switcher {
	text-align: center;
}

.pricing-switcher .fieldset {
	display: inline-block;
	position: relative;
	padding: 2px;
	border-radius: 15px;
	border: 2px solid #fe2427;
	background-color: #fff8f8;
}

.pricing-switcher input[type="radio"] {
	position: absolute;
	opacity: 0;
}

.pricing-switcher label {
	position: relative;
	z-index: 2;
	display: inline-block;
	float: left;
	width: 160px;
	height: 40px;
	line-height: 40px;
	cursor: pointer;
	font-size: 14px;
	font-family: "Inter-SemiBold";
	color: #414193;
	text-align: center;
}

.pricing-switcher .switch {
	position: absolute;
	top: 2px;
	left: 2px;
	height: 40px;
	width: 160px;
	background-color: #414193;
	border-radius: 15px;
	transition: transform 0.4s;
	z-index: 1;
}

/* active text color */
.pricing-switcher input[type="radio"]:checked + label {
	color: #fff;
}

/* position 1 */
#pricingPlan1:checked ~ .switch {
	transform: translateX(0);
}

/* position 2 */
#pricingPlan:checked ~ .switch {
	transform: translateX(160px);
}

/* position 3 */
#pricingPlan2:checked ~ .switch {
	transform: translateX(320px);
}
.price-table td.price {padding: 16px 10px 16px;}
.price-table td.price .price .currency {
    font-size: 20px;
}
.price-table td.price .price .month {   
    margin-left: 0px;
	color: #000;
	font-family: "Inter-SemiBold";	
}
.price-table td.price .additionText{display:block;font-size: 10px;line-height:14px;font-family: "Inter-SemiBold"; font-style: italic;min-height:25px;margin-top:5px;}
.price-table td.price .para {font-size: 12px;line-height: 16px;min-height: 20px;margin-bottom:10px;}
.price-table td.price .agentInfo{
    font-size: 12px;
    line-height: 16px;
    font-family: "Inter-SemiBold";    
}
.price-table td.price .agentInfo .info{font-size: 14px;cursor:pointer;}
.price-table tr td i.fa-circle-check{font-size: 16px;color: #05a68b;}
.price-table tr td i.fa-circle-xmark{font-size: 16px;color: #dd4643;}
.price-table tr.price-blank-tr td.price-table-popular {background-color: #ff7400;}
/* Highlighted column */
.price-table tr:nth-child(2n) td:nth-child(3) {}
.price-table tr td:nth-child(2) {}
.price-table tr td:nth-child(3) {background-color: rgba(216, 214, 227, 0.15);background-color:transparent;}
.price-table tr td:nth-child(3) .fa-check, .price-table tr:nth-child(2n) td:nth-child(3) .fa-check {}
.price-table tr td:nth-child(4) {background-color: rgba(216, 214, 227, 0.15);}
.pricingAdvantageBoxinner .icon img{height:64px;}




@media (max-width: 1370px) {
.pricingSec .container{max-width: 100%;padding: 0 40px;}	
.optionalServiceInfoList li {font-size: 15px;line-height: 23px;}
}

@media (max-width: 1200px) {
.pricingHighlightThumnail img{max-width: 500px;}	
	
}
@media (max-width: 992px) {
.pricingHighlightSec{padding: 60px 0 30px;}	
.pricingHighlightSecinner .pricingHighlightThumnailBox {display:none;}
.pricingHighlightThumnail img{position: relative;;top: 0;right:0;max-width: 100%;}	
.pricingHighlightContentBoxinner .title{ font-size: 25px;}
.pricingHighlightContentBoxinner .para{font-size:14px;line-height:20px;}
}
@media (max-width: 768px) {
.pricingTableForDesktop {display: none;}
.pricingTableForMobile {display: block;}
.pricingTopField {margin-bottom: 20px;}
}
@media (max-width:576px){
.pricingSec .container {padding: 0 15px;}	
.pricing-switcher .fieldset {
	display:inline-flex;	
    position: relative;
    padding: 3px;
    border-radius: 12px;
    border: 2px solid #1d2878;
    background: #f9f9fb;
    width: 100%;
    max-width: 480px;
}
.pricing-switcher label{
        flex: 1;
        text-align: center;
        height: 32px;
        line-height: 33px;
        cursor: pointer;
        font-size: 10px;
        font-family: "Inter-SemiBold";
        color: #000;
        z-index: 2;
        width: auto;
}

.pricing-switcher .switch{
        height: 38px;        
        top: 3px;       
        width: 33.33%;
        height: 32px;        
        border-radius: 10px;       
}
/* positions */
#pricingPlan1:checked ~ .switch{
    transform:translateX(0%);
}

#pricingPlan:checked ~ .switch{
    transform:translateX(100%);
}

#pricingPlan2:checked ~ .switch{
    transform:translateX(196%);
}
.optionalServiceInfoArea .title {font-size: 15px;}
.optionalServiceInfoList li {font-size: 13px;line-height: 20px;}
}
/* ═══════════════════════════════════════════
   FOOTER 
═══════════════════════════════════════════ */
.web-footer{ background: var(--gradiant-bg);color:#fff;padding:30px 0 30px;}
.web-footer p{ font-size: 13px; color: rgba(255, 255, 255, 0.5);}

.footer-col .socialLinkLinks{padding:0px;margin:0px;margin-bottom:5px; display:flex; align-items:center;justify-content:center;gap:10px;}
.footer-col .socialLinkLinks li {list-style-type:none;display:inline-block;position:relative;}
.footer-col .socialLinkLinks li a{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #fff;
    font-size: 16px;
    line-height: 34px;
    transition: 0.3s;
}
/* WhatsApp */
.footer-col .socialLinkLinks li.whatsapp a{
    color:#25D366;
}

/* Instagram */
.footer-col .socialLinkLinks li.instagram a{
    color:#E4405F;
}

/* Facebook */
.footer-col .socialLinkLinks li.facebook a{
    color:#1877F2;
}

/* YouTube */
.footer-col .socialLinkLinks li.youtube a{
    color:#FF0000;
}

/* LinkedIn */
.footer-col .socialLinkLinks li.linkedin a{
    color:#0A66C2;
}

/* Twitter / X */
.footer-col .socialLinkLinks li.twitter a{
    color:#1DA1F2;
}
/* Hover effect */
.socialLinkLinks li a:hover{
    transform:scale(1.1);
}

.footer-col .ftLinks{padding:0px;margin:0px;margin-bottom:5px;}
.footer-col .ftLinks li {list-style-type:none;display:inline-block;position:relative;}
.footer-col .ftLinks li:after{content:'|'; color: rgba(255, 255, 255, 0.5);padding:10px 10px}
.footer-col .ftLinks li:last-child:after{display:none;}
.footer-col .ftLinks li a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.2s;
}
.footer-col .ftLinks li a:hover {
    color: #fff;
}


/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media(max-width:1370px){
.homeAboutPlatformContent h4.ttl {
        font-size: 12px;
    }
}

@media(max-width:1199px){
.ourAppGrid {    
    grid-template-columns: repeat(6, 1fr);   
}
}


@media(max-width:1024px){
  .hero-grid{grid-template-columns:1fr;gap:50px;}
  .hero::before{display:none;}
  .hero-sub{max-width:100%;}
  .how-inner{grid-template-columns:1fr;gap:40px;}
  .how-visual{position:static;}
  .demo-cta-inner{grid-template-columns:1fr;gap:48px;}
  .hb-inner{grid-template-columns:1fr;}
}
@media(max-width:991px){
.ourAppGrid {    
    grid-template-columns: repeat(4, 1fr);   
}
}
@media(max-width:900px){
  .nav-links{display:none;}
  .feat-grid{grid-template-columns:1fr 1fr;}
  .testi-grid{grid-template-columns:1fr;}
  .int-grid{grid-template-columns:repeat(3,1fr);}
  .stats-inner{grid-template-columns:repeat(2,1fr);}
  .footer-top{grid-template-columns:1fr 1fr;}
  .form-row{grid-template-columns:1fr;}
  .fg.full{grid-column:span 1;}
  
.flow-split { grid-template-columns: 1fr; gap: 28px; }
  .center-divider { display: none; }
  .path-col-left, .path-col-right { padding: 0; }
  .branch-row { grid-template-columns: 1fr; }
  .wf-band { flex-direction: column; padding: 32px 24px; text-align: center; }
  .wf-band-actions { justify-content: center; }
  .wf-stats { grid-template-columns: repeat(2,1fr); }  
  
  
}
@media(max-width:768px){
.pricingTableFeaturesItem .rightSide .fa-circle-check, .pricingTableFeaturesItem .rightSide i.fa-circle-check {
    color: #00b159 !important;
}
.pricingTableFeaturesItem .rightSide .fa-circle-xmark, .pricingTableFeaturesItem .rightSide i.fa-circle-xmark {
    color: #ee2b57 !important;
}	
.pricingTableBoxinner {
	background-color: #fff;
	padding: 20px 20px;
	/* border: 1px solid #ddd;*/
    box-shadow: 0 0px 8px 0 rgb(0 0 0 / 12%);
	border-radius: 15px;
}
.pricingTableBoxinner .pricingTableLabel {
	border-radius: 2px;
	padding: 5px 16px;
	margin-bottom: 20px;
	display: inline-block;
	font-size: 16px;
	font-family: "Inter-Bold";
	font-family: "Inter-SemiBold";
	background: #f1f0f0;
	color: #000;
    background: var(--navy-lt);
    border: 1px solid var(--navy-mid);
    color: var(--navy);	
}
.pricingTableBoxinner .pricingTableLabel.purple {
	background: #eaedfd;
	color: #1d2878;
	    background: var(--navy-lt);
    border: 1px solid var(--navy-mid);
    color: var(--navy);
}
.pricingTableBoxinner .pricingTableLabel.turquoise {
	background: #b9edee;
	color: #2aacb1;
}
.pricingTableBoxinner .pricingTableLabel.red {
	background: #ffc4c4;
	color: #ff5e5e;
}
.pricingTableBoxinner .price {
	display: flex;
	align-items: center;
	margin-bottom: 25px;
}
.pricingTableBoxinner .price .currency {
	font-size: 24px;
	font-weight: 900;
	font-family: "Inter-Bold";
}
.pricingTableBoxinner .price .currency .sign {
}
.pricingTableBoxinner .price .month {
	font-size: 13px;
	/* font-weight: 600; */
    color: #9d9b9b;
	margin-left: 3px;
	font-family: "Inter-SemiBold";
}
.pricingTableBoxinner .pricingTableFeatures {
}
.pricingTableBoxinner .pricingTableFeatures .pricingTableFeaturesItem {
	padding: 7px 0;
	border-bottom: 1px solid #ddd;
}
.pricingTableFeaturesIteminner {
	align-items: center;
	color: #616060;
}
.pricingTableFeaturesIteminner .ttl {
}
.pricingTableFeaturesIteminner .leftSide {
}
.pricingTableFeaturesIteminner .rightSide {
	padding-left: 10px;
}
.pricingTableBoxinner .pricingTableFeatures .pricingTableFeaturesItem.total {
	border-bottom: 0;
}
.pricingTableFeaturesItem.total .pricingTableFeaturesIteminner .ttl {
	font-family: "Inter-SemiBold";
	font-size: 16px;
	color: #000;
}
.pricingTableFeaturesItem.total .pricingTableFeaturesIteminner .amount {
	font-family: "Inter-SemiBold";
	font-family: "Inter-Bold";
	font-size: 18px;
	color: #008000;
	color: #1d2878;
}
.pricingTableFeaturesIteminner .selectBox .form-select {
	box-shadow: none;
	font-size: 14px;
	border-radius: 4px;
	padding: 3px 35px 3px 10px;
	width: 82px;
}
.pricingTableFeaturesIteminner .quantityplusMinus .qty-input .qty-count {
	height: 26px;
	width: 25px;
}
.pricingTableFeaturesIteminner .quantityplusMinus .qty-input .product-qty {
	width:30px;
	height: 26px;
}
.pricingTableBoxinner .getStartedBtnBtnArea {
	text-align:center;
}
.pricingTableBoxinner .getStartedBtn {	
	background-color: #222;
	border: 1px solid #222;
	color: #fff;
	padding: 8px 32px;
	margin-top: 16px;
	font-size: 14px;
	font-family: "Inter-SemiBold";
	display: inline-block;
	border-radius: 4px;
	width: 70%;
	text-align: center;
}
.pricingTableBoxinner .getStartedBtn:hover {
	background-color: #ff2a2b;
	border: 1px solid #ff2a2b;
	color: #fff;
}

}

@media(max-width:767px){
.ourAppGrid {    
    grid-template-columns: repeat(3, 1fr);   
}
}
@media(max-width:600px){
.nav-inner {height: 55px;}	
.nav-logo img {max-width: 155px;}
.nav-right {gap: 5px;}	
.nav-login{font-size:12px;padding: 8px 15px;}
.nav-cta-btn{font-size:12px;padding: 8px 15px;}
.headnSec {margin-bottom:30px;}
.termsConditionSecinner h2{font-size:20px;}
.termsConditionSecinner h3{font-size:17px;}
.termsConditionSecinner p{font-size:14px;line-height:1.4;}
.termsConditionSecinner ul li{font-size:14px;line-height:1.4;}
.termsConditionSecinner ol li{font-size:14px;line-height:1.4;}
.hero {
    padding: 40px 0 40px;
}	
.btn-navy, .btn-outline{padding: 10px 20px;font-size: 12px;}
  .feat-grid{grid-template-columns:1fr;}
  .int-grid{grid-template-columns:repeat(2,1fr);}
  .footer-top{grid-template-columns:1fr;}
  .hero h1{font-size:2.2rem;}
  .stats-inner{grid-template-columns:repeat(2,1fr);}
  
  .wf-section { padding: 60px 0 70px; }
  .source-row { gap: 7px; }
  .src-icon { width: 44px; height: 44px; font-size: 10px; }
  .wf-stats { grid-template-columns: 1fr 1fr; }
  .vis-big{font-size:30px;}
  .floatWhatsappBtn{bottom:15px;right:15px;width:45px;height:45px;}
}

@media(max-width:479px){
.ourAppGrid {    
    grid-template-columns: repeat(2, 1fr);   
}
}

