/* ══════════════════════════════════════════════════════════
   TrustedTech Consulting — Enterprise Theme v10
   Side-by-side image/text layout. NO floating-text-over-image.
   Every CTA button sits on a solid panel.
   ══════════════════════════════════════════════════════════ */

/* ─── Tokens ──────────────────────────────────────────── */
:root {
  --blue:    #0047AB;
  --blue-2:  #0052cc;
  --teal:    #00A6A6;
  --orange:  #FF6B35;
  --ink:     #07101F;
  --ink-2:   #0D1829;
  --ink-3:   #152035;
  --white:   #FFFFFF;
  --offwhite:#F5F7FC;
  --pale:    #EEF0F8;
  --tw:      #FFFFFF;
  --tw-2:    rgba(255,255,255,.74);
  --tw-3:    rgba(255,255,255,.42);
  --td:      #07101F;
  --td-2:    rgba(7,16,31,.66);
  --td-3:    rgba(7,16,31,.32);
  --rl-d:    rgba(255,255,255,.10);
  --rl-l:    rgba(7,16,31,.10);
  --h-font:  "Poppins", system-ui, -apple-system, sans-serif;
  --b-font:  "Inter",   system-ui, -apple-system, sans-serif;
  --r:       8px;
  --r3:      999px;
  --shadow:  0 8px 28px rgba(7,16,31,.10);
  --shadow-lg:0 24px 64px rgba(7,16,31,.18);
  --max:     1200px;
  --sv:      88px;
}

/* ─── Reset ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: var(--b-font); line-height: 1.65; color: var(--td); background: var(--white); }
img  { max-width: 100%; display: block; }
a    { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
ul, ol { list-style: none; }

/* ─── Typography ──────────────────────────────────────── */
h1,h2,h3,h4 { font-family: var(--h-font); letter-spacing: -0.025em; line-height: 1.12; }
h1 { font-size: clamp(36px, 5vw, 64px); font-weight: 800; }
h2 { font-size: clamp(28px, 3.4vw, 44px); font-weight: 700; }
h3 { font-size: clamp(17px, 1.7vw, 22px); font-weight: 600; }
h4 { font-size: 14px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; }
p  { line-height: 1.68; }
.accent { color: var(--teal); }
em { font-style: normal; color: var(--blue); font-weight: 600; }

/* ─── Layout ──────────────────────────────────────────── */
.container { max-width: var(--max); margin: 0 auto; padding: 0 28px; }
section { padding: var(--sv) 0; }
.s-dark  { background: var(--ink);     color: var(--tw); }
.s-dark2 { background: var(--ink-2);   color: var(--tw); }
.s-off   { background: var(--offwhite);}
.s-pale  { background: var(--pale);    }
.s-white { background: var(--white);   }
.s-dark h1,.s-dark h2,.s-dark h3,.s-dark h4,
.s-dark2 h1,.s-dark2 h2,.s-dark2 h3,.s-dark2 h4 { color: var(--tw); }
.s-dark p, .s-dark2 p { color: var(--tw-2); }
.center { text-align: center; }
.mt-32 { margin-top: 32px; }

/* ─── Eyebrow / Section head ──────────────────────────── */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 16px;
}
.eyebrow::before {
  content: ""; display: block; width: 24px; height: 2px;
  background: var(--teal); border-radius: var(--r3); flex-shrink: 0;
}
.sh { max-width: 720px; margin-bottom: 48px; }
.sh.center { text-align: center; margin-left: auto; margin-right: auto; }
.sh p { margin-top: 14px; font-size: 17px; color: var(--td-2); line-height: 1.65; }
.s-dark .sh p, .s-dark2 .sh p { color: var(--tw-2); }

