/* ================================================================
   iTech Global — style.css
   Upload this file to: WordPress → Appearance → Theme File Editor
   OR via FTP to: /wp-content/themes/your-theme/style.css (append)
   OR use WPCode plugin → paste into Header CSS
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=DM+Sans:wght@300;400;500&display=swap');

/* ----------------------------------------------------------------
   1. HARD RESET — overrides WordPress & Elementor defaults
   ---------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --gold:        #C9A84C;
  --gold-light:  #E8CB80;
  --gold-dim:    #7A612A;
  --ink:         #0A0A0F;
  --ink-soft:    #1A1A24;
  --ink-mid:     #2E2E3A;
  --surface:     #F5F3EE;
  --surface-warm:#EDE9DF;
  --white:       #FFFFFF;
  --muted:       #6B6875;
  --body-text:   #2A2835;
  --head:        'Syne', sans-serif;
  --body:        'DM Sans', sans-serif;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--body) !important;
  background: var(--ink) !important;
  color: var(--white) !important;
  overflow-x: hidden !important;
  -webkit-font-smoothing: antialiased;
}

/* Kill Elementor / WordPress padding that breaks full-width layouts */
.elementor-section-wrap,
.elementor-inner,
.elementor-container,
.wp-site-blocks,
.site-content,
.entry-content,
#page,
#content,
#primary,
.elementor-widget-wrap {
  padding: 0 !important;
  margin: 0 !important;
  max-width: 100% !important;
}

/* Hide WP admin bar space */
html { margin-top: 0 !important; }
#wpadminbar { display: none; }

/* Kill default WP page title */
.entry-title,
.page-title,
.elementor-page-title { display: none !important; }

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; }
ul, ol { list-style: none; }

/* ----------------------------------------------------------------
   2. CUSTOM CURSOR
   ---------------------------------------------------------------- */
body { cursor: none; }
.itg-cursor {
  position: fixed;
  width: 10px; height: 10px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: width .2s, height .2s;
}
.itg-cursor-ring {
  position: fixed;
  width: 38px; height: 38px;
  border: 1px solid rgba(201,168,76,.4);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
}

/* ----------------------------------------------------------------
   3. NAVIGATION
   ---------------------------------------------------------------- */
.itg-nav {
  position: fixed !important;
  top: 0; left: 0; right: 0;
  z-index: 9999;
  padding: 20px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  background: rgba(10,10,15,.88);
  border-bottom: 1px solid rgba(201,168,76,.12);
  transition: padding .3s ease;
}
.itg-nav.scrolled { padding: 13px 60px; }

.itg-nav-logo {
  font-family: var(--head);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -.5px;
  color: var(--white);
}
.itg-nav-logo span { color: var(--gold); }

.itg-nav-links {
  display: flex;
  gap: 38px;
  list-style: none;
}
.itg-nav-links a {
  color: rgba(255,255,255,.58);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .6px;
  text-transform: uppercase;
  font-family: var(--body);
  transition: color .2s;
}
.itg-nav-links a:hover { color: var(--gold); }

.itg-nav-cta {
  background: var(--gold);
  color: var(--ink) !important;
  padding: 10px 24px;
  border-radius: 2px;
  font-family: var(--head);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .8px;
  text-transform: uppercase;
  transition: background .2s, transform .2s;
  white-space: nowrap;
}
.itg-nav-cta:hover { background: var(--gold-light); transform: translateY(-1px); }

.itg-nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.itg-nav-burger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all .3s;
}

.itg-mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--ink-soft);
  z-index: 9998;
  padding: 100px 40px 40px;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform .4s cubic-bezier(.4,0,.2,1);
}
.itg-mobile-menu.open { transform: translateX(0); display: flex; }
.itg-mobile-menu a {
  color: rgba(255,255,255,.75);
  font-family: var(--head);
  font-size: 28px;
  font-weight: 700;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: color .2s;
}
.itg-mobile-menu a:hover { color: var(--gold); }

/* ----------------------------------------------------------------
   4. SHARED UTILITIES
   ---------------------------------------------------------------- */
.itg-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 60px;
  width: 100%;
}

