*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #ffffff;
  --bg-raised: #f4f6f9;
  --bg-card: #f9fafb;
  --bg-card-hover: #eef1f6;
  --border: rgba(0,0,0,0.08);
  --border-strong: rgba(0,0,0,0.14);
  --border-accent: rgba(15,100,220,0.25);
  --accent: #746DF0;
  --accent-border: rgba(116,109,240,0.20);
  --accent-soft: rgba(116,109,240,0.07);
  --accent-glow: rgba(15,100,220,0.04);
  --blue: #0f64dc;
  --blue-soft: rgba(15,100,220,0.07);
  --text-primary: #0d1117;
  --text-secondary: #4a5568;
  --text-muted: #8a96a8;
  --green: #0d6e4c;
  --green-soft: rgba(13,110,76,0.07);
  --green-border: rgba(13,110,76,0.18);
  --amber: #b45309;
  --amber-soft: rgba(180,83,9,0.07);
  --amber-border: rgba(180,83,9,0.18);

  --red-soft: rgba(197,48,48,0.07);
  --red-border: rgba(197,48,48,0.18);
  --red: #c53030;

  --plan-starter: #f4f6f9;
  --plan-growth:  #0f64dc;
  --plan-scale:   #0d1117;

  --font-display: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-body: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-mono: 'DM Mono', monospace;
  --max-w: 1240px;
  --nav-h: 68px;
  --purple: #6d28d9;
  --purple-soft: rgba(109,40,217,0.07);
  --purple-border: rgba(109,40,217,0.18);
  --red_color: #ff6058;
  --orange_color: #ffbb2c;
  --green_color: #28c840;
  --section-gap: 120px;
  
}