/* ─── Header ──────────────────────────────────────────── */
header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(14px) saturate(160%);
  border-bottom: 1px solid var(--rl-l);
}
.nav { display: flex; align-items: center; justify-content: space-between; padding: 16px 0; gap: 28px; }
.brand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.brand img { height: 38px; width: auto; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; font-family: var(--h-font); font-weight: 700; color: var(--ink); font-size: 16px; }
.brand-sub { font-size: 10px; font-weight: 500; color: var(--td-2); letter-spacing: 0.06em; margin-top: 2px; }
.nav-links { display: flex; align-items: center; gap: 22px; }
.nav-links > a, .dd > a { font-size: 14px; font-weight: 500; color: var(--ink); padding: 6px 0; }
.nav-links > a:hover, .dd > a:hover { color: var(--blue); }
.dd { position: relative; }
.dd > a { cursor: pointer; }
.caret { font-size: 9px; color: var(--td-2); margin-left: 2px; }
.dd-menu {
  display: none; position: absolute; top: 100%; left: -12px;
  min-width: 280px; background: var(--white);
  border: 1px solid var(--rl-l); border-radius: var(--r);
  box-shadow: var(--shadow-lg); padding: 8px; z-index: 60;
}
.dd:hover .dd-menu, .dd[data-open] .dd-menu { display: block; }
.dd-menu a { display: block; padding: 10px 12px; border-radius: 6px; }
.dd-menu a:hover { background: var(--offwhite); }
.dd-menu b { display: block; font-size: 14px; color: var(--ink); }
.dd-menu small { display: block; font-size: 12px; color: var(--td-2); margin-top: 2px; }
.nav-actions { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.menu-toggle { display: none; font-size: 22px; color: var(--ink); }

/* ─── Buttons ─────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; padding: 13px 26px; border-radius: var(--r);
  font-size: 14px; font-weight: 600; letter-spacing: 0.01em;
  border: 1px solid transparent; cursor: pointer;
  transition: all .2s; white-space: nowrap; line-height: 1; min-height: 44px;
}
.btn-sm { padding: 9px 18px; font-size: 13px; min-height: 36px; }
.btn-primary { background: var(--blue); color: #fff; border-color: var(--blue); }
.btn-primary:hover { background: var(--blue-2); border-color: var(--blue-2); }
.btn-ol-light { background: transparent; color: var(--tw); border-color: rgba(255,255,255,.32); }
.btn-ol-light:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.6); }
.btn-ol-dark { background: transparent; color: var(--td); border-color: rgba(7,16,31,.22); }
.btn-ol-dark:hover { background: var(--offwhite); }
.btn-orange { background: var(--orange); color: #fff; border-color: var(--orange); }
.btn-orange:hover { background: #e55a25; }
.btn-teal { background: var(--teal); color: #fff; border-color: var(--teal); }
.btn-teal:hover { background: #008f8f; }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.btn-row.center { justify-content: center; }

/* ─── HERO — text on the left, single image on the right.
       Text and image are in separate columns; nothing overlaps. */
.hero-section {
  position: relative;
  padding: 96px 0 64px;
  background: linear-gradient(180deg, var(--ink) 0%, var(--ink-2) 100%);
  color: var(--tw);
  overflow: hidden;
}
.hero-section h1 { color: var(--tw); margin-bottom: 18px; }
.pattern-bg-soft {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
.hero-grid {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: center;
}
.hero-text { max-width: 620px; }
.hero-text .eyebrow { color: var(--teal); }
.hero-text .lede {
  font-size: 18px; line-height: 1.65;
  color: var(--tw-2); max-width: 580px;
}
.hero-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 3;
  background: var(--ink-3);
}
.hero-image img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.hero-chip-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.hero-chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px; border-radius: var(--r3);
  border: 1px solid var(--rl-d); background: rgba(255,255,255,.06);
  font-size: 12.5px; color: var(--tw-2);
}
.hero-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 28px; margin-top: 36px;
  padding-top: 28px; border-top: 1px solid var(--rl-d);
}
.hero-stat .num {
  font-family: var(--h-font); font-weight: 700;
  font-size: clamp(28px, 3vw, 38px); color: var(--tw);
  letter-spacing: -0.02em;
}
.hero-stat .lbl {
  font-size: 12.5px; color: var(--tw-3); margin-top: 4px; letter-spacing: 0.02em;
}

/* ─── Trust strip ─────────────────────────────────────── */
.trust-strip {
  background: var(--ink-2);
  border-top: 1px solid var(--rl-d);
  border-bottom: 1px solid var(--rl-d);
  padding: 22px 0;
}
.trust-inner { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; }
.trust-label { font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--tw-3); }
.stag {
  font-size: 12.5px; color: var(--tw-2);
  padding: 6px 14px; border: 1px solid var(--rl-d);
  border-radius: var(--r3); background: rgba(255,255,255,.04);
}