.itg-label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.itg-label::before {
  content: '';
  display: block;
  width: 32px; height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.itg-h2 {
  font-family: var(--head);
  font-size: clamp(36px, 4vw, 58px);
  font-weight: 800;
  letter-spacing: -2px;
  line-height: 1.04;
  color: var(--white);
  margin-bottom: 18px;
}
.itg-h2.dark { color: var(--ink); }

.itg-lead {
  font-size: 17px;
  color: rgba(255,255,255,.5);
  font-weight: 300;
  line-height: 1.78;
  font-family: var(--body);
  max-width: 560px;
}
.itg-lead.dark { color: rgba(10,10,15,.6); }

.itg-btn-gold {
  display: inline-block;
  background: var(--gold);
  color: var(--ink) !important;
  padding: 15px 36px;
  font-family: var(--head);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background .2s, transform .2s;
}
.itg-btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); color: var(--ink) !important; }

.itg-btn-ghost {
  display: inline-block;
  background: transparent;
  color: var(--white) !important;
  padding: 15px 36px;
  font-family: var(--head);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 2px;
  transition: all .2s;
}
.itg-btn-ghost:hover { border-color: var(--gold); color: var(--gold) !important; }

.itg-btn-dark {
  display: inline-block;
  background: var(--ink);
  color: var(--gold) !important;
  padding: 15px 36px;
  font-family: var(--head);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background .2s, transform .2s;
}
.itg-btn-dark:hover { background: var(--ink-soft); transform: translateY(-2px); }

.itg-btn-ghost-dark {
  display: inline-block;
  background: transparent;
  color: rgba(10,10,15,.7) !important;
  padding: 15px 36px;
  font-family: var(--head);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 1px solid rgba(10,10,15,.3);
  border-radius: 2px;
  transition: all .2s;
}
.itg-btn-ghost-dark:hover { border-color: rgba(10,10,15,.7); color: var(--ink) !important; }

.itg-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ----------------------------------------------------------------
   5. HERO
   ---------------------------------------------------------------- */
#itg-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--ink);
  padding: 140px 0 100px;
  overflow: hidden;
}

.itg-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,.07) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
}
.itg-hero-orb1 {
  position: absolute;
  top: -250px; right: -150px;
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(201,168,76,.1) 0%, transparent 65%);
  pointer-events: none;
}
.itg-hero-orb2 {
  position: absolute;
  bottom: -250px; left: -100px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(26,79,138,.18) 0%, transparent 65%);
  pointer-events: none;
}

.itg-hero-wrap {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 60px;
  width: 100%;
}

.itg-hero-content { flex: 1; max-width: 860px; }

.itg-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(201,168,76,.1);
  border: 1px solid rgba(201,168,76,.28);
  border-radius: 2px;
  padding: 7px 18px;
  margin-bottom: 38px;
}
.itg-hero-badge-dot {
  width: 7px; height: 7px;
  background: var(--gold);
  border-radius: 50%;
  animation: itgPulse 2s infinite;
}
@keyframes itgPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .4; transform: scale(.8); }
}
.itg-hero-badge span {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  font-family: var(--body);
}

.itg-hero-h1 {
  font-family: var(--head);
  font-size: clamp(52px, 7.5vw, 98px);
  font-weight: 800;
  line-height: .98;
  letter-spacing: -3.5px;
  color: var(--white);
  margin-bottom: 30px;
}
.itg-hero-h1 em { font-style: normal; color: var(--gold); }

.itg-hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,.55);
  font-weight: 300;
  line-height: 1.78;
  max-width: 560px;
  margin-bottom: 46px;
  font-family: var(--body);
}

.itg-hero-markets {
  display: flex;
  gap: 28px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 48px;
}
.itg-mkt-item { display: flex; align-items: center; gap: 10px; }
.itg-mkt-flag { font-size: 22px; line-height: 1; }
.itg-mkt-name {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,.38);
  font-family: var(--body);
}
.itg-mkt-sep { width: 1px; height: 22px; background: rgba(255,255,255,.1); }