html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  word-break: break-word;
  word-wrap: break-word;
}
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image:
    linear-gradient(rgba(0,0,0,0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.018) 1px, transparent 1px);
  background-size: 52px 52px;
  pointer-events: none; z-index: 0;
}
/*===== Common Css ====*/
.red_bg {
  background-color: var(--red_color);
}
.orange_bg {
  background-color: var(--orange_color);
}
.green_bg {
  background-color: var(--green_color);
}
.green_bg_soft {
  background-color: var(--green-soft) !important;
}
.container-padding-0 {
  padding: 0;
}
.padding-0 {
  padding: 0;
}
.justify-center {
  justify-content: center;
}
.text-center {
  text-align: center;
}
.text_white {
  color: #ffffff !important;
}
.text_accent {
  color: var(--accent) !important;
}
.text_amber {
  color:var(--amber) !important;
}
.text_green {
  color: var(--green) !important;
}
.text_muted {
  color: var(--text-muted);
}
.font-mono {
  font-family: var(--font-mono);
}
.grid-column-1 {
  grid-column:1/-1;
}
/*===== Common Css ====*/
/*===== Common font size Css ====*/
.font-size-1  { font-size: 1px; }
.font-size-2  { font-size: 2px; }
.font-size-3  { font-size: 3px; }
.font-size-4  { font-size: 4px; }
.font-size-5  { font-size: 5px; }
.font-size-6  { font-size: 6px; }
.font-size-7  { font-size: 7px; }
.font-size-8  { font-size: 8px; }
.font-size-9  { font-size: 9px; }
.font-size-10 { font-size: 10px; }
.font-size-11 { font-size: 11px; }
.font-size-12 { font-size: 12px; }
.font-size-13 { font-size: 13px; }
.font-size-14 { font-size: 14px; }
.font-size-15 { font-size: 15px; }
.font-size-16 { font-size: 16px; }
.font-size-17 { font-size: 17px; }
.font-size-18 { font-size: 18px; }
.font-size-19 { font-size: 19px; }
.font-size-20 { font-size: 20px; }
.font-size-21 { font-size: 21px; }
.font-size-22 { font-size: 22px; }
.font-size-23 { font-size: 23px; }
.font-size-24 { font-size: 24px; }
.font-size-25 { font-size: 25px; }
.font-size-26 { font-size: 26px; }
.font-size-27 { font-size: 27px; }
.font-size-28 { font-size: 28px; }
.font-size-29 { font-size: 29px; }
.font-size-30 { font-size: 30px; }
.font-size-31 { font-size: 31px; }
.font-size-32 { font-size: 32px; }
.font-size-33 { font-size: 33px; }
.font-size-34 { font-size: 34px; }
.font-size-35 { font-size: 35px; }
.font-size-36 { font-size: 36px; }
.font-size-37 { font-size: 37px; }
.font-size-38 { font-size: 38px; }
.font-size-39 { font-size: 39px; }
.font-size-40 { font-size: 40px; }
/*===== Common font size Css ====*/
/*===== Common margin Css ====*/
/* Margin Top */
.mr_t_1 { margin-top: 1px; }
.mr_t_2 { margin-top: 2px; }
.mr_t_3 { margin-top: 3px; }
.mr_t_4 { margin-top: 4px; }
.mr_t_5 { margin-top: 5px; }
.mr_t_6 { margin-top: 6px; }
.mr_t_7 { margin-top: 7px; }
.mr_t_8 { margin-top: 8px; }
.mr_t_9 { margin-top: 9px; }
.mr_t_10 { margin-top: 10px; }
.mr_t_11 { margin-top: 11px; }
.mr_t_12 { margin-top: 12px; }
.mr_t_13 { margin-top: 13px; }
.mr_t_14 { margin-top: 14px; }
.mr_t_15 { margin-top: 15px; }
.mr_t_16 { margin-top: 16px; }
.mr_t_17 { margin-top: 17px; }
.mr_t_18 { margin-top: 18px; }
.mr_t_19 { margin-top: 19px; }
.mr_t_20 { margin-top: 20px; }
.mr_t_21 { margin-top: 21px; }
.mr_t_22 { margin-top: 22px; }
.mr_t_23 { margin-top: 23px; }
.mr_t_24 { margin-top: 24px; }
.mr_t_25 { margin-top: 25px; }
.mr_t_26 { margin-top: 26px; }
.mr_t_27 { margin-top: 27px; }
.mr_t_28 { margin-top: 28px; }
.mr_t_29 { margin-top: 29px; }
.mr_t_30 { margin-top: 30px; }
.mr_t_31 { margin-top: 31px; }
.mr_t_32 { margin-top: 32px; }
.mr_t_33 { margin-top: 33px; }
.mr_t_34 { margin-top: 34px; }
.mr_t_35 { margin-top: 35px; }
.mr_t_36 { margin-top: 36px; }
.mr_t_37 { margin-top: 37px; }
.mr_t_38 { margin-top: 38px; }
.mr_t_39 { margin-top: 39px; }
.mr_t_40 { margin-top: 40px; }
.mr_t_41 { margin-top: 41px; }
.mr_t_42 { margin-top: 42px; }
.mr_t_43 { margin-top: 43px; }
.mr_t_44 { margin-top: 44px; }
.mr_t_45 { margin-top: 45px; }
.mr_t_46 { margin-top: 46px; }
.mr_t_47 { margin-top: 47px; }
.mr_t_48 { margin-top: 48px; }
.mr_t_49 { margin-top: 49px; }
.mr_t_50 { margin-top: 50px; }
.mr_t_51 { margin-top: 51px; }
.mr_t_52 { margin-top: 52px; }
.mr_t_53 { margin-top: 53px; }
.mr_t_54 { margin-top: 54px; }
.mr_t_55 { margin-top: 55px; }
.mr_t_56 { margin-top: 56px; }
.mr_t_57 { margin-top: 57px; }
.mr_t_58 { margin-top: 58px; }
.mr_t_59 { margin-top: 59px; }
.mr_t_60 { margin-top: 60px; }
.mr_t_61 { margin-top: 61px; }
.mr_t_62 { margin-top: 62px; }
.mr_t_63 { margin-top: 62px; }
.mr_t_64 { margin-top: 64px; }
.mr_t_65 { margin-top: 65px; }

