/* ==========================================================================
   3A Digital — Modernist design system + widget styles
   Ported 1:1 from "3A Digital Site v2.dc.html"
   ========================================================================== */

:root {
  --color-bg: #f3f2f2;
  --color-surface: #eae9e9;
  --color-text: #201e1d;
  --color-accent: #ec3013;
  --color-accent-2: #e15b47;
  --color-divider: rgba(32, 30, 29, 0.4);

  --color-neutral-100: #f8f4f4;
  --color-neutral-200: #eae7e7;
  --color-neutral-300: #d7d3d3;
  --color-neutral-400: #bab6b6;
  --color-neutral-500: #9b9797;
  --color-neutral-600: #7d7979;
  --color-neutral-700: #605d5d;
  --color-neutral-800: #444141;
  --color-neutral-900: #2d2b2b;

  --color-accent-100: #fff2ef;
  --color-accent-200: #ffe0d9;
  --color-accent-300: #ffc4b8;
  --color-accent-400: #ff9783;
  --color-accent-500: #ff563c;
  --color-accent-600: #dd2b0f;
  --color-accent-700: #ae1800;
  --color-accent-800: #7c1405;
  --color-accent-900: #4d170e;

  --color-accent-2-100: #fff2ef;
  --color-accent-2-200: #ffe0da;
  --color-accent-2-300: #ffc4b9;
  --color-accent-2-400: #ff9784;
  --color-accent-2-500: #ef6853;
  --color-accent-2-600: #c94b39;
  --color-accent-2-700: #9e3526;
  --color-accent-2-800: #71261b;
  --color-accent-2-900: #471d16;

  --font-heading: "Archivo", system-ui, sans-serif;
  --font-heading-weight: 800;
  --font-body: "Archivo", system-ui, sans-serif;

  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-6: 24px;
  --space-8: 32px;

  --radius-sm: 0px;
  --radius-md: 0px;
  --radius-lg: 0px;

  --shadow-sm: 0 1px 2px rgba(45, 43, 43, 0.14);
  --shadow-md: 0 3px 10px rgba(45, 43, 43, 0.16);
  --shadow-lg: 0 12px 32px rgba(45, 43, 43, 0.22);

  --tt-shell: 1400px;
}

/* --------------------------------------------------------------- base --- */

html { scroll-behavior: smooth; }

body.tt-3a {
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.55;
  font-weight: 400;
  margin: 0;
  overflow-x: hidden;
}

body.tt-3a h1,
body.tt-3a h2,
body.tt-3a h3,
body.tt-3a h4,
body.tt-3a h5,
body.tt-3a h6 {
  font-family: var(--font-heading);
  font-weight: var(--font-heading-weight);
  line-height: 1.12;
  letter-spacing: -0.015em;
  margin: 0 0 var(--space-2);
}

body.tt-3a a { color: var(--color-accent-700); text-decoration: none; text-underline-offset: 3px; }
body.tt-3a a:hover { color: var(--color-accent); }
body.tt-3a img { display: block; max-width: 100%; }
body.tt-3a figure { margin: 0; }

body.tt-3a :focus { outline: none; }
body.tt-3a :focus-visible { outline: 2px solid var(--color-accent); outline-offset: 2px; }
body.tt-3a ::selection { background: rgba(236, 48, 19, 0.3); }

.tt-grayscale { filter: grayscale(1) contrast(1.08); }
.tt-text-muted { color: rgba(32, 30, 29, 0.55); }

/* ------------------------------------------------------------ buttons --- */

.tt-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  text-decoration: none;
  font-family: var(--font-heading);
  font-weight: var(--font-heading-weight);
  font-size: 14px;
  line-height: 1.2;
  color: var(--color-text);
  background: transparent;
  border: 1px solid transparent;
  padding: var(--space-2) calc(var(--space-3) * 1.2);
  border-radius: var(--radius-md);
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.tt-btn:hover { color: var(--color-text); }
.tt-btn svg { display: block; }
.tt-btn:disabled { opacity: 0.45; cursor: not-allowed; }

.tt-btn--primary { background: var(--color-accent); color: var(--color-bg); }
.tt-btn--primary:hover { background: var(--color-accent-600); color: var(--color-bg); }
.tt-btn--primary:active { background: var(--color-accent-700); }