.itg-hero-stats {
  display: flex;
  flex-direction: column;
  gap: 30px;
  text-align: right;
  flex-shrink: 0;
  padding-bottom: 8px;
}
.itg-stat-num {
  font-family: var(--head);
  font-size: 50px;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.itg-stat-label {
  font-size: 11px;
  color: rgba(255,255,255,.32);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 5px;
  font-family: var(--body);
}
.itg-stat-line {
  width: 40px; height: 1px;
  background: rgba(201,168,76,.3);
  margin-left: auto; margin-top: 10px;
}

/* ----------------------------------------------------------------
   6. TICKER
   ---------------------------------------------------------------- */
.itg-ticker {
  background: var(--gold);
  padding: 15px 0;
  overflow: hidden;
  white-space: nowrap;
}
.itg-ticker-track {
  display: inline-flex;
  animation: itgTick 36s linear infinite;
}
.itg-ticker-track:hover { animation-play-state: paused; }
@keyframes itgTick {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.itg-ticker-item {
  font-family: var(--head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink);
  padding: 0 36px;
  display: inline-flex;
  align-items: center;
  gap: 36px;
}
.itg-ticker-item::after { content: '◆'; font-size: 8px; opacity: .32; }

/* ----------------------------------------------------------------
   7. SERVICES
   ---------------------------------------------------------------- */
#itg-services {
  background: var(--ink);
  padding: 110px 0;
  color: var(--white);
}
.itg-svc-header { max-width: 640px; margin-bottom: 64px; }
.itg-svc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.06);
}
.itg-svc-card {
  background: var(--ink);
  padding: 56px 52px;
  position: relative;
  overflow: hidden;
  transition: background .35s;
}
.itg-svc-card:hover { background: var(--ink-soft); }
.itg-svc-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0;
  width: 2px; height: 0;
  background: var(--gold);
  transition: height .45s cubic-bezier(.4,0,.2,1);
}
.itg-svc-card:hover::before { height: 100%; }
.itg-svc-card::after {
  content: attr(data-num);
  position: absolute;
  top: 16px; right: 28px;
  font-family: var(--head);
  font-size: 88px;
  font-weight: 800;
  color: rgba(255,255,255,.024);
  line-height: 1;
  pointer-events: none;
}
.itg-svc-icon {
  width: 52px; height: 52px;
  border: 1px solid rgba(201,168,76,.28);
  border-radius: 2px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 28px;
  transition: background .3s, border-color .3s;
}
.itg-svc-card:hover .itg-svc-icon {
  background: rgba(201,168,76,.1);
  border-color: var(--gold);
}
.itg-svc-icon svg {
  width: 22px; height: 22px;
  stroke: var(--gold); fill: none;
  stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round;
}
.itg-svc-card h3 {
  font-family: var(--head);
  font-size: 22px; font-weight: 700;
  letter-spacing: -.4px; color: var(--white);
  margin-bottom: 14px;
}
.itg-svc-card p {
  font-size: 15px;
  color: rgba(255,255,255,.46);
  line-height: 1.82; font-weight: 300;
  font-family: var(--body); margin: 0;
}
.itg-svc-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.itg-svc-tag {
  font-size: 11px; font-weight: 500; letter-spacing: .5px;
  background: rgba(201,168,76,.08);
  border: 1px solid rgba(201,168,76,.16);
  color: rgba(201,168,76,.8);
  padding: 4px 12px; border-radius: 2px;
  font-family: var(--body);
}

/* ----------------------------------------------------------------
   8. PROCESS
   ---------------------------------------------------------------- */
#itg-process {
  background: var(--ink-soft);
  padding: 110px 0;
  color: var(--white);
}
.itg-proc-header { max-width: 600px; margin-bottom: 72px; }
.itg-proc-header p {
  font-size: 17px; color: rgba(255,255,255,.46);
  font-weight: 300; line-height: 1.78;
  font-family: var(--body); margin-top: 14px;
}
.itg-proc-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
}
.itg-proc-steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: calc(12.5% + 16px);
  right: calc(12.5% + 16px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,.4), rgba(201,168,76,.4), transparent);
}
.itg-step { padding: 0 28px; text-align: center; }
.itg-step-circle {
  width: 80px; height: 80px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,.3);
  background: var(--ink-soft);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 32px;
  position: relative; z-index: 2;
  transition: all .35s;
}
.itg-step-circle:hover {
  background: var(--gold); border-color: var(--gold); transform: scale(1.1);
}
.itg-step-num {
  font-family: var(--head);
  font-size: 22px; font-weight: 800; color: var(--gold);
  transition: color .3s; line-height: 1;
}
.itg-step-circle:hover .itg-step-num { color: var(--ink); }
.itg-step h4 {
  font-family: var(--head);
  font-size: 17px; font-weight: 700; color: var(--white);
  margin-bottom: 12px; letter-spacing: -.2px;
}
.itg-step p {
  font-size: 14px; color: rgba(255,255,255,.4);
  line-height: 1.78; font-weight: 300;
  font-family: var(--body); margin: 0;
}

