:root{--page-title-display:none;}/* Start custom CSS for shortcode, class: .elementor-element-1fb4362 *//* --- HEADER NAVIGATION --- */
.wti-header-nav {
  position: sticky; 
  top: 0; 
  z-index: 50;
  background: rgba(245,248,255,0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.wti-header-nav .nav { 
  display: flex; 
  align-items: center; 
  justify-content: space-between; 
  padding: 18px 32px; 
}
.wti-header-nav .logo { 
  display: flex; 
  align-items: center; 
  gap: 10px; 
  font-family: 'Space Grotesk'; 
  font-weight: 700; 
  font-size: 19px; 
  color: var(--navy); 
}
.wti-header-nav .logo .dot { 
  width: 11px; 
  height: 11px; 
  border-radius: 50%; 
  background: conic-gradient(from 180deg, var(--blue), var(--emerald), var(--gold), var(--blue)); 
}
.wti-header-nav .navlinks { 
  display: flex; 
  gap: 34px; 
  align-items: center; 
}
.wti-header-nav .navlinks a { 
  font-size: 14.5px; 
  font-weight: 500; 
  color: var(--ink); 
  opacity: 0.75; 
  transition: all .2s; 
}
.wti-header-nav .navlinks a:hover { 
  opacity: 1; 
  color: var(--blue); 
}
.wti-header-nav .nav-cta {
  background: var(--navy); 
  color: #fff; 
  padding: 11px 20px; 
  border-radius: 100px;
  font-size: 14px; 
  font-weight: 600; 
  white-space: nowrap;
  transition: all .2s ease;
}
.wti-header-nav .nav-cta:hover { 
  background: var(--blue); 
  transform: translateY(-1px); 
  box-shadow: 0 10px 20px -8px rgba(21,94,239,0.5); 
}
.wti-header-nav .burger { 
  display: none; 
  flex-direction: column; 
  gap: 4px; 
  cursor: pointer; 
  background: none; 
  border: none; 
  padding: 6px; 
}
.wti-header-nav .burger span { 
  width: 22px; 
  height: 2px; 
  background: var(--navy); 
}

@media (max-width: 680px) {
  .wti-header-nav .navlinks { display: none; }
  .wti-header-nav .burger { display: flex; }
}/* End custom CSS */
/* Start custom CSS *//* --- GLOBAL CONFIGURATION & VARIABLES --- */
:root {
  --navy: #0B1E3F;
  --ink: #101B33;
  --blue: #155EEF;
  --blue-deep: #0E3FB5;
  --gold: #F5A623;
  --emerald: #0FAE72;
  --cloud: #F5F8FF;
  --white: #FFFFFF;
  --slate: #4C5875;
  --line: #E2E8F5;
  --shadow: 0 20px 50px -20px rgba(11,30,63,0.25);
  --radius: 18px;
}

/* --- TYPOGRAPHY & BASE RESET --- */
.wti-block {
  font-family: 'Inter', sans-serif;
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
}
.wti-block h1, .wti-block h2, .wti-block h3, .wti-block h4 {
  font-family: 'Space Grotesk', sans-serif;
  margin: 0;
  letter-spacing: -0.01em;
  color: var(--navy);
}
.wti-block p { margin: 0; line-height: 1.6; color: var(--slate); }
.wti-block .mono { font-family: 'IBM Plex Mono', monospace; }
.wti-block a { text-decoration: none; color: inherit; }
.wti-block img { max-width: 100%; display: block; }

/* --- REUSABLE UTILITIES --- */
.wti-block .wrap { max-width: 1180px; margin: 0 auto; padding: 0 32px; }
.wti-block section { padding: 90px 0; }
.wti-block .section-head { max-width: 640px; margin: 0 auto 52px; text-align: center; }
.wti-block .section-head.left { margin: 0 0 52px; text-align: left; }
.wti-block .tag {
  font-family: 'IBM Plex Mono'; font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--emerald); display: block; margin-bottom: 12px; font-weight: 500;
}
.wti-block .section-head h2 { font-size: clamp(28px,3.4vw,38px); font-weight: 700; }
.wti-block .section-head p { margin-top: 14px; font-size: 16.5px; }

/* --- HERO & FORM --- */
.wti-hero { position: relative; overflow: hidden; padding: 76px 0 60px; background: var(--cloud); }
.wti-hero .hero-grid { display: grid; grid-template-columns: 1.15fr 0.95fr; gap: 56px; align-items: center; }
.wti-hero .eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'IBM Plex Mono'; font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--blue-deep); background: #E9F0FF; border: 1px solid #CFE0FF;
  padding: 7px 14px; border-radius: 100px; margin-bottom: 22px;
}
.wti-hero .eyebrow::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--emerald); }
.wti-hero h1 { font-size: clamp(38px,5vw,58px); font-weight: 700; line-height: 1.05; margin-bottom: 22px; }
.wti-hero h1 .accent { color: var(--blue); }
.wti-hero p.lead { font-size: 18px; max-width: 520px; margin-bottom: 34px; }
.wti-hero .hero-ctas { display: flex; gap: 16px; margin-bottom: 46px; flex-wrap: wrap; }
.wti-hero .btn-primary {
  background: var(--blue); color: #fff; padding: 15px 26px; border-radius: 12px; font-weight: 600; font-size: 15px;
  display: inline-flex; align-items: center; gap: 8px; box-shadow: 0 14px 28px -12px rgba(21,94,239,0.55);
  transition: transform .2s ease;
}
.wti-hero .btn-primary:hover { transform: translateY(-2px); }
.wti-hero .btn-secondary {
  background: transparent; color: var(--navy); padding: 15px 22px; border-radius: 12px; font-weight: 600; font-size: 15px;
  border: 1.5px solid var(--line); display: inline-flex; align-items: center; gap: 8px; transition: all .2s;
}
.wti-hero .btn-secondary:hover { border-color: var(--blue); background: #fff; }
.wti-hero .stat-row { display: flex; gap: 38px; flex-wrap: wrap; }
.wti-hero .stat b { font-family: 'Space Grotesk'; font-size: 32px; font-weight: 700; display: block; }
.wti-hero .stat span { font-family: 'IBM Plex Mono'; font-size: 11.5px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--slate); }
.wti-hero .stat:nth-child(1) b { color: var(--blue); }
.wti-hero .stat:nth-child(2) b { color: var(--emerald); }
.wti-hero .stat:nth-child(3) b { color: var(--gold); }