.tt-btn--secondary { border-color: var(--color-divider); }
.tt-btn--secondary:hover { background: rgba(32, 30, 29, 0.07); }
.tt-btn--secondary:active { background: rgba(32, 30, 29, 0.14); }

.tt-btn--ghost { color: var(--color-accent); padding-inline: var(--space-1); }
.tt-btn--ghost:hover { background: rgba(236, 48, 19, 0.1); color: var(--color-accent); }

.tt-btn--light { background: var(--color-neutral-100); color: var(--color-accent-900); border: 0; }
.tt-btn--light:hover { background: var(--color-neutral-200); color: var(--color-accent-900); }

.tt-btn--block { width: 100%; margin-top: var(--space-2); justify-content: flex-start; text-align: left; }

.tt-btn--uc { font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; }

/* -------------------------------------------------------------- forms --- */

.tt-field > label {
  display: block;
  font-size: 12px;
  margin-bottom: 5px;
  color: rgba(32, 30, 29, 0.7);
}
/* Two classes so Elementor's own input:not([type=submit]) rules lose. */
.tt-field .tt-input {
  width: 100%;
  min-height: 36px;
  padding: 6px 10px;
  font: inherit;
  font-size: 14px;
  color: var(--color-text);
  caret-color: var(--color-accent);
  background: var(--color-surface);
  border: 1px solid var(--color-divider);
  border-radius: var(--radius-md);
}
.tt-field .tt-input:hover { border-color: rgba(32, 30, 29, 0.45); }
.tt-field .tt-input:focus,
.tt-field .tt-input:focus-visible { border-color: var(--color-accent); outline-offset: 0; }
.tt-field textarea.tt-input { min-height: 90px; resize: vertical; }

/* -------------------------------------------------------------- cards --- */

.tt-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  padding: var(--space-3);
  border-radius: var(--radius-md);
  background: var(--color-surface);
}
.tt-card__kicker { font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--color-accent); }
.tt-card__title { font-family: var(--font-heading); font-weight: var(--font-heading-weight); font-size: 17px; line-height: 1.2; }
.tt-card__body { margin: 0; font-size: 13px; opacity: 0.8; flex: 1; }

.tt-elev-sm { box-shadow: var(--shadow-sm); }
.tt-elev-md { box-shadow: var(--shadow-md); }
.tt-elev-lg { box-shadow: var(--shadow-lg); }

/* --------------------------------------------------------- animations --- */

@keyframes tt-marq { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes tt-pulseNode { 0%, 100% { transform: scale(1); opacity: 0.35; } 50% { transform: scale(1.9); opacity: 1; } }
@keyframes tt-dash { to { stroke-dashoffset: -220; } }
@keyframes tt-scanLine { 0% { transform: translateY(-4px); } 100% { transform: translateY(220px); } }
@keyframes tt-barGrow { 0%, 100% { transform: scaleY(0.25); } 50% { transform: scaleY(1); } }

[data-tt-reveal] { opacity: 0; transform: translateY(14px); }
[data-tt-reveal].is-revealed {
  opacity: 1;
  transform: none;
  transition: opacity 0.6s cubic-bezier(.22,.61,.36,1), transform 0.6s cubic-bezier(.22,.61,.36,1);
}
/* Never leave content invisible for no-JS or reduced-motion visitors. */
.no-js [data-tt-reveal] { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  [data-tt-reveal] { opacity: 1 !important; transform: none !important; transition: none; }
  .tt-marquee__track,
  .tt-net svg path,
  .tt-net svg circle,
  .tt-net__scan,
  .tt-bars__bar { animation: none !important; }
}

/* ------------------------------------------------------ shared pieces --- */

.tt-shell { max-width: var(--tt-shell); margin: 0 auto; padding: 8vh 4vw; }
.tt-kicker {
  font-family: var(--font-heading);
  font-weight: var(--font-heading-weight);
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent-700);
  margin-bottom: 22px;
}
.tt-display {
  font-family: var(--font-heading);
  font-weight: var(--font-heading-weight);
  letter-spacing: -0.04em;
  line-height: 0.9;
  text-transform: uppercase;
  margin: 0;
}
.tt-rule-t { border-top: 2px solid var(--color-divider); }
.tt-rule-b { border-bottom: 2px solid var(--color-divider); }