/* ----------------------------------------------------------------
   9. ABOUT
   ---------------------------------------------------------------- */
#itg-about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  color: var(--white);
}
.itg-about-l {
  background: var(--ink);
  padding: 110px 64px 110px 60px;
}
.itg-about-r {
  background: var(--ink-soft);
  padding: 90px 64px;
  display: flex; flex-direction: column; justify-content: center; gap: 20px;
}
.itg-about-body {
  font-size: 16px;
  color: rgba(255,255,255,.5);
  font-weight: 300; line-height: 1.88;
  font-family: var(--body); margin-bottom: 20px;
}
.itg-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px; margin-top: 16px;
}
.itg-pillar {
  border-left: 2px solid var(--gold);
  padding-left: 16px;
}
.itg-pillar h5 {
  font-family: var(--head); font-size: 14px; font-weight: 700;
  color: var(--white); margin-bottom: 6px;
}
.itg-pillar p {
  font-size: 13px; color: rgba(255,255,255,.4);
  line-height: 1.65; font-weight: 300;
  font-family: var(--body); margin: 0;
}
.itg-stat-box {
  background: rgba(201,168,76,.07);
  border: 1px solid rgba(201,168,76,.16);
  border-radius: 2px; padding: 28px;
}
.itg-stat-box-num {
  font-family: var(--head); font-size: 42px; font-weight: 800;
  color: var(--gold); line-height: 1; margin-bottom: 8px;
}
.itg-stat-box-desc {
  font-size: 14px; color: rgba(255,255,255,.38);
  font-weight: 300; font-family: var(--body); line-height: 1.5;
}
.itg-stat-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.itg-nda-box {
  background: rgba(201,168,76,.07);
  border: 1px solid rgba(201,168,76,.16);
  border-radius: 2px; padding: 28px;
  display: flex; align-items: center; gap: 20px;
}
.itg-nda-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  border: 1px solid rgba(201,168,76,.3); border-radius: 2px;
  display: flex; align-items: center; justify-content: center;
}
.itg-nda-icon svg {
  width: 22px; height: 22px; stroke: var(--gold);
  fill: none; stroke-width: 1.5; stroke-linecap: round;
}
.itg-nda-text h5 {
  font-family: var(--head); font-size: 15px; font-weight: 700;
  color: var(--gold); margin-bottom: 6px;
}
.itg-nda-text p {
  font-size: 13px; color: rgba(255,255,255,.38);
  font-weight: 300; font-family: var(--body); line-height: 1.6; margin: 0;
}

/* ----------------------------------------------------------------
   10. MARKETS
   ---------------------------------------------------------------- */
#itg-markets {
  background: var(--surface);
  display: flex;
  align-items: stretch;
}
.itg-mkt-card {
  flex: 1; padding: 80px 56px;
  border-right: 1px solid rgba(10,10,15,.08);
  transition: background .3s;
}
.itg-mkt-card:last-child { border-right: none; }
.itg-mkt-card:hover { background: var(--surface-warm); }
.itg-mkt-emoji { font-size: 52px; line-height: 1; display: block; margin-bottom: 24px; }
.itg-mkt-card h3 {
  font-family: var(--head); font-size: 28px; font-weight: 800;
  color: var(--ink); letter-spacing: -1px; margin-bottom: 6px;
}
.itg-mkt-city {
  font-size: 11px; font-weight: 500; letter-spacing: 2px;
  text-transform: uppercase; color: var(--gold-dim);
  margin-bottom: 18px; font-family: var(--body); display: block;
}
.itg-mkt-card p {
  font-size: 15px; color: var(--muted); line-height: 1.8;
  font-weight: 400; font-family: var(--body); margin-bottom: 22px;
}
.itg-mkt-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.itg-mkt-tag {
  font-size: 12px; font-weight: 500; letter-spacing: .3px;
  background: rgba(10,10,15,.06); color: var(--body-text);
  padding: 5px 13px; border-radius: 2px; font-family: var(--body);
}