/* Margin Bottom */
.mr_b_1 { margin-bottom: 1px; }
.mr_b_2 { margin-bottom: 2px; }
.mr_b_3 { margin-bottom: 3px; }
.mr_b_4 { margin-bottom: 4px; }
.mr_b_5 { margin-bottom: 5px; }
.mr_b_6 { margin-bottom: 6px; }
.mr_b_7 { margin-bottom: 7px; }
.mr_b_8 { margin-bottom: 8px; }
.mr_b_9 { margin-bottom: 9px; }
.mr_b_10 { margin-bottom: 10px; }
.mr_b_11 { margin-bottom: 11px; }
.mr_b_12 { margin-bottom: 12px; }
.mr_b_13 { margin-bottom: 13px; }
.mr_b_14 { margin-bottom: 14px; }
.mr_b_15 { margin-bottom: 15px; }
.mr_b_16 { margin-bottom: 16px; }
.mr_b_17 { margin-bottom: 17px; }
.mr_b_18 { margin-bottom: 18px; }
.mr_b_19 { margin-bottom: 19px; }
.mr_b_20 { margin-bottom: 20px; }
.mr_b_21 { margin-bottom: 21px; }
.mr_b_22 { margin-bottom: 22px; }
.mr_b_23 { margin-bottom: 23px; }
.mr_b_24 { margin-bottom: 24px; }
.mr_b_25 { margin-bottom: 25px; }
.mr_b_26 { margin-bottom: 26px; }
.mr_b_27 { margin-bottom: 27px; }
.mr_b_28 { margin-bottom: 28px; }
.mr_b_29 { margin-bottom: 29px; }
.mr_b_30 { margin-bottom: 30px; }
.mr_b_31 { margin-bottom: 31px; }
.mr_b_32 { margin-bottom: 32px; }
.mr_b_33 { margin-bottom: 33px; }
.mr_b_34 { margin-bottom: 34px; }
.mr_b_35 { margin-bottom: 35px; }
.mr_b_36 { margin-bottom: 36px; }
.mr_b_37 { margin-bottom: 37px; }
.mr_b_38 { margin-bottom: 38px; }
.mr_b_39 { margin-bottom: 39px; }
.mr_b_40 { margin-bottom: 40px; }
.mr_b_41 { margin-bottom: 41px; }
.mr_b_42 { margin-bottom: 42px; }
.mr_b_43 { margin-bottom: 43px; }
.mr_b_44 { margin-bottom: 44px; }
.mr_b_45 { margin-bottom: 45px; }
.mr_b_46 { margin-bottom: 46px; }
.mr_b_47 { margin-bottom: 47px; }
.mr_b_48 { margin-bottom: 48px; }
.mr_b_49 { margin-bottom: 49px; }
.mr_b_50 { margin-bottom: 50px; }
.mr_b_51 { margin-bottom: 51px; }
.mr_b_52 { margin-bottom: 52px; }
.mr_b_53 { margin-bottom: 53px; }
.mr_b_54 { margin-bottom: 54px; }
.mr_b_55 { margin-bottom: 55px; }
.mr_b_56 { margin-bottom: 56px; }
.mr_b_57 { margin-bottom: 57px; }
.mr_b_58 { margin-bottom: 58px; }
.mr_b_59 { margin-bottom: 59px; }
.mr_b_60 { margin-bottom: 60px; }
.mr_b_61 { margin-bottom: 61px; }
.mr_b_62 { margin-bottom: 62px; }
.mr_b_63 { margin-bottom: 63px; }
.mr_b_64 { margin-bottom: 64px; }
.mr_b_65 { margin-bottom: 65px; }
/*===== Common margin Css ====*/
/*===== Common width Css ====*/
.max-width-100 { max-width: 100px; }
.max-width-200 { max-width: 200px; }
.max-width-300 { max-width: 300px; }
.max-width-400 { max-width: 400px; }
.max-width-500 { max-width: 500px; }
.max-width-600 { max-width: 600px; }
.max-width-700 { max-width: 700px; }
.max-width-800 { max-width: 800px; }