/* ─── Service grid ────────────────────────────────────── */
.service-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
}
.svc-card {
  background: var(--white);
  border: 1px solid var(--rl-l);
  border-radius: var(--r);
  padding: 28px;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.svc-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: rgba(0,71,171,.25);
}
.svc-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: rgba(0,71,171,.08);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.svc-card h3 { color: var(--ink); margin-bottom: 10px; }
.svc-card p { font-size: 14.5px; color: var(--td-2); margin-bottom: 14px; }
.chips { display: flex; flex-wrap: wrap; gap: 6px; }
.chip {
  font-size: 11.5px; color: var(--td-2);
  padding: 5px 11px; border-radius: var(--r3);
  background: var(--offwhite); border: 1px solid var(--rl-l);
}

/* ─── KPI band (replacement for photo strip) ──────────── */
.kpi-band { padding: 56px 0; }
.kpi-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.kpi-tile {
  background: var(--white);
  border: 1px solid var(--rl-l);
  border-left: 3px solid var(--teal);
  border-radius: var(--r);
  padding: 24px 26px;
}
.kpi-num {
  font-family: var(--h-font); font-weight: 800;
  font-size: clamp(26px, 2.6vw, 34px);
  color: var(--ink); letter-spacing: -0.02em; line-height: 1.05;
}
.kpi-lbl {
  font-size: 13.5px; color: var(--td-2);
  margin-top: 8px; line-height: 1.5;
}

/* ─── Industry cards — image AND text in separate stacks.
       Text never overlays image. */
.industry-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.ind-card {
  background: var(--ink-2);
  border: 1px solid var(--rl-d);
  border-radius: var(--r);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .2s, border-color .2s;
}
.ind-card:hover { transform: translateY(-3px); border-color: rgba(0,166,166,.4); }
.ind-photo {
  aspect-ratio: 16 / 9;
  background: var(--ink-3);
  overflow: hidden;
}
.ind-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ind-photo.wide { aspect-ratio: 4 / 3; border-radius: var(--r); }
.ind-body { padding: 26px 26px 28px; display: flex; flex-direction: column; gap: 12px; }
.ind-label {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--teal);
}
.ind-body h3 { color: var(--tw); }
.ind-body p { color: var(--tw-2); font-size: 14.5px; }
.ind-body .btn { margin-top: auto; align-self: flex-start; }

/* ─── Tick lists ──────────────────────────────────────── */
.tick-list { display: grid; gap: 8px; margin: 12px 0 18px; }
.tick-list li {
  position: relative; padding-left: 24px;
  font-size: 14.5px; line-height: 1.6;
}
.tick-list li::before {
  content: ""; position: absolute; left: 0; top: 8px;
  width: 14px; height: 8px;
  border-left: 2px solid var(--teal);
  border-bottom: 2px solid var(--teal);
  transform: rotate(-45deg);
}
.s-dark .tick-list li, .s-dark2 .tick-list li, .ind-body .tick-list li { color: var(--tw-2); }
.tick-list.compact li { font-size: 13.5px; }

/* ─── Why / value grid (text-only cards) ──────────────── */
.why-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px;
}
.why-card {
  background: rgba(255,255,255,.04);
  border: 1px solid var(--rl-d);
  border-radius: var(--r);
  padding: 28px;
}
.why-card.light {
  background: var(--white);
  border-color: var(--rl-l);
}
.why-card h3 { color: var(--tw); margin-bottom: 10px; }
.why-card.light h3 { color: var(--ink); }
.why-card p { color: var(--tw-2); font-size: 14.5px; }
.why-card.light p { color: var(--td-2); }

/* ─── Two-col content layout (image + text, side by side) ─ */
.two-col {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 56px; align-items: center;
}
.two-col.reverse > :first-child { order: 2; }
.lead-photo {
  border-radius: var(--r);
  overflow: hidden;
  background: var(--ink-3);
  aspect-ratio: 4 / 3;
}
.lead-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.lead-body { display: flex; flex-direction: column; gap: 12px; }
.lead-row {
  display: grid; grid-template-columns: 0.9fr 1.1fr;
  gap: 48px; align-items: center;
}
.lead-title { color: var(--teal); font-size: 15px; font-weight: 600; margin-bottom: 8px; }