/* ----------------------------------------------------------------
   11. PORTFOLIO
   ---------------------------------------------------------------- */
#itg-portfolio {
  background: var(--ink);
  padding: 110px 0;
  color: var(--white);
}
.itg-port-header { max-width: 640px; margin-bottom: 64px; }
.itg-port-header p {
  font-size: 17px; color: rgba(255,255,255,.44);
  font-weight: 300; line-height: 1.78; font-family: var(--body); margin-top: 14px;
}
.itg-port-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.06);
}
.itg-pitem {
  background: var(--ink);
  padding: 48px 44px;
  position: relative; overflow: hidden;
  min-height: 250px;
  display: flex; flex-direction: column; justify-content: flex-end;
  transition: background .3s;
}
.itg-pitem:hover { background: var(--ink-soft); }
.itg-pitem.featured { grid-column: span 2; min-height: 310px; }
.itg-pitem-bg {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--head); font-size: 120px; font-weight: 800;
  color: rgba(255,255,255,.022); letter-spacing: -8px;
  pointer-events: none; user-select: none;
}
.itg-pitem-arrow {
  position: absolute; top: 28px; right: 28px;
  width: 40px; height: 40px;
  border: 1px solid rgba(201,168,76,.2); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: all .3s;
}
.itg-pitem:hover .itg-pitem-arrow { background: var(--gold); border-color: var(--gold); }
.itg-pitem-arrow svg {
  width: 14px; height: 14px;
  stroke: var(--gold); fill: none; stroke-width: 2;
  stroke-linecap: round; stroke-linejoin: round; transition: stroke .3s;
}
.itg-pitem:hover .itg-pitem-arrow svg { stroke: var(--ink); }
.itg-pitem-tag {
  font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--gold); font-weight: 500; margin-bottom: 10px;
  font-family: var(--body); position: relative; z-index: 2;
}
.itg-pitem h4 {
  font-family: var(--head); font-size: 20px; font-weight: 700;
  letter-spacing: -.4px; color: var(--white);
  margin-bottom: 8px; position: relative; z-index: 2;
}
.itg-pitem p {
  font-size: 14px; color: rgba(255,255,255,.36);
  font-weight: 300; line-height: 1.68;
  font-family: var(--body); margin: 0; position: relative; z-index: 2;
}
.itg-port-footer {
  margin-top: 52px;
  display: flex; align-items: center; gap: 22px; flex-wrap: wrap;
}
.itg-port-footer p {
  font-size: 15px; color: rgba(255,255,255,.38);
  font-weight: 300; font-family: var(--body); margin: 0;
}

/* ----------------------------------------------------------------
   12. TESTIMONIALS
   ---------------------------------------------------------------- */
#itg-testimonials {
  background: var(--ink-soft);
  padding: 110px 0;
  color: var(--white);
}
.itg-testi-header { max-width: 640px; margin-bottom: 64px; }
.itg-testi-header p {
  font-size: 17px; color: rgba(255,255,255,.44);
  font-weight: 300; line-height: 1.78; font-family: var(--body); margin-top: 14px;
}
.itg-tgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.itg-tcard {
  background: var(--ink);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 2px; padding: 38px;
  position: relative;
  transition: border-color .3s, transform .3s;
}
.itg-tcard:hover { border-color: rgba(201,168,76,.25); transform: translateY(-5px); }
.itg-tcard::before {
  content: '\201C';
  position: absolute; top: 20px; right: 24px;
  font-size: 72px; color: rgba(201,168,76,.08);
  font-family: Georgia, serif; line-height: 1; pointer-events: none;
}
.itg-stars { display: flex; gap: 3px; margin-bottom: 20px; }
.itg-star { color: var(--gold); font-size: 15px; }
.itg-tcard blockquote {
  font-size: 15px; color: rgba(255,255,255,.66);
  line-height: 1.88; font-weight: 300; font-style: italic;
  font-family: var(--body); margin: 0 0 28px; padding: 0; border: none;
}
.itg-tauthor { display: flex; align-items: center; gap: 14px; }
.itg-tavatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dim), var(--gold));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--head); font-size: 14px; font-weight: 700;
  color: var(--ink); flex-shrink: 0;
}
.itg-tauthor-name {
  font-family: var(--head); font-size: 14px; font-weight: 700;
  color: var(--white); margin-bottom: 3px;
}
.itg-tauthor-role { font-size: 12px; color: rgba(255,255,255,.3); font-family: var(--body); }
.itg-tplatform {
  position: absolute; bottom: 28px; right: 28px;
  font-size: 10px; letter-spacing: 1px; text-transform: uppercase;
  color: rgba(255,255,255,.18); font-family: var(--body); font-weight: 500;
}