.width_1_p { width: 1%; }
.width_2_p { width: 2%; }
.width_3_p { width: 3%; }
.width_4_p { width: 4%; }
.width_5_p { width: 5%; }
.width_6_p { width: 6%; }
.width_7_p { width: 7%; }
.width_8_p { width: 8%; }
.width_9_p { width: 9%; }
.width_10_p { width: 10%; }
.width_11_p { width: 11%; }
.width_12_p { width: 12%; }
.width_13_p { width: 13%; }
.width_14_p { width: 14%; }
.width_15_p { width: 15%; }
.width_16_p { width: 16%; }
.width_17_p { width: 17%; }
.width_18_p { width: 18%; }
.width_19_p { width: 19%; }
.width_20_p { width: 20%; }
.width_21_p { width: 21%; }
.width_22_p { width: 22%; }
.width_23_p { width: 23%; }
.width_24_p { width: 24%; }
.width_25_p { width: 25%; }
.width_26_p { width: 26%; }
.width_27_p { width: 27%; }
.width_28_p { width: 28%; }
.width_29_p { width: 29%; }
.width_30_p { width: 30%; }
.width_31_p { width: 31%; }
.width_32_p { width: 32%; }
.width_33_p { width: 33%; }
.width_34_p { width: 34%; }
.width_35_p { width: 35%; }
.width_36_p { width: 36%; }
.width_37_p { width: 37%; }
.width_38_p { width: 38%; }
.width_39_p { width: 39%; }
.width_40_p { width: 40%; }
.width_41_p { width: 41%; }
.width_42_p { width: 42%; }
.width_43_p { width: 43%; }
.width_44_p { width: 44%; }
.width_45_p { width: 45%; }
.width_46_p { width: 46%; }
.width_47_p { width: 47%; }
.width_48_p { width: 48%; }
.width_49_p { width: 49%; }
.width_50_p { width: 50%; }
.width_51_p { width: 51%; }
.width_52_p { width: 52%; }
.width_53_p { width: 53%; }
.width_54_p { width: 54%; }
.width_55_p { width: 55%; }
.width_56_p { width: 56%; }
.width_57_p { width: 57%; }
.width_58_p { width: 58%; }
.width_59_p { width: 59%; }
.width_60_p { width: 60%; }
.width_61_p { width: 61%; }
.width_62_p { width: 62%; }
.width_63_p { width: 63%; }
.width_64_p { width: 64%; }
.width_65_p { width: 65%; }
.width_66_p { width: 66%; }
.width_67_p { width: 67%; }
.width_68_p { width: 68%; }
.width_69_p { width: 69%; }
.width_70_p { width: 70%; }
.width_71_p { width: 71%; }
.width_72_p { width: 72%; }
.width_73_p { width: 73%; }
.width_74_p { width: 74%; }
.width_75_p { width: 75%; }
.width_76_p { width: 76%; }
.width_77_p { width: 77%; }
.width_78_p { width: 78%; }
.width_79_p { width: 79%; }
.width_80_p { width: 80%; }
.width_81_p { width: 81%; }
.width_82_p { width: 82%; }
.width_83_p { width: 83%; }
.width_84_p { width: 84%; }
.width_85_p { width: 85%; }
.width_86_p { width: 86%; }
.width_87_p { width: 87%; }
.width_88_p { width: 88%; }
.width_89_p { width: 89%; }
.width_90_p { width: 90%; }
.width_91_p { width: 91%; }
.width_92_p { width: 92%; }
.width_93_p { width: 93%; }
.width_94_p { width: 94%; }
.width_95_p { width: 95%; }
.width_96_p { width: 96%; }
.width_97_p { width: 97%; }
.width_98_p { width: 98%; }
.width_99_p { width: 99%; }
.width_100_p { width: 100%; }
/*===== Common width Css ====*/
/* ── common css ── */