/* ==========================================================================
   Widgets
   ========================================================================== */

/* --- 3A Hero Split ------------------------------------------------------ */

.tt-hero { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); border-bottom: 2px solid var(--color-divider); }
.tt-hero__copy {
  padding: 7vh 4vw 6vh;
  border-right: 2px solid var(--color-divider);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.tt-hero__title {
  font-family: var(--font-heading);
  font-weight: var(--font-heading-weight);
  font-size: clamp(52px, 8.5vw, 128px);
  line-height: 0.88;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  margin: 0 0 28px;
}
.tt-hero__title em { font-style: normal; color: var(--color-accent); }
.tt-hero__lead {
  font-size: clamp(16px, 1.5vw, 20px);
  line-height: 1.5;
  max-width: 46ch;
  margin: 0 0 36px;
  color: var(--color-neutral-800);
}
.tt-hero__actions { display: flex; gap: 12px; flex-wrap: wrap; }
.tt-hero__panel {
  background: var(--color-accent);
  color: var(--color-neutral-100);
  padding: 7vh 4vw 6vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 40px;
  min-height: 60vh;
}
.tt-hero__panel-title {
  font-family: var(--font-heading);
  font-weight: var(--font-heading-weight);
  font-size: clamp(28px, 3.4vw, 52px);
  line-height: 1.02;
  letter-spacing: -0.02em;
}
.tt-hero__stats { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px; }
.tt-hero__stat-num { font-family: var(--font-heading); font-weight: var(--font-heading-weight); font-size: clamp(38px, 4.4vw, 64px); line-height: 1; }
.tt-hero__stat-lbl { font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; margin-top: 8px; }

/* Hero with an animated network panel instead of stats (AI page). */
.tt-hero__panel--net { background: var(--color-accent); position: relative; overflow: hidden; min-height: 58vh; padding: 0; }
.tt-hero__panel-caption {
  position: absolute;
  left: 4vw;
  bottom: 5vh;
  color: var(--color-neutral-100);
  font-family: var(--font-heading);
  font-weight: var(--font-heading-weight);
  font-size: clamp(20px, 2.2vw, 32px);
  letter-spacing: -0.01em;
  max-width: 18ch;
}

/* --- 3A Marquee --------------------------------------------------------- */

.tt-marquee { overflow: hidden; padding: 18px 0; border-bottom: 2px solid var(--color-divider); }
.tt-marquee--tinted { background: var(--color-neutral-100); }
.tt-marquee--ruled { border-top: 2px solid var(--color-divider); }
.tt-marquee__track {
  display: flex;
  width: max-content;
  animation: tt-marq var(--tt-marq-speed, 30s) linear infinite;
  gap: var(--tt-marq-gap, 40px);
  font-family: var(--font-heading);
  font-weight: var(--font-heading-weight);
  font-size: clamp(20px, 2.4vw, 34px);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.tt-marquee--quiet .tt-marquee__track {
  font-weight: 600;
  font-size: 20px;
  letter-spacing: 0.04em;
  color: var(--color-neutral-600);
  gap: var(--tt-marq-gap, 56px);
}
.tt-marquee__sep { color: var(--color-accent); }

/* --- 3A Section head ---------------------------------------------------- */

.tt-sechead {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.tt-sechead__title {
  font-family: var(--font-heading);
  font-weight: var(--font-heading-weight);
  font-size: clamp(32px, 4.4vw, 62px);
  letter-spacing: -0.03em;
  text-transform: uppercase;
  margin: 0;
}

/* --- 3A Numbered service list ------------------------------------------- */

.tt-numlist__row {
  display: grid;
  grid-template-columns: 80px minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 24px;
  align-items: start;
  padding: 28px 0;
  border-top: 2px solid var(--color-divider);
  transition: background 0.25s ease, padding 0.25s ease;
  color: inherit;
}
.tt-numlist__row:last-child { border-bottom: 2px solid var(--color-divider); }
.tt-numlist__row:hover { background: var(--color-accent-100); padding-left: 16px; padding-right: 16px; color: inherit; }
a.tt-numlist__row { cursor: pointer; }
.tt-numlist__num { font-family: var(--font-heading); font-weight: var(--font-heading-weight); font-size: 14px; color: var(--color-accent); }
.tt-numlist__title {
  font-family: var(--font-heading);
  font-weight: var(--font-heading-weight);
  font-size: clamp(24px, 2.8vw, 38px);
  margin: 0;
  letter-spacing: -0.02em;
}
.tt-numlist__text { margin: 0; color: var(--color-neutral-700); font-size: 16px; }

@media (max-width: 640px) {
  .tt-numlist__row { grid-template-columns: 44px minmax(0, 1fr); }
  .tt-numlist__text { grid-column: 2; }
}

/* --- 3A Service detail (title + bullet column) -------------------------- */

.tt-servicedetail {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  padding: 36px 0;
  border-top: 2px solid var(--color-divider);
}
.tt-servicedetail:last-child { border-bottom: 2px solid var(--color-divider); }
.tt-servicedetail__title {
  font-family: var(--font-heading);
  font-weight: var(--font-heading-weight);
  font-size: clamp(26px, 3.2vw, 44px);
  letter-spacing: -0.025em;
  text-transform: uppercase;
  margin: 0 0 12px;
}
.tt-servicedetail__text { color: var(--color-neutral-700); margin: 0; max-width: 40ch; }
.tt-servicedetail__list { list-style: none; margin: 0; padding: 0; display: grid; align-content: start; }
.tt-servicedetail__list li { padding: 12px 0; border-bottom: 1px solid var(--color-neutral-300); font-size: 15px; }
.tt-servicedetail__list li:last-child { border-bottom: 0; }

/* --- 3A Work grid ------------------------------------------------------- */

.tt-workgrid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.tt-workgrid__figure { margin: 0; }
.tt-workgrid__media { aspect-ratio: 4 / 3; overflow: hidden; background: var(--color-neutral-200); }
.tt-workgrid__media img { width: 100%; height: 100%; object-fit: cover; }
.tt-workgrid__ph {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  font-family: var(--font-heading);
  font-weight: var(--font-heading-weight);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-neutral-600);
  border: 2px dashed var(--color-neutral-400);
}
.tt-workgrid__cap {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 12px;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-neutral-600);
}
.tt-workgrid__name { color: var(--color-text); font-weight: 600; }

/* --- 3A Client grid ----------------------------------------------------- */

.tt-clients {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  border-top: 2px solid var(--color-divider);
  border-left: 2px solid var(--color-divider);
}
.tt-clients__cell {
  padding: 46px 20px;
  border-right: 2px solid var(--color-divider);
  border-bottom: 2px solid var(--color-divider);
  font-family: var(--font-heading);
  font-weight: var(--font-heading-weight);
  font-size: 20px;
  text-transform: uppercase;
  color: var(--color-neutral-600);
  text-align: center;
  transition: color 0.2s ease, background 0.2s ease;
}
.tt-clients__cell:hover { color: var(--color-neutral-100); background: var(--color-accent); }
.tt-clients__cell img { margin: 0 auto; max-height: 48px; width: auto; }

/* --- 3A AI network ------------------------------------------------------ */

.tt-net { position: relative; aspect-ratio: 4 / 3; border: 2px solid var(--color-divider); overflow: hidden; background: var(--color-bg); }
.tt-net--bare { border: 0; aspect-ratio: auto; height: 100%; background: transparent; }
.tt-net__svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.tt-net__scan { position: absolute; left: 0; right: 0; top: 0; height: 2px; background: var(--color-accent); opacity: 0.55; animation: tt-scanLine 5s linear infinite; }
.tt-net--bare .tt-net__scan { background: var(--color-neutral-100); }
.tt-net__label {
  position: absolute;
  left: 14px;
  bottom: 12px;
  font-family: var(--font-heading);
  font-weight: var(--font-heading-weight);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-neutral-600);
}