/* ----------------------------------------------------------------
   13. CONTACT / CTA
   ---------------------------------------------------------------- */
#itg-contact {
  background: var(--gold);
  padding: 110px 0;
  position: relative; overflow: hidden;
}
#itg-contact::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    45deg, transparent, transparent 40px,
    rgba(10,10,15,.04) 40px, rgba(10,10,15,.04) 80px
  );
  pointer-events: none;
}
.itg-contact-inner { position: relative; z-index: 2; }
.itg-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: start;
}
.itg-contact-label { color: rgba(10,10,15,.45) !important; }
.itg-contact-label::before { background: rgba(10,10,15,.3) !important; }
.itg-contact-h2 {
  font-family: var(--head);
  font-size: clamp(36px, 4.5vw, 64px);
  font-weight: 800; color: var(--ink);
  letter-spacing: -2px; line-height: 1.0; margin-bottom: 20px;
}
.itg-contact-sub {
  font-size: 17px; color: rgba(10,10,15,.58);
  font-weight: 300; line-height: 1.78;
  font-family: var(--body); margin-bottom: 36px;
}
.itg-trust { display: flex; flex-wrap: wrap; gap: 20px; margin-top: 36px; }
.itg-trust-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 500;
  color: rgba(10,10,15,.55); font-family: var(--body);
}
.itg-trust-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(10,10,15,.3); flex-shrink: 0;
}
.itg-contact-cards { display: flex; flex-direction: column; gap: 18px; }
.itg-ccard {
  background: rgba(10,10,15,.08);
  border: 1px solid rgba(10,10,15,.1);
  border-radius: 2px; padding: 22px 26px;
  display: flex; align-items: center; gap: 18px;
  text-decoration: none; transition: background .2s, transform .2s;
}
.itg-ccard:hover { background: rgba(10,10,15,.14); transform: translateX(6px); }
.itg-ccard-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  background: rgba(10,10,15,.1); border-radius: 2px;
  display: flex; align-items: center; justify-content: center;
}
.itg-ccard-icon svg {
  width: 22px; height: 22px; stroke: var(--ink);
  fill: none; stroke-width: 1.5; stroke-linecap: round;
}
.itg-ccard-label {
  font-size: 10px; font-weight: 500; letter-spacing: 1.5px;
  text-transform: uppercase; color: rgba(10,10,15,.42);
  font-family: var(--body); margin-bottom: 4px;
}
.itg-ccard-val {
  font-family: var(--head); font-size: 16px; font-weight: 700;
  color: var(--ink); letter-spacing: -.2px;
}
.itg-offices-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; }
.itg-office-box {
  background: rgba(10,10,15,.08); border: 1px solid rgba(10,10,15,.08);
  border-radius: 2px; padding: 16px; text-align: center;
}
.itg-office-flag { font-size: 22px; display: block; margin-bottom: 6px; }
.itg-office-city { font-family: var(--head); font-size: 13px; font-weight: 700; color: var(--ink); }
.itg-office-country { font-size: 11px; color: rgba(10,10,15,.42); font-family: var(--body); margin-top: 2px; }

/* ----------------------------------------------------------------
   14. FOOTER
   ---------------------------------------------------------------- */