.btn-ghost { background: none; border: 1px solid var(--border-strong); color: var(--text-secondary); padding: 8px 18px; border-radius: 6px; font-family: var(--font-body); font-size: 14px; cursor: pointer; transition: all .2s; text-decoration: none; display: inline-block; }
.btn-ghost:hover { border-color: var(--accent); color: var(--text-primary); }
.btn-primary { background: var(--accent); border: none; color: #fff; padding: 8px 18px; border-radius: 6px; font-family: var(--font-body); font-size: 14px; font-weight: 600; cursor: pointer; transition: all .2s; text-decoration: none; display: inline-block; }
.btn-primary:hover { background: #5d56d9; transform: translateY(-1px); box-shadow: 0 4px 18px rgba(116,109,240,0.32); }
.btn-xl { padding: 14px 30px; font-size: 15px; border-radius: 8px; }
.btn-lg { padding: 12px 24px; font-size: 15px; border-radius: 7px; }


.container { max-width: var(--max-w); margin: 0 auto; padding: 0 40px; position: relative; z-index: 1; }
.container-padding-0 {
  padding-left: 0;
  padding-right: 0;
}
/* ── Common css ── */
/* ── ANIMATIONS ── */
@keyframes fadeUp   { from{opacity:0;transform:translateY(18px)} to{opacity:1;transform:none} }
@keyframes pulse    { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.4;transform:scale(.65)} }
@keyframes shimmer  { from{transform:translateX(-100%)} to{transform:translateX(200%)} }
@keyframes grow     { from{width:0} to{width:var(--w)} }
@keyframes waveBar  { 0%,100%{transform:scaleY(.4)} 50%{transform:scaleY(1)} }
@keyframes phasePulse { 0%,100%{box-shadow:0 0 0 0 rgba(15,100,220,0)} 50%{box-shadow:0 0 0 6px rgba(116,109,240,0.15)} }
@keyframes floatUp  { from{opacity:0;transform:translateY(10px)} to{opacity:.6;transform:none} }

.fade-up { opacity:0; transform:translateY(22px); transition:opacity .62s ease, transform .62s ease; }
.fade-up.in { opacity:1; transform:none; }

/* ── ANIMATIONS ── */
/* ── sections css ── */

  .section-label {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
  }
  .section-label::before {
    content: '';
    display: block;
    width: 28px;
    height: 1px;
    background: var(--text-muted);
  }
  .section-label span {
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
  }
.section-mono { display:flex; align-items:center; gap:10px; margin-bottom:16px; }
.section-mono::before { 
  content:''; 
  width:22px; 
  height:1px; 
  background:var(--text-muted);
 }
.section-mono span { 
  font-family:var(--font-mono); 
  font-size:10.5px; 
  letter-spacing:.1em; 
  text-transform:uppercase; 
  color:var(--text-muted);
 }
.block-h2 { font-family:var(--font-display); font-size:clamp(28px,3.5vw,46px); font-weight:400; line-height:1.08; letter-spacing:-.022em; margin-bottom:22px; }
.block-h2 em { font-style:italic; color:var(--accent); }
/* ── sections css ── */
/* === hero banner common css === */


.eyebrow {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--accent-soft); border: 1px solid var(--accent-border);
  color: var(--accent); font-family: var(--font-mono); font-size: 10.5px;
  font-weight: 500; letter-spacing: .11em; text-transform: uppercase;
  padding: 5px 13px; border-radius: 100px; margin-bottom: 30px;
  opacity: 0; animation: fadeUp .55s ease forwards .05s;
}
.eyebrow::before { content: ''; width: 5px; height: 5px; background: var(--accent); border-radius: 50%; animation: pulse 2s ease infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.45;transform:scale(.65)} }
@keyframes fadeUp { from{opacity:0;transform:translateY(16px)} to{opacity:1;transform:none} }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--accent-soft); border: 1px solid var(--accent-border);
  color: var(--accent); font-family: var(--font-mono); font-size: 10.5px;
  font-weight: 500; letter-spacing: .11em; text-transform: uppercase;
  padding: 5px 13px; border-radius: 100px; margin-bottom: 32px;
  opacity: 0; animation: fadeUp .5s ease forwards .05s;
}
.hero-eyebrow::before { content:''; width:5px; height:5px; background:var(--accent); border-radius:50%; animation:pulse 2s ease infinite; }

#hero .hero_title {
  font-family: var(--font-display);
  font-size: clamp(44px, 6vw, 82px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -.032em;
  max-width: 860px;
  opacity: 0; animation: fadeUp .65s ease forwards .15s;
}
#hero .hero_title em { font-style: italic; color: var(--accent); }

.hero-sub {
  margin-top: 26px; max-width: 600px;
  font-size: 18px; color: var(--text-secondary); line-height: 1.7;
  opacity: 0; animation: fadeUp .65s ease forwards .28s;
}
.hero-sub strong { color: var(--text-primary); font-weight: 500; }

.hero-actions {
  display: flex; 
  align-items: center;
  gap: 14px; 
  margin-top: 40px; 
  flex-wrap: wrap; 
  opacity: 0; 
  animation: fadeUp .65s ease forwards .4s;
}

@media screen and (max-width:1199px) {
   #hero .hero_title {
        font-size: 46px;
    }
    .hero-sub {
        font-size: 15px;
    }
}
@media(max-width:991px) {
  #hero .hero_title {
      font-size: 30px;
  }
}
@media(max-width:767px) {
    .hero-actions, .cta-row {
      gap: 10px 8px;
    }
}
/* === hero banner common css === */