/* --- 3A Bar chart ------------------------------------------------------- */

.tt-bars {
  border: 2px solid var(--color-divider);
  background: var(--color-bg);
  padding: 28px;
  display: flex;
  align-items: flex-end;
  gap: 10px;
  height: 240px;
}
.tt-bars__bar { flex: 1; transform-origin: bottom; animation: tt-barGrow 3s ease-in-out infinite; }

/* --- 3A Split feature (copy + slot) ------------------------------------- */

.tt-split {
  max-width: var(--tt-shell);
  margin: 0 auto;
  padding: 8vh 4vw;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 48px;
  align-items: center;
}
.tt-split__title {
  font-family: var(--font-heading);
  font-weight: var(--font-heading-weight);
  font-size: clamp(34px, 5vw, 76px);
  line-height: 0.92;
  letter-spacing: -0.035em;
  text-transform: uppercase;
  margin: 0 0 22px;
}
.tt-split__text { font-size: 18px; color: var(--color-neutral-800); max-width: 44ch; margin: 0 0 28px; }

/* --- 3A Steps (W1 / W2 / W3+) ------------------------------------------- */

.tt-steps { display: grid; gap: 14px; }
.tt-steps__row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 16px;
  align-items: baseline;
  border-top: 1px solid var(--color-neutral-300);
  padding-top: 12px;
}
.tt-steps__key { font-family: var(--font-heading); font-weight: var(--font-heading-weight); color: var(--color-accent); font-size: 14px; }