#itg-footer {
  background: var(--ink-soft);
  border-top: 1px solid rgba(255,255,255,.05);
  padding: 72px 0 36px;
  color: var(--white);
}
.itg-footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 48px; margin-bottom: 56px;
}
.itg-footer-logo {
  font-family: var(--head); font-weight: 800;
  font-size: 22px; letter-spacing: -.5px; color: var(--white);
}
.itg-footer-logo span { color: var(--gold); }
.itg-footer-desc {
  font-size: 14px; color: rgba(255,255,255,.38);
  line-height: 1.8; font-weight: 300; font-family: var(--body);
  margin-top: 16px; max-width: 280px;
}
.itg-footer-tagline {
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,.18); font-family: var(--body);
  margin-top: 24px;
}
.itg-footer-col h6 {
  font-family: var(--head); font-size: 11px; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px;
}
.itg-footer-links { display: flex; flex-direction: column; gap: 12px; }
.itg-footer-links a {
  font-size: 14px; color: rgba(255,255,255,.38);
  font-weight: 300; font-family: var(--body); transition: color .2s;
}
.itg-footer-links a:hover { color: var(--white); }
.itg-footer-contact { display: flex; flex-direction: column; gap: 10px; }
.itg-footer-crow {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 13px; color: rgba(255,255,255,.38);
  font-weight: 300; font-family: var(--body); line-height: 1.55;
}
.itg-footer-crow strong {
  font-size: 10px; letter-spacing: .8px; text-transform: uppercase;
  color: rgba(255,255,255,.5); font-weight: 600; min-width: 36px; padding-top: 1px;
}
.itg-footer-bottom {
  border-top: 1px solid rgba(255,255,255,.05);
  padding-top: 28px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
}
.itg-footer-copy { font-size: 13px; color: rgba(255,255,255,.22); font-family: var(--body); }
.itg-socials { display: flex; gap: 12px; }
.itg-social {
  width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,.1); border-radius: 2px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.38); font-size: 12px; font-weight: 700;
  font-family: var(--head); transition: all .2s;
}
.itg-social:hover { border-color: var(--gold); color: var(--gold); }

/* ----------------------------------------------------------------
   15. RESPONSIVE
   ---------------------------------------------------------------- */
@media (max-width: 1100px) {
  .itg-inner { padding: 0 40px; }
  .itg-nav { padding: 18px 40px; }
  .itg-footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 900px) {
  .itg-nav { padding: 18px 24px; }
  .itg-nav-links, .itg-nav-cta { display: none; }
  .itg-nav-burger { display: flex; }
  .itg-inner { padding: 0 24px; }

  .itg-hero-wrap { flex-direction: column; align-items: flex-start; }
  .itg-hero-stats { display: none; }
  .itg-hero-h1 { font-size: clamp(42px, 10vw, 64px); letter-spacing: -2px; }

  .itg-svc-grid { grid-template-columns: 1fr; }
  .itg-svc-card { padding: 44px 32px; }

  .itg-proc-steps { grid-template-columns: 1fr 1fr; gap: 48px 0; }
  .itg-proc-steps::before { display: none; }

  #itg-about { grid-template-columns: 1fr; }
  .itg-about-l { padding: 80px 24px 60px; }
  .itg-about-r { padding: 60px 24px 80px; }

  #itg-markets { flex-direction: column; }
  .itg-mkt-card { border-right: none; border-bottom: 1px solid rgba(10,10,15,.08); padding: 56px 28px; }
  .itg-mkt-card:last-child { border-bottom: none; }

  .itg-port-grid { grid-template-columns: 1fr; }
  .itg-pitem.featured { grid-column: span 1; }

  .itg-tgrid { grid-template-columns: 1fr; }

  .itg-contact-grid { grid-template-columns: 1fr; gap: 52px; }
  .itg-footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  .itg-hero-h1 { font-size: 40px; letter-spacing: -1.5px; }
  .itg-h2 { font-size: 32px; letter-spacing: -1px; }
  .itg-proc-steps { grid-template-columns: 1fr; }
  .itg-stat-row { grid-template-columns: 1fr; }
  .itg-pillars { grid-template-columns: 1fr; }
  .itg-footer-grid { grid-template-columns: 1fr; }
  .itg-offices-row { grid-template-columns: repeat(3,1fr); }
}