/* header nav css */
.excruit_header_nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 40px;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 0 rgba(0,0,0,0.04), 0 4px 20px rgba(0,0,0,0.04);
}
.back_home_link {
    text-decoration: none;
    color: var(--accent);
}
.nav-logo { font-family: var(--font-display); color: var(--text-primary); text-decoration: none; }
.excruit_header_nav .nav-logo img {
    width: 110px;
    max-width: 110px;
}
.nav-logo span { color: var(--accent); }
.nav-links { display: flex; gap: 28px; list-style: none; }
.nav-links a { color: var(--text-secondary); text-decoration: none; font-size: 14px; transition: color .15s; }
.nav-links a:hover { color: var(--text-primary); }
.nav-cta { display: flex; gap: 10px; }
.excruit_header_nav .nav_btn {
    display: inline-flex;
    align-items: center;
    gap: 0 5px;
}
.excruit_header_nav .nav_btn img {
  width: 22px;
}
.excruit_header_nav .nav_btn .btn_icon {
    display: none;
}
.nav_toggle {
  display: none;
  cursor: pointer;
}
.nav_toggle img {
    width: 28px;
}
/* header nav css */
/* footer css */
.footer_style_one {
    border-top: 1px solid var(--border);
    padding: 36px 0;
}
.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}
.footer-inner .nav-logo img {
    width: 75px;
    max-width: 75px;
}
.footer-links {
    display: flex;
    gap: 22px;
    flex-wrap: wrap;
}
.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 13px;
    transition: color .15s;
}
.footer-links a:hover { color: var(--text-secondary); }
.footer_style_one .footer-copy { font-size: 13px; color: var(--text-muted); }
.footer_style_one .footer-copy a { color: var(--accent);}
/* footer css */
@media(max-width:1199px) {
  .excruit_header_nav .nav_btn {
      padding: 8px 12px;
  }
  .excruit_header_nav .nav-logo img {
      width: 100px;
      max-width: 100px;
  }
  .nav-links {
      gap: 28px 20px;
  }
  /* footer css */
  .footer-links {
      gap: 13px 15px;
      justify-content: center;
  }
  .footer-inner {
      justify-content: center;
  }
  /* footer css */
}
@media(max-width:991px) {
  .nav_toggle {
    display: inline-flex;
  }
  .nav-links {
    display: none;
    flex-wrap: wrap;
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    background: #fff;
    z-index: 11;
    padding: 0px 20px 20px;
    border-bottom: 2px solid var(--accent);
  }
  .nav-links > li {
      width: 100%;
  }
  .nav-links a {
      color: var(--text-secondary);
      text-decoration: none;
      font-size: 14px;
      transition: color .15s;
      padding: 6px 5px;
      display: block;
  }
}
@media(max-width:768px) {
  .excruit_header_nav { padding:0 20px; }
  .container { padding:0 20px; }
}
@media(max-width:480px) {
  .excruit_header_nav .nav_btn {
    padding: 7px 8px;
    font-size: 12px;
  }
  .excruit_header_nav .nav_btn img {
      width: 18px;
  }
 .excruit_header_nav .nav_btn .btn_icon {
      display: inline-flex;
  }
  .excruit_header_nav .nav_btn .btn_text {
    display: none;
  }
}


/*====== contact page css ==========*/
.contact_form_card * {
  font-family: var(--font-body) !important;
}
.container_form_section {
    padding-top: calc(var(--nav-h) + 60px);
    padding-bottom: 60px;
}
.contact_form_card [data-hsfc-id=Renderer] .hsfc-TextInput {
    background: #ffffff !important;
    border: 1px solid #cccccc !important;
    padding: 12px !important;
    font-size: 14px !important;
    font-family: var(--font-body) !important;
}
.contact_form_card [data-hsfc-id=Renderer] .hsfc-FieldLabel {
    color: var(--text-primary) !important;
    font-size: 14px;
}
.contact_form_card [data-hsfc-id=Renderer] .hsfc-PhoneInput:not(.hsfc-PhoneInput--rtl) .hsfc-PhoneInput__FlagAndCaret {
  background-color: #ffffff !important;
}
.contact_form_card [data-hsfc-id=Renderer] .hsfc-TextareaInput {
  background: #ffffff !important;
  border: 1px solid #cccccc !important;
  padding: 12px !important;
  resize: none;
  height: 80px !important;
   font-size: 14px !important;
   font-family: var(--font-body) !important;
}
.contact_form_card [data-hsfc-id=Renderer] .hsfc-Button {
  background-color: var(--accent) !important;
   font-size: 14px !important;
   font-family: var(--font-body) !important;
}

@media screen and (max-width:991px) {
  .contact_form_card [data-hsfc-id=Renderer] .hsfc-Step .hsfc-Step__Content {
      padding: 0 !important;
  }
}
@media screen and (max-width:991px) {
 .contact_form_card [data-hsfc-id=Renderer] .hsfc-Row {
      grid-template-columns: repeat(1, 1fr);
  }
}
/*contact page css*/