/* Form Card */
.wti-hero .form-card { background: var(--navy); border-radius: 24px; padding: 38px 34px; position: relative; overflow: hidden; box-shadow: var(--shadow); }
.wti-hero .form-card h3 { color: #fff; font-size: 22px; margin-bottom: 8px; position: relative; }
.wti-hero .form-card > p { color: #B9C6E8; font-size: 14.5px; margin-bottom: 24px; position: relative; }
.wti-hero .form-card form { position: relative; display: flex; flex-direction: column; gap: 12px; }
.wti-hero .form-card input, .wti-hero .form-card select, .wti-hero .form-card textarea {
  width: 100%; padding: 13px 15px; border-radius: 10px; border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.06); color: #fff; font-size: 14.5px; outline: none;
}
.wti-hero .form-card select { color: #B9C6E8; }
.wti-hero .form-submit {
  margin-top: 6px; background: var(--gold); color: var(--navy); border: none; padding: 15px; border-radius: 10px;
  font-weight: 700; font-size: 15px; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 8px;
}
.wti-hero .form-note { font-family: 'IBM Plex Mono'; font-size: 11px; color: #7C8CB8; text-align: center; margin-top: 6px; }

/* --- ADVISORY CHANNELS --- */
.wti-advisory { background: #fff; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.wti-advisory .advisory-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.wti-advisory .check-list { list-style: none; padding: 0; margin: 26px 0 0; display: flex; flex-direction: column; gap: 16px; }
.wti-advisory .check-list li { display: flex; gap: 14px; align-items: center; font-size: 16px; color: var(--ink); font-weight: 500; }
.wti-advisory .check-mark { width: 26px; height: 26px; border-radius: 8px; background: #E7F8EF; color: var(--emerald); display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 700; }
.wti-advisory .corridor-art { aspect-ratio: 1/1; border-radius: 24px; overflow: hidden; background: radial-gradient(circle at 30% 30%, #12295C, var(--navy) 65%); }

/* --- CAPABILITIES --- */
.wti-caps .cap-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.wti-caps .cap-card { background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: 32px 28px; transition: all .25s ease; }
.wti-caps .cap-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.wti-caps .cap-icon { width: 52px; height: 52px; border-radius: 14px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; font-size: 22px; }
.wti-caps .cap-card:nth-child(1) .cap-icon { background: #E9F0FF; color: var(--blue); }
.wti-caps .cap-card:nth-child(2) .cap-icon { background: #FFF3E0; color: var(--gold); }
.wti-caps .cap-card:nth-child(3) .cap-icon { background: #E7F8EF; color: var(--emerald); }
.wti-caps .cap-card .learn { margin-top: 18px; display: inline-flex; align-items: center; gap: 6px; font-weight: 600; font-size: 14px; color: var(--blue); }

/* --- PROCESS / WHY CHOOSE US --- */
.wti-process { background: var(--navy); }
.wti-process .section-head h2, .wti-process .tag { color: #fff; }
.wti-process .section-head p { color: #B9C6E8; }
.wti-process .process-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.wti-process .process-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 20px; padding: 34px; }
.wti-process .process-num { font-family: 'Space Grotesk'; font-size: 46px; font-weight: 700; color: transparent; -webkit-text-stroke: 1.5px rgba(255,255,255,0.35); margin-bottom: 14px; display: block; }
.wti-process .process-card h3 { color: #fff; font-size: 20px; margin-bottom: 10px; }
.wti-process .process-card p { color: #AEBCE0; }

/* --- GEOGRAPHIES HUBS GRID --- */
.wti-hubs .hubs-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.wti-hubs .hub-card { background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 28px 18px; text-align: center; transition: all .25s ease; }
.wti-hubs .hub-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.wti-hubs .hub-flag { font-size: 36px; margin-bottom: 12px; }
.wti-hubs .hub-card h4 { font-size: 16px; font-weight: 600; }
.wti-hubs .hub-card span { font-family: 'IBM Plex Mono'; font-size: 11px; color: var(--slate); text-transform: uppercase; letter-spacing: .05em; }

/* --- TESTIMONIALS --- */
.wti-testi { background: #fff; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.wti-testi .testi-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.wti-testi .testi-card { background: var(--cloud); border-radius: 20px; padding: 32px; }
.wti-testi .testi-card p { font-style: italic; font-size: 16px; color: var(--ink); margin-bottom: 24px; }
.wti-testi .testi-person { display: flex; align-items: center; gap: 12px; }
.wti-testi .avatar { width: 42px; height: 42px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Space Grotesk'; font-weight: 700; color: #fff; }
.wti-testi .testi-card:nth-child(1) .avatar { background: var(--blue); }
.wti-testi .testi-card:nth-child(2) .avatar { background: var(--emerald); }

/* --- INSIGHTS --- */
.wti-insights .insights-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.wti-insights .insight-card { background: #fff; border: 1px solid var(--line); border-radius: 18px; overflow: hidden; transition: all .25s ease; }
.wti-insights .insight-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.wti-insights .insight-thumb { height: 110px; display: flex; align-items: center; justify-content: center; font-size: 26px; color: #fff; }
.wti-insights .insight-card:nth-child(1) .insight-thumb { background: linear-gradient(135deg,var(--blue),#3E7BFF); }
.wti-insights .insight-card:nth-child(2) .insight-thumb { background: linear-gradient(135deg,var(--gold),#FFC96B); }
.wti-insights .insight-card:nth-child(3) .insight-thumb { background: linear-gradient(135deg,var(--emerald),#3FD79A); }
.wti-insights .insight-body { padding: 20px 22px 24px; }
.wti-insights .insight-cat { font-family: 'IBM Plex Mono'; font-size: 10.5px; text-transform: uppercase; color: var(--slate); display: block; margin-bottom: 8px; }

/* --- CALL TO ACTION --- */
.wti-cta .final-cta { background: linear-gradient(120deg, var(--navy), #142B57 60%, var(--blue-deep)); border-radius: 28px; padding: 70px 40px; text-align: center; position: relative; overflow: hidden; }
.wti-cta h2 { color: #fff; font-size: clamp(26px,3.6vw,40px); }
.wti-cta p { color: #C4D0F0; max-width:560px; margin: 16px auto 30px; font-size: 16px; }
.wti-cta .btn-primary { background: var(--gold); color: var(--navy); padding: 15px 26px; border-radius: 12px; font-weight: 600; display: inline-flex; align-items: center; gap: 8px; }

/* --- FOOTER --- */
.wti-footer { padding: 70px 0 30px; background: var(--cloud); }
.wti-footer .footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 40px; padding-bottom: 40px; }
.wti-footer h5 { font-family: 'IBM Plex Mono'; font-size: 12px; text-transform: uppercase; color: var(--navy); margin-bottom: 16px; }
.wti-footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 11px; }
.wti-footer ul a { font-size: 14px; color: var(--slate); transition: color .2s; }
.wti-footer ul a:hover { color: var(--blue); }
.wti-footer .footer-bottom { border-top: 1px solid var(--line); padding-top: 24px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 13px; color: var(--slate); }

/* --- RESPONSIVE MEDIA QUERIES --- */
@media (max-width: 980px) {
  .wti-hero .hero-grid, .wti-advisory .advisory-grid, .wti-process .process-grid { grid-template-columns: 1fr; }
  .wti-caps .cap-grid, .wti-hubs .hubs-grid, .wti-footer .footer-grid { grid-template-columns: 1fr 1fr; }
  .wti-insights .insights-grid, .wti-testi .testi-grid { grid-template-columns: 1fr; }
}
@media (max-width: 680px) {
  .wti-caps .cap-grid, .wti-hubs .hubs-grid, .wti-footer .footer-grid { grid-template-columns: 1fr; }
  .wti-cta .final-cta { padding: 50px 24px; }
}/* End custom CSS */