/* --- 3A CTA band -------------------------------------------------------- */

.tt-cta { background: var(--color-accent); color: var(--color-neutral-100); }
.tt-cta__inner { max-width: var(--tt-shell); margin: 0 auto; padding: 10vh 4vw; }
.tt-cta__title {
  font-family: var(--font-heading);
  font-weight: var(--font-heading-weight);
  font-size: clamp(38px, 7vw, 108px);
  line-height: 0.92;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  margin: 0 0 32px;
  max-width: 18ch;
}
.tt-cta__text { font-size: 18px; max-width: 48ch; margin: 0 0 32px; }

/* --- 3A Process / sector cards ------------------------------------------ */

.tt-cardgrid { display: grid; grid-template-columns: repeat(auto-fit, minmax(var(--tt-card-min, 240px), 1fr)); gap: 20px; }

/* --- 3A Value list ------------------------------------------------------ */

.tt-values { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; }
.tt-values__item { border-top: 2px solid var(--color-accent); padding-top: 18px; }
.tt-values__title { font-family: var(--font-heading); font-weight: var(--font-heading-weight); margin: 0 0 8px; font-size: 22px; text-transform: uppercase; }
.tt-values__text { color: var(--color-neutral-700); margin: 0; }

/* --- 3A Team grid ------------------------------------------------------- */

.tt-team { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; }
.tt-team__media { aspect-ratio: 1 / 1; overflow: hidden; background: var(--color-neutral-200); }
.tt-team__media img { width: 100%; height: 100%; object-fit: cover; }
.tt-team__name { margin-top: 14px; font-family: var(--font-heading); font-weight: 600; font-size: 18px; }
.tt-team__role { font-size: 12px; color: var(--color-accent-700); letter-spacing: 0.1em; text-transform: uppercase; margin-top: 4px; }

/* --- 3A Jobs list ------------------------------------------------------- */

.tt-jobs__row {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  padding: 24px 0;
  border-top: 2px solid var(--color-divider);
}
.tt-jobs__row:last-child { border-bottom: 2px solid var(--color-divider); }
.tt-jobs__title { font-family: var(--font-heading); font-weight: var(--font-heading-weight); margin: 0; font-size: clamp(20px, 2.4vw, 30px); text-transform: uppercase; }
.tt-jobs__meta { color: var(--color-neutral-600); font-size: 14px; }

@media (max-width: 640px) {
  .tt-jobs__row { grid-template-columns: minmax(0, 1fr); }
}

/* --- 3A Contact info ---------------------------------------------------- */

.tt-contact { display: grid; gap: 28px; }
.tt-contact__label { font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--color-neutral-600); margin-bottom: 6px; }
.tt-contact__value { font-family: var(--font-heading); font-weight: var(--font-heading-weight); font-size: 26px; }
.tt-contact__value--plain { font-family: var(--font-body); font-weight: 400; font-size: 18px; }

/* --- 3A Contact form ---------------------------------------------------- */

.tt-form { display: grid; gap: 16px; }
.tt-form__note { background: var(--color-accent); color: var(--color-neutral-100); padding: 32px; }
.tt-form__note h3 { font-family: var(--font-heading); font-weight: var(--font-heading-weight); margin: 0 0 8px; text-transform: uppercase; color: inherit; }
.tt-form__note p { margin: 0; }
.tt-form__error { color: var(--color-accent-700); font-size: 14px; margin: 0; }
.tt-form__hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* --- 3A Site header / footer -------------------------------------------- */