/*===== ACTIVE HIRING CYCLE (Live Workflow Preview) =====*/
.active_hire_cycle_sec {
  background:#ffffff; 
  padding:112px 0px; 
  border-top:1px solid #f0f0f0;
}
.active_hire_cycle_sec .section_title {
    line-height: inherit;
    font-weight: 400;
}
.active_hire_cycle_sec .eyebrow:before {
    display: none;
}
.active_hire_progress_card {
  border:1px solid var(--border); border-radius:16px; background:var(--bg-card); padding:32px; box-shadow:0 2px 20px rgba(0,0,0,0.05);
}
.active_hire_progress_header {
  display:flex; align-items:center; justify-content:space-between; margin-bottom:24px; padding-bottom:24px; border-bottom:1px solid var(--border);
}
.active_hire_progress_header .left_text {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: .09em;
    text-transform: uppercase;
    color: var(--text-muted);
}
.active_hire_progress_header .middle_text {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: .09em;
    text-transform: uppercase;
    color: var(--green);
    display: flex;
    align-items: center;
    gap: 6px;
}
.active_hire_progress_header .middle_text .anim_circle {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse 2s infinite;
}
.active_hire_progress_header .right_text {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
}
.workflow_steps_wrap {
  margin-bottom:32px; padding-bottom:32px; border-bottom:1px solid var(--border);
}
.workflow_steps_row {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}
.workflow_steps_row .steps_colms {
  display:flex; flex-direction:column; align-items:center; gap:8px; flex:1; text-align:center;
}
.workflow_steps_row .steps_circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 500;
    
}
.workflow_steps_row .circle_checked {
    background: var(--green-soft);
    border: 1px solid var(--green-border);
    color: var(--green);
}
.workflow_steps_row .circle_active {
  background: var(--accent);
  border: 1px solid var(--accent);
  color: #fff;
}
.workflow_steps_row .circle_pending {
    background: var(--bg);
    border: 1px solid var(--border);
    color: var(--text-muted);
}
.workflow_steps_row .steps_txt {
  font-family:var(--font-mono); font-size:10px; color:var(--text-muted); text-align:center; line-height:1.3;
}

.ai_call_example_text_box {
  border-radius:8px; border:1px solid var(--accent-border); background:var(--accent-soft); padding:16px; margin-bottom:24px;
}
.ai_call_example_row {
  display:flex; 
  flex-wrap: wrap;
  align-items:center; 
  justify-content:space-between;
}
.ai_call_example_row .left_textbox {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    padding-right: 10px;
}
.ai_wave_anim_div {
  display:flex; gap:2px; align-items:center;
}
.ai_wave_anim_div .wave_1 {
  width:2px; 
  height:8px; 
  border-radius:2px; 
  background:var(--accent); 
  animation:waveBar 1.1s ease-in-out infinite 0s;
}
.ai_wave_anim_div .wave_2 {
width:2px; height:14px; border-radius:2px; background:var(--accent); animation:waveBar 1.1s ease-in-out infinite 0.15s;
}
.ai_wave_anim_div .wave_3 {
width:2px; height:10px; border-radius:2px; background:var(--accent); animation:waveBar 1.1s ease-in-out infinite 0.3s;
}
.ai_wave_anim_div .wave_4 {
width:2px; height:16px; border-radius:2px; background:var(--accent); animation:waveBar 1.1s ease-in-out infinite 0.45s;
}
.ai_wave_anim_div .wave_5 {
width:2px; height:8px; border-radius:2px; background:var(--accent); animation:waveBar 1.1s ease-in-out infinite 0.6s;
}
.ai_call_example_row .ai_prog_text {
 font-family:var(--font-mono); font-size:10.5px; color:var(--accent); font-weight:500;
}
.ai_call_example_row .right_ai_timing {
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--text-muted);
    flex: 0 0 auto;
}

.about_hiring_Metrics {
  display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}
.about_hiring_Metrics .metrics_colm {
  text-align: center;
}
.about_hiring_Metrics .metrics_num {
  font-family:var(--font-display); 
  font-size:clamp(24px,2.5vw,32px); 
  font-weight:400; 
  color:var(--text-primary); 
  margin-bottom:8px; letter-spacing:-.02em;
}
.about_hiring_Metrics .metrics_txt {
  font-family:var(--font-mono);
  font-size:9px; 
  letter-spacing:.08em; 
  text-transform:uppercase; 
  color:var(--text-muted);
}