/* ─── Service deep-dive blocks (no image, just structured text) ─ */
.svc-deep {
  display: grid; grid-template-columns: 80px 1fr;
  gap: 28px; padding: 36px 0;
  border-bottom: 1px solid var(--rl-l);
}
.svc-deep:last-child { border-bottom: none; }
.svc-deep-num {
  font-family: var(--h-font); font-weight: 800;
  font-size: 56px; color: var(--blue);
  letter-spacing: -0.04em; line-height: 1;
  opacity: 0.6;
}
.svc-deep-body h2 { margin-bottom: 12px; }
.svc-deep-body p  { font-size: 15.5px; color: var(--td-2); margin-bottom: 14px; }
.svc-deep.alt { background: var(--offwhite); border-radius: var(--r); padding: 32px; border-bottom: none; }

/* ─── Case study cards ────────────────────────────────── */
.case-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.case-card {
  background: var(--white);
  border: 1px solid var(--rl-l);
  border-radius: var(--r);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.case-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: rgba(0,71,171,.25);
}
.case-img {
  aspect-ratio: 16 / 8;
  background: var(--ink-3);
  overflow: hidden;
}
.case-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.case-img.alt-grad {
  background: linear-gradient(135deg, var(--blue) 0%, var(--teal) 100%);
}
.case-body { padding: 26px 28px 30px; display: flex; flex-direction: column; gap: 10px; }
.case-body h3 { color: var(--ink); }
.case-body p { font-size: 14.5px; color: var(--td-2); }
.case-body .ind-label { color: var(--blue); }

/* ─── Evidence / KPI tiles in dark sections ───────────── */
.evidence-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
}
.evidence-card {
  background: var(--white);
  border-left: 3px solid var(--blue);
  border-radius: var(--r);
  padding: 26px 24px;
}
.evidence-card .big {
  font-family: var(--h-font); font-weight: 800;
  font-size: clamp(28px, 3vw, 38px);
  color: var(--blue); letter-spacing: -0.02em; line-height: 1;
}
.evidence-card .lbl {
  font-size: 13.5px; color: var(--td-2);
  margin-top: 12px; line-height: 1.5;
}

/* ─── Insight cards ───────────────────────────────────── */
.insight-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
}
.insight-card {
  background: var(--white);
  border: 1px solid var(--rl-l);
  border-radius: var(--r);
  padding: 28px;
  transition: transform .2s, box-shadow .2s, border-color .2s;
  display: flex; flex-direction: column;
}
.insight-card:hover {
  transform: translateY(-3px); box-shadow: var(--shadow);
  border-color: rgba(0,71,171,.22);
}
.insight-card .ind-label { color: var(--blue); margin-bottom: 12px; }
.insight-card h3 { color: var(--ink); margin-bottom: 10px; }
.insight-card p { font-size: 14.5px; color: var(--td-2); flex: 1; }
.read-link {
  display: inline-block; margin-top: 18px;
  font-size: 13px; font-weight: 600; color: var(--blue);
}

/* ─── CTA band ────────────────────────────────────────── */
.cta-band { padding: 72px 0; }
.cta-band h2 { margin-bottom: 12px; }
.cta-band p.lede { color: var(--td-2); margin-bottom: 24px; font-size: 17px; }
.s-dark .cta-band p.lede, .cta-band.s-dark p.lede { color: var(--tw-2); }

/* ─── Numbered list (process / engagement) ────────────── */
.num-list { display: grid; gap: 14px; counter-reset: nl; margin: 18px 0; }
.num-list li {
  position: relative; padding: 16px 18px 16px 56px;
  background: var(--white); border: 1px solid var(--rl-l);
  border-radius: var(--r); font-size: 14.5px; color: var(--td-2);
  counter-increment: nl;
}
.num-list li::before {
  content: counter(nl);
  position: absolute; left: 18px; top: 14px;
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--blue); color: #fff;
  font-weight: 700; font-size: 13px;
  display: inline-flex; align-items: center; justify-content: center;
}
.num-list strong { color: var(--ink); }