.tt-header { position: sticky; top: 0; z-index: 50; background: var(--color-bg); border-bottom: 2px solid var(--color-divider); }
.tt-header__inner { max-width: var(--tt-shell); margin: 0 auto; padding: 14px 4vw; display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.tt-brand { display: flex; align-items: center; gap: 12px; }
.tt-brand img { width: 34px; height: 34px; }
.tt-brand__name { font-family: var(--font-heading); font-weight: var(--font-heading-weight); letter-spacing: 0.02em; font-size: 18px; text-transform: uppercase; color: var(--color-text); }
.tt-nav { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; margin-left: auto; }
.tt-nav ul { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; list-style: none; margin: 0; padding: 0; }
.tt-nav a {
  display: inline-block;
  padding: 4px 0;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-neutral-700);
  border-bottom: 2px solid transparent;
}
.tt-nav a:hover,
.tt-nav .current-menu-item > a { color: var(--color-accent); border-bottom-color: var(--color-accent); }
.tt-nav__items { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.tt-nav__toggle { display: none; }

/* Burger below the tablet breakpoint. */
@media (max-width: 860px) {
	.tt-nav__toggle {
		display: block;
		width: 34px;
		height: 34px;
		padding: 0;
		background: none;
		border: 2px solid var(--color-divider);
		cursor: pointer;
		position: relative;
	}
	.tt-nav__toggle-bar,
	.tt-nav__toggle-bar::before,
	.tt-nav__toggle-bar::after {
		position: absolute;
		left: 8px;
		width: 14px;
		height: 2px;
		background: var(--color-text);
		content: '';
	}
	.tt-nav__toggle-bar { top: 15px; }
	.tt-nav__toggle-bar::before { left: 0; top: -5px; }
	.tt-nav__toggle-bar::after { left: 0; top: 5px; }

	/* The open panel drops below the whole bar, not just the nav column. */
	.tt-header__inner { position: relative; }
	.tt-nav__items {
		display: none;
		position: absolute;
		left: 0;
		right: 0;
		top: 100%;
		flex-direction: column;
		align-items: flex-start;
		gap: 4px;
		padding: 16px 4vw 20px;
		background: var(--color-bg);
		border-bottom: 2px solid var(--color-divider);
	}
	.tt-nav__items.is-open { display: flex; }
	.tt-nav__items ul { flex-direction: column; align-items: flex-start; gap: 4px; width: 100%; }
	.tt-nav__items a { padding: 8px 0; font-size: 15px; }
}

/* The footer menu prints bare list items. */
.tt-footer__links ul,
.tt-footer__links li { list-style: none; margin: 0; padding: 0; display: contents; }

.tt-footer { border-top: 2px solid var(--color-divider); }
.tt-footer__inner {
  max-width: var(--tt-shell);
  margin: 0 auto;
  padding: 40px 4vw;
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.tt-footer__brand { display: flex; align-items: center; gap: 12px; }
.tt-footer__brand img { width: 28px; height: 28px; }
.tt-footer__brand span { font-family: var(--font-heading); font-weight: 600; font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; }
.tt-footer__links { display: flex; gap: 22px; font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase; }
.tt-footer__copy { font-size: 12px; color: var(--color-neutral-600); }

/* ---------------------------------------------------------------- RTL --- */

body.rtl.tt-3a .tt-hero__copy { border-right: 0; border-left: 2px solid var(--color-divider); }
body.rtl.tt-3a .tt-nav { margin-left: 0; margin-right: auto; }
body.rtl.tt-3a .tt-clients { border-left: 0; border-right: 2px solid var(--color-divider); }
body.rtl.tt-3a .tt-clients__cell { border-right: 0; border-left: 2px solid var(--color-divider); }
body.rtl.tt-3a .tt-net__label { left: auto; right: 14px; }
body.rtl.tt-3a .tt-hero__panel-caption { left: auto; right: 4vw; }
body.rtl.tt-3a .tt-display,
body.rtl.tt-3a .tt-hero__title,
body.rtl.tt-3a .tt-cta__title { letter-spacing: 0; }

/* ------------------------------------------------- Elementor editor ----- */

.elementor-editor-active [data-tt-reveal] { opacity: 1; transform: none; }