@media(max-width:1199px) {
  .workflow_steps_row .steps_colms {
      flex: 0 0 auto;
      min-width: 100px;
  }
}

@media(max-width:991px) {
    .about_hiring_Metrics {
      grid-template-columns: repeat(3, 1fr);
      gap: 16px 10px;
  }
}
@media(max-width:767px) {
  .active_hire_progress_header {
      flex-wrap: wrap;
      text-align: center;
      justify-content: center;
      gap: 5px 0;
  }
  .active_hire_progress_header .left_text, 
  .active_hire_progress_header .middle_text, 
  .active_hire_progress_header .right_text {
    width: 100%;
  }
  .active_hire_progress_header .middle_text {
      justify-content: center;
  }
  .about_hiring_Metrics {
      grid-template-columns: repeat(2, 1fr);
      gap: 16px 10px;
  }
  .about_hiring_Metrics .metrics_num {
      font-size: 22px;
      font-weight: 400;
  }
}
@media(max-width:575px) {
   .about_hiring_Metrics {
      grid-template-columns: repeat(1, 1fr);
      gap: 10px 0px;
  }
  .ai_call_example_row .left_textbox {
      flex: 0 0 auto;
      padding-right: 0;
      width: 100%;
      margin-bottom: 8px;
  }
  .ai_call_example_row .right_ai_timing {
      width: 100%;
  }
}
@media(max-width:375px) {
 .workflow_steps_row .steps_colms {
      min-width: auto;
      width: 100%;
  }
}
/*===== ACTIVE HIRING CYCLE (Live Workflow Preview) =====*/

/*cta section css*/
.final-cta {
  padding: 112px 0 128px;
  text-align: center;
  position: relative; overflow: hidden;
  background: #f0f5ff;
}
.final-cta::before { 
  content:''; position:absolute;inset:0; background:radial-gradient(ellipse 900px 560px at 50% 60%, rgba(15,100,220,0.08), transparent); pointer-events:none; 
}
.final-cta::after  { 
  content:''; position:absolute; width:1200px; height:1px; left:50%; top:0; transform:translateX(-50%); background:linear-gradient(90deg,transparent,var(--accent-border),transparent); 
}
.cta-mono { 
  font-family:var(--font-mono); font-size:10.5px; letter-spacing:.12em; text-transform:uppercase; color:var(--text-muted); margin-bottom:24px; 
}
.cta-label {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 24px;
}
.final-cta .cta_title {
    font-family: var(--font-display);
    font-size: 56px;
    font-weight: 400;
    line-height: 1.03;
    letter-spacing: -.03em;
    max-width: 760px;
    margin: 0 auto 24px;
}
.final-cta .cta_title em { font-style:italic; color:var(--accent); }
.final-cta p {
    font-size: 17px;
    color: var(--text-secondary);
    max-width: 480px;
    margin: 0 auto 44px;
    line-height: 1.6;
}
.cta-row {
  display:flex; gap:14px; justify-content:center; flex-wrap:wrap; 
}
.cta-qualifier { margin-top:22px; font-family:var(--font-mono); font-size:11px; color:var(--text-muted); line-height:1.65; max-width:600px; margin-left:auto; margin-right:auto; }
/*cta section css*/

/* common media css  */
@media screen and (max-width:1199px) {
    body {
        font-size: 14px !important;
    }
    .btn-lg {
        font-size: 14px !important;
    }
  .final-cta .cta_title {
      font-size: 40px;
  }
    .final-cta p {
      font-size: 16px;
  }
}
@media(max-width:991px) {
  .active_hire_cycle_sec .section_title {
      line-height: 1.2;
  }
  .final-cta .cta_title {
      font-size: 40px;
  }
  .final-cta {
      padding: 60px 0;
  }
}
@media(max-width:768px) {
  .cta-row {align-items:center; }
  .final-cta .cta_title {
      font-size: 32px;
      line-height: 1.25;
  }
  .final-cta p {
      font-size: 15px;
  }
}
@media screen and (max-width:767px) {
 .btn-xl {
    font-size: 14px;
  }
}
@media screen and (max-width:575px) {
   .final-cta .cta_title {
      font-size: 30px;
  }
}
/* common media css  */