/* ─── Form ────────────────────────────────────────────── */
.form-card {
  background: var(--white);
  border: 1px solid var(--rl-l);
  border-radius: var(--r);
  padding: 32px;
  box-shadow: var(--shadow);
  display: flex; flex-direction: column; gap: 14px;
}
.form-card h3 { margin-bottom: 6px; color: var(--ink); }
.form-card label {
  display: flex; flex-direction: column; gap: 6px;
  font-size: 12.5px; font-weight: 600; color: var(--td-2);
  letter-spacing: 0.02em;
}
.form-card input, .form-card textarea {
  font-family: var(--b-font); font-size: 15px;
  padding: 12px 14px; border-radius: var(--r);
  border: 1px solid var(--rl-l); background: var(--offwhite);
  color: var(--ink); width: 100%;
}
.form-card input:focus, .form-card textarea:focus {
  outline: none; border-color: var(--blue);
  background: var(--white);
}
.form-card textarea { resize: vertical; min-height: 110px; }
.form-card .btn { align-self: flex-start; margin-top: 6px; }
.form-meta { font-size: 12.5px; color: var(--td-2); margin-top: 4px; }
.form-meta a { color: var(--blue); font-weight: 600; }
.muted { font-size: 13px; color: var(--td-2); margin-top: 14px; }

/* ─── Footer ──────────────────────────────────────────── */
.site-footer {
  background: var(--ink); color: var(--tw-2);
  padding: 64px 0 32px;
  border-top: 1px solid var(--rl-d);
}
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 48px;
}
.footer-brand {
  font-family: var(--h-font); font-weight: 800;
  font-size: 18px; color: var(--tw); margin-bottom: 12px;
}
.footer-tag { font-size: 14px; color: var(--tw-2); line-height: 1.6; max-width: 320px; }
.site-footer h4 { color: var(--tw); margin-bottom: 14px; font-weight: 600; font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase; }
.site-footer a { display: block; font-size: 14px; color: var(--tw-2); padding: 4px 0; }
.site-footer a:hover { color: var(--teal); }
.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--rl-d);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: 12.5px; color: var(--tw-3);
}

/* ─── Responsive ──────────────────────────────────────── */
@media (max-width: 1024px) {
  .service-grid, .industry-grid, .insight-grid { grid-template-columns: repeat(2, 1fr); }
  .kpi-grid { grid-template-columns: repeat(2, 1fr); }
  .evidence-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .hero-grid { gap: 36px; }
}

@media (max-width: 900px) {
  :root { --sv: 64px; }
  .menu-toggle { display: inline-flex; }
  .nav-links {
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--white); border-bottom: 1px solid var(--rl-l);
    flex-direction: column; align-items: flex-start;
    padding: 0 28px; gap: 4px;
    max-height: 0; overflow: hidden; transition: max-height .25s, padding .25s;
  }
  .nav-links.open { max-height: 80vh; overflow-y: auto; padding: 16px 28px; }
  .nav-links > a, .dd > a { width: 100%; padding: 10px 0; }
  .dd-menu { position: static; box-shadow: none; border: none; padding: 0 0 8px 12px; }
  .dd:hover .dd-menu { display: none; }
  .dd[data-open] .dd-menu { display: block; }

  .hero-grid { grid-template-columns: 1fr; }
  .hero-image { aspect-ratio: 16/9; max-height: 340px; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .two-col, .lead-row { grid-template-columns: 1fr; gap: 32px; }
  .two-col.reverse > :first-child { order: 0; }
  .case-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .svc-deep { grid-template-columns: 1fr; gap: 12px; }
  .svc-deep-num { font-size: 42px; }
}

@media (max-width: 640px) {
  .service-grid, .industry-grid, .insight-grid,
  .kpi-grid, .evidence-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-stats { grid-template-columns: 1fr; gap: 18px; }
  .container { padding: 0 22px; }
  .form-card { padding: 24px; }
}

@media (max-width: 480px) {
  .brand-sub { display: none; }
  .brand img { height: 32px; }
  .brand-text { font-size: 14px; }
}
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              