/* ==========================================================================
   Gtech IT Solution — design system
   Layered on top of Bootstrap 5: Bootstrap supplies the grid, containers and
   utility classes; everything below is the brand layer that turns it into
   this specific site.
   ========================================================================== */

/* --- Fonts (self-hosted, subset to latin + latin-ext) --------------------- */
@font-face {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url("../fonts/plus-jakarta-sans-latin.52d04440a9fa.woff2") format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url("../fonts/plus-jakarta-sans-latin-ext.5ffe46eeb00d.woff2") format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
    U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020,
    U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'JetBrains Mono';
  font-style: normal;
  font-weight: 100 800;
  font-display: swap;
  src: url("../fonts/jetbrains-mono-latin.570751c5f8b4.woff2") format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'JetBrains Mono';
  font-style: normal;
  font-weight: 100 800;
  font-display: swap;
  src: url("../fonts/jetbrains-mono-latin-ext.e6155c5cfacf.woff2") format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
    U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020,
    U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* --- Tokens --------------------------------------------------------------- */
:root {
  --ink: #141428;
  --ink-2: #2a2a3c;
  --body: #4a4a5e;
  --muted: #696969;
  --muted-2: #8a8a9c;
  --faint: #b4b4c4;
  --faint-2: #a9a9ba;

  --indigo: #2e309b;
  --violet: #7923ff;
  --violet-soft: #a78bfa;
  --violet-tint: #faf7ff;
  --green: #1e9e6a;
  --green-dark: #15764f;
  --green-tint: #e8f7f0;
  --amber: #d9a419;
  --amber-dark: #8a6100;
  --amber-tint: #fff7e6;

  --surface: #ffffff;
  --surface-2: #f6f6fb;
  --surface-3: #fbfbfe;

  --line: rgba(20, 20, 40, 0.09);
  --line-strong: rgba(20, 20, 40, 0.16);
  --line-dashed: rgba(20, 20, 40, 0.22);

  --sans: 'Plus Jakarta Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;

  --radius-sm: 8px;
  --radius: 12px;
  --radius-lg: 14px;

  --shadow-sm: 0 2px 8px rgba(20, 20, 40, 0.06);
  --shadow-md: 0 12px 30px rgba(20, 20, 40, 0.1);
  --shadow-lg: 0 18px 44px rgba(20, 20, 40, 0.14);

  --gutter: clamp(18px, 3vw, 48px);
  --section-y: clamp(56px, 7vw, 96px);
  --section-y-sm: clamp(44px, 5vw, 80px);
  --header-h: 63px;
}

/* --- Base ----------------------------------------------------------------- */
*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 20px); }

body {
  margin: 0;
  background: var(--surface);
  font-family: var(--sans);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: var(--violet); text-decoration: none; }
a:hover { color: var(--indigo); }

img { max-width: 100%; height: auto; }

::selection { background: var(--violet); color: #fff; }

:focus { outline: none; }
:focus-visible {
  outline: 2px solid var(--violet);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  padding: 12px 20px;
  background: var(--ink);
  color: #fff;
  font-weight: 700;
}
.skip-link:focus { left: 12px; top: 12px; color: #fff; }

/* --- Layout --------------------------------------------------------------- */
.gt-shell { min-height: 100vh; display: flex; flex-direction: column; }
.gt-main { flex: 1; }

.gt-wrap {
  max-width: 1440px;
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  width: 100%;
}
.gt-wrap--narrow { max-width: 1240px; }
.gt-wrap--tight { max-width: 1000px; }
.gt-wrap--prose { max-width: 900px; }

.gt-section { padding-top: var(--section-y); padding-bottom: var(--section-y); }
.gt-section--sm { padding-top: var(--section-y-sm); padding-bottom: var(--section-y-sm); }

.gt-band-light { background: var(--surface-2); border-top: 1px solid rgba(20,20,40,.08); border-bottom: 1px solid rgba(20,20,40,.08); }
.gt-band-faint { background: var(--surface-3); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.gt-band-dark { background: var(--ink); color: #fff; }
.gt-band-gradient {
  background: linear-gradient(135deg, var(--indigo) 0%, var(--violet) 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.gt-band-gradient::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 110px 100%;
}
.gt-band-gradient > * { position: relative; }

/* Auto-fit grids, matching the design's repeat(auto-fit, minmax(N, 1fr)). */
.gt-grid { display: grid; gap: clamp(16px, 2vw, 24px); }
/* Auto-fit tracks size to min-content by default; without this a single long
   unbreakable string inside a card widens the whole row past the viewport. */
.gt-grid > * { min-width: 0; }
.gt-grid--180 { grid-template-columns: repeat(auto-fit, minmax(min(180px, 100%), 1fr)); }
.gt-grid--230 { grid-template-columns: repeat(auto-fit, minmax(min(230px, 100%), 1fr)); }
.gt-grid--250 { grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr)); }
.gt-grid--280 { grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr)); }
.gt-grid--300 { grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr)); }
.gt-grid--320 { grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr)); }
.gt-grid--fill-320 { grid-template-columns: repeat(auto-fill, minmax(min(320px, 100%), 1fr)); }
.gt-grid--split { grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr)); gap: clamp(28px, 4vw, 56px); }
.gt-grid--wide-gap { gap: clamp(32px, 4vw, 64px); }
.gt-grid--tight { gap: 10px; }
.gt-items-center { align-items: center; }
.gt-items-start { align-items: start; }

/* --- Typography ----------------------------------------------------------- */
.gt-eyebrow {
  font: 500 11px var(--mono);
  letter-spacing: 0.16em;
  color: var(--violet);
  margin: 0 0 20px;
  text-transform: uppercase;
}
.gt-eyebrow--wide { letter-spacing: 0.18em; font-size: clamp(10px, 1.1vw, 11.5px); color: var(--indigo); margin-bottom: 24px; }
.gt-eyebrow--muted { color: var(--muted); letter-spacing: 0.14em; font-size: 10.5px; }
.gt-eyebrow--light { color: rgba(255,255,255,.5); }

.gt-h1 {
  margin: 0 0 20px;
  font: 800 clamp(32px, 4.4vw, 56px) / 1.06 var(--sans);
  letter-spacing: -0.04em;
  color: var(--ink);
  text-wrap: balance;
}
.gt-h1--hero { font-size: clamp(38px, 5.2vw, 62px); line-height: 1.04; margin-bottom: 22px; }
.gt-h2 {
  margin: 0 0 10px;
  font: 800 clamp(28px, 3.4vw, 44px) / 1.12 var(--sans);
  letter-spacing: -0.03em;
  color: var(--ink);
  text-wrap: balance;
}
.gt-h2--sm { font-size: clamp(24px, 3vw, 38px); line-height: 1.14; }
.gt-h2--xs { font-size: clamp(22px, 2.6vw, 32px); line-height: 1.16; }
.gt-h3 {
  margin: 0 0 10px;
  font: 700 clamp(19px, 2vw, 23px) / 1.25 var(--sans);
  letter-spacing: -0.02em;
  color: var(--ink);
}
.gt-lead {
  margin: 0;
  font: 400 clamp(15.5px, 1.7vw, 18.5px) / 1.65 var(--sans);
  color: var(--body);
}
.gt-lead--tight { font-size: clamp(15.5px, 1.6vw, 18px); }
.gt-body { font: 400 15.5px/1.6 var(--sans); color: var(--body); margin: 0; }
.gt-body--sm { font-size: 14px; line-height: 1.6; }
.gt-prose p {
  margin: 0 0 20px;
  font: 400 clamp(16px, 1.8vw, 19px) / 1.72 var(--sans);
  color: var(--ink-2);
}
.gt-prose p.gt-prose-emphasis {
  font-weight: 600;
  font-size: clamp(17px, 1.9vw, 21px);
  line-height: 1.6;
  color: var(--ink);
}
.gt-mono { font-family: var(--mono); }
.gt-accent { color: var(--violet); }
.gt-on-dark { color: #fff; }
.gt-on-dark-muted { color: rgba(255, 255, 255, 0.72); }

/* --- Buttons -------------------------------------------------------------- */
.gt-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 16px 26px;
  border: 0;
  border-radius: var(--radius-sm);
  font: 700 15.5px var(--sans);
  cursor: pointer;
  text-align: center;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease,
    color 0.2s ease, border-color 0.2s ease;
}
.gt-btn:active { transform: translateY(1px); }

.gt-btn--primary { background: var(--indigo); color: #fff; box-shadow: 0 10px 26px rgba(46,48,155,.24); }
.gt-btn--primary:hover { background: #262883; color: #fff; }
.gt-btn--dark { background: var(--ink); color: #fff; }
.gt-btn--dark:hover { background: #22223f; color: #fff; }
.gt-btn--whatsapp { background: var(--green); color: #fff; box-shadow: 0 10px 26px rgba(30,158,106,.26); }
.gt-btn--whatsapp:hover { background: #178257; color: #fff; }
.gt-btn--outline { background: transparent; border: 1px solid var(--line-strong); color: var(--ink); }
.gt-btn--outline:hover { border-color: var(--violet); color: var(--indigo); }
.gt-btn--white { background: #fff; color: var(--indigo); box-shadow: 0 14px 34px rgba(10,10,40,.24); }
.gt-btn--white:hover { background: #f3f2ff; color: var(--indigo); }
.gt-btn--lg { padding: 17px 30px; font-size: 16.5px; }
.gt-btn--sm { padding: 13px 20px; font-size: 14.5px; }
.gt-btn--block { width: 100%; }

/* Text link with the purple underline rule. */
.gt-link {
  display: inline-block;
  background: none;
  border: 0;
  padding: 0 0 2px;
  font: 700 15px var(--sans);
  color: var(--indigo);
  border-bottom: 2px solid var(--violet);
  cursor: pointer;
  transition: color 0.15s ease;
}
.gt-link:hover { color: var(--violet); }
.gt-link--ink { color: var(--ink); }
.gt-link--light { color: #fff; border-bottom-color: rgba(255,255,255,.6); }
.gt-link--light:hover { color: #fff; opacity: .85; }
.gt-link--sm { font-size: 13.5px; }

.gt-dot { width: 8px; height: 8px; border-radius: 999px; background: currentColor; flex: none; }

/* --- Cards ---------------------------------------------------------------- */
.gt-card {
  display: block;
  padding: 26px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  text-align: left;
  color: inherit;
  height: 100%;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
a.gt-card, button.gt-card { cursor: pointer; width: 100%; }
a.gt-card:hover, button.gt-card:hover {
  border-color: var(--violet);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  color: inherit;
}
.gt-card--flat { background: var(--surface-2); box-shadow: none; border-color: rgba(20,20,40,.08); }
.gt-card--dashed { border: 1px dashed var(--line-dashed); box-shadow: none; }
.gt-card--flush { padding: 0; overflow: hidden; }
.gt-card--accent { border-color: var(--violet); box-shadow: 0 8px 24px rgba(121,35,255,.12); }
.gt-card--dark {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.13);
  box-shadow: none;
  color: #fff;
  padding: 24px;
}
.gt-card-title { font: 700 17px var(--sans); color: var(--ink); margin: 0 0 8px; letter-spacing: -.015em; }
.gt-card--dark .gt-card-title { color: #fff; }
.gt-card--dark .gt-body { color: rgba(255,255,255,.68); }

.gt-card-num { font: 700 22px/1 var(--mono); color: var(--violet); margin-bottom: 18px; }
.gt-card-num--sm { font-size: 20px; margin-bottom: 16px; }

/* --- Chips & badges ------------------------------------------------------- */
.gt-chips { display: flex; flex-wrap: wrap; gap: 6px; }
.gt-chip {
  display: inline-block;
  padding: 5px 11px;
  border-radius: 999px;
  background: var(--surface-2);
  border: 1px solid rgba(20,20,40,.08);
  font: 500 11.5px var(--mono);
  color: var(--body);
}
.gt-chip--solid { background: var(--indigo); color: #fff; border-color: transparent; }
.gt-chip--plain { background: #fff; border-color: rgba(20,20,40,.1); }
.gt-chip--outline-light { background: transparent; border: 1px solid rgba(255,255,255,.2); color: rgba(255,255,255,.76); font-size: 10.5px; }

.gt-badge-pending {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--amber-tint);
  border: 1px dashed var(--amber);
  font: 600 9.5px var(--mono);
  color: var(--amber-dark);
  letter-spacing: .04em;
}
.gt-badge-live {
  display: inline-block;
  padding: 4px 9px;
  border-radius: 999px;
  background: var(--green-tint);
  font: 600 8.5px var(--mono);
  color: var(--green-dark);
}

.gt-tick { color: var(--green); font-weight: 700; flex: none; }
.gt-tick-row { display: flex; gap: 10px; font: 400 15px/1.55 var(--sans); color: var(--ink-2); }
.gt-tick-list { display: flex; flex-direction: column; gap: 10px; }

/* --- Header --------------------------------------------------------------- */
.gt-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.gt-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 14px;
  padding-bottom: 14px;
}
.gt-logo { display: flex; align-items: center; gap: 10px; }
.gt-logo img { width: 34px; height: 34px; object-fit: contain; }
.gt-logo-name { display: flex; flex-direction: column; gap: 1px; align-items: flex-start; }
.gt-logo-name b { font: 700 19px/1 var(--sans); letter-spacing: -0.02em; color: var(--ink); }
.gt-logo-name span { font: 500 7.5px/1 var(--mono); letter-spacing: 0.24em; color: var(--muted); }

.gt-nav { display: flex; flex-wrap: wrap; align-items: center; gap: 10px 22px; min-width: 0; }
.gt-nav a,
.gt-nav button {
  background: none;
  border: 0;
  padding: 0;
  font: 600 14.5px var(--sans);
  color: var(--ink);
  cursor: pointer;
  transition: color 0.15s ease;
}
.gt-nav a:hover, .gt-nav button:hover { color: var(--violet); }
.gt-nav a.is-active { color: var(--violet); }
.gt-nav-guides { display: flex; align-items: center; gap: 6px; color: var(--violet) !important; }
.gt-nav-guides .gt-dot { width: 6px; height: 6px; }

.gt-megamenu-wrap { position: relative; padding: 8px 0; }
.gt-megamenu-toggle { display: flex; align-items: center; gap: 5px; }
.gt-megamenu-toggle .caret { font-size: 9px; color: var(--muted); }
.gt-megamenu {
  position: absolute;
  top: 100%;
  left: -20px;
  width: 660px;
  padding: 10px;
  background: #fff;
  border: 1px solid rgba(20,20,40,.1);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity .15s ease, transform .15s ease, visibility .15s;
}
.gt-megamenu-wrap:hover .gt-megamenu,
.gt-megamenu-wrap:focus-within .gt-megamenu { opacity: 1; visibility: visible; transform: none; }
.gt-megamenu a { display: block; padding: 11px 13px; border-radius: var(--radius-sm); }
.gt-megamenu a:hover { background: var(--surface-2); }
.gt-megamenu a strong { display: block; font: 700 14px var(--sans); color: var(--ink); }
.gt-megamenu a small { display: block; font: 400 12.5px/1.4 var(--sans); color: var(--muted); margin-top: 2px; }

.gt-header-actions { display: flex; align-items: center; gap: 14px; }
.gt-phone-block { display: flex; flex-direction: column; gap: 1px; }
.gt-phone-block span:first-child { font: 500 8.5px var(--mono); letter-spacing: .14em; color: var(--muted-2); }
.gt-phone-block span:last-child { font: 700 14px var(--mono); color: var(--indigo); }

.gt-wa-pill {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  background: var(--green-tint);
  border: 1px solid rgba(30,158,106,.3);
  font: 700 13.5px var(--sans);
  color: var(--green-dark);
  white-space: nowrap;
}
.gt-wa-pill:hover { background: var(--green); color: #fff; }
.gt-wa-pill .gt-dot { width: 7px; height: 7px; background: var(--green); }
.gt-wa-pill:hover .gt-dot { background: #fff; }

.gt-header-cta { padding: 11px 19px; font-size: 14px; box-shadow: 0 4px 14px rgba(46,48,155,.2); white-space: nowrap; }

/* The bars stay 24px wide, but the button itself is a full 44px touch target —
   it is the only way to reach the menu on a phone. The negative margin keeps
   the bars optically aligned with the wrap edge despite the wider hit area. */
.gt-burger {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4.5px;
  width: 44px;
  height: 44px;
  margin-right: -10px;
  padding: 0;
  background: none;
  border: 0;
  cursor: pointer;
}
.gt-burger span { height: 2px; width: 24px; background: var(--ink); border-radius: 2px; transition: transform .2s ease, opacity .2s ease; }
.gt-burger[aria-expanded='true'] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.gt-burger[aria-expanded='true'] span:nth-child(2) { opacity: 0; }
.gt-burger[aria-expanded='true'] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* The drawer lives inside the sticky header, so anything past the fold cannot
   be scrolled to with the page — in landscape the last items (quote button,
   phone) were simply unreachable. It scrolls within itself instead. */
.gt-mobile-nav {
  display: none;
  border-top: 1px solid var(--line);
  background: #fff;
  padding: 10px 18px 18px;
  flex-direction: column;
  max-height: calc(100vh - var(--header-h));
  max-height: calc(100dvh - var(--header-h));
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}
.gt-mobile-nav.is-open { display: flex; }
.gt-mobile-nav a,
.gt-mobile-nav button {
  text-align: left;
  padding: 14px 4px;
  border: 0;
  border-bottom: 1px solid rgba(20,20,40,.07);
  background: none;
  font: 600 16px var(--sans);
  color: var(--ink);
  cursor: pointer;
}
.gt-mobile-nav .is-guides { color: var(--violet); }
.gt-mobile-nav .gt-btn { margin-top: 14px; border-bottom: 0; }

/* --- Hero ----------------------------------------------------------------- */
.gt-hero { position: relative; overflow: hidden; background: #fff; }
.gt-hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(46,48,155,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(46,48,155,.055) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, transparent 88%);
  mask-image: linear-gradient(to bottom, #000 0%, transparent 88%);
}
.gt-hero-glow {
  position: absolute;
  top: -260px;
  right: -180px;
  width: 720px;
  height: 720px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(121,35,255,.11) 0%, rgba(46,48,155,.05) 45%, transparent 70%);
  pointer-events: none;
}
.gt-hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(440px, 100%), 1fr));
  gap: clamp(32px, 4vw, 64px);
  align-items: center;
  /* Longhand only: this element also carries .gt-wrap, whose horizontal
     padding the `padding` shorthand would reset to zero. */
  padding-top: clamp(44px, 5vw, 80px);
  padding-bottom: clamp(30px, 3vw, 44px);
}
/* Grid tracks default to min-width:auto, so one nowrap descendant (the mock
   URL bar) would otherwise push the whole column past the viewport on phones. */
.gt-hero-inner > * { min-width: 0; }
.gt-hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; }
.gt-hero-actions .gt-btn { padding: 17px 28px; font-size: 16px; }
.gt-hero-note { margin: 14px 0 0; font: 400 13.5px/1.55 var(--sans); color: var(--muted); }
.gt-hero-note .gt-link { font-size: 13.5px; border-bottom-width: 1.5px; }

/* Browser-chrome mockup in the hero */
.gt-mock {
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid rgba(20,20,40,.12);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.gt-mock-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: var(--surface-2);
  border-bottom: 1px solid var(--line);
}
.gt-mock-dots { display: flex; gap: 5px; }
.gt-mock-dots i { width: 9px; height: 9px; border-radius: 999px; background: #e2e2ea; }
.gt-mock-url {
  flex: 1;
  min-width: 0; /* lets the URL ellipsis rather than widen its container */
  padding: 5px 12px;
  border-radius: 5px;
  background: #fff;
  border: 1px solid var(--line);
  font: 500 10px var(--mono);
  color: var(--muted-2);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.gt-mock-body { display: flex; min-height: 250px; }
.gt-mock-rail {
  flex: none;
  width: 52px;
  padding: 14px 0;
  background: var(--ink);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.gt-mock-rail img { width: 20px; height: 20px; object-fit: contain; filter: brightness(0) invert(1); }
.gt-mock-rail i { width: 22px; height: 5px; border-radius: 2px; background: rgba(255,255,255,.22); }
.gt-mock-rail i.is-on { background: var(--violet); }
.gt-mock-main { flex: 1; padding: 16px; display: flex; flex-direction: column; gap: 12px; min-width: 0; }
.gt-mock-head { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.gt-mock-head b { font: 700 13px var(--sans); color: var(--ink); }
.gt-mock-kpis { display: flex; gap: 8px; }
.gt-mock-kpi {
  flex: 1;
  padding: 11px 12px;
  border-radius: var(--radius-sm);
  background: var(--surface-2);
  border: 1px solid rgba(20,20,40,.07);
  min-width: 0;
}
.gt-mock-kpi b { display: block; font: 700 15px var(--mono); color: var(--indigo); }
.gt-mock-kpi b.is-warn { color: var(--amber); }
.gt-mock-kpi span { display: block; font: 500 8.5px var(--sans); color: var(--muted-2); margin-top: 3px; }
.gt-mock-chart { display: flex; align-items: flex-end; gap: 6px; height: 56px; padding: 0 2px; }
.gt-mock-chart i { flex: 1; border-radius: 3px 3px 0 0; background: #e2e0f2; }
.gt-mock-table {
  display: flex;
  flex-direction: column;
  gap: 1px;
  border-radius: 7px;
  overflow: hidden;
  border: 1px solid rgba(20,20,40,.08);
}
.gt-mock-row { display: flex; align-items: center; gap: 8px; padding: 9px 11px; background: #fff; }
.gt-mock-row.is-head { padding: 8px 11px; background: var(--surface-3); }
.gt-mock-row.is-head span { font: 600 8.5px var(--mono); letter-spacing: .1em; color: var(--muted-2); }
.gt-mock-row .c1 { flex: 1; font: 500 10.5px var(--sans); color: var(--ink); min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.gt-mock-row .c2 { width: 62px; font: 600 10px var(--mono); color: var(--ink); text-align: right; }
.gt-mock-row .c3 { width: 46px; font: 600 8.5px var(--sans); color: var(--green-dark); text-align: right; }
.gt-mock-row .c3.is-credit { color: var(--amber-dark); }

.gt-runs-on {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
  padding: 16px 18px;
  border-radius: var(--radius);
  background: var(--surface-2);
  border: 1px solid var(--line);
}
.gt-runs-on > .label { font: 500 9.5px var(--mono); letter-spacing: .14em; color: var(--muted-2); }
.gt-runs-on .note { flex-basis: 100%; font: 400 12px/1.5 var(--sans); color: var(--muted); }

/* Dark proof strip */
.gt-statbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(14px, 2vw, 30px);
  padding: 18px clamp(18px, 2vw, 28px);
  border-radius: var(--radius);
  background: var(--ink);
}
.gt-statbar span { font: 700 13.5px var(--mono); color: #fff; }
.gt-statbar span.is-accent { color: var(--violet); }
.gt-statbar i { width: 1px; height: 18px; background: rgba(255,255,255,.22); }

/* --- Client logos --------------------------------------------------------- */
/* Logos arrive at every aspect ratio there is — square marks, long wordmarks,
   tall crests. Normalising on height alone lines none of them up, so each one
   gets an identical cell and is contained inside it: the grid stays even, and
   a wrapped row never leaves an orphan hanging in whitespace. */
.gt-clients {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(170px, 100%), 1fr));
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.gt-clients > li { display: flex; }
.gt-client {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 64px;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: background-color .18s ease;
}
/* The cell every mark is contained in — this is what makes the row even. */
.gt-client-frame {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 64px;
}
/* Marks render in their own colours, at full strength. The usual trust-bar
   trick is to grey them out so the row reads as one texture — here the logos
   are the point, so they carry their brand colour and nothing sits on top of
   them. Nothing else is in the cell: no name, no caption. */
.gt-client img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform .18s ease;
}
a.gt-client:hover img,
a.gt-client:focus-visible img { transform: scale(1.06); }

/* No file yet: the name set as a wordmark, sized to the same cell. */
.gt-client-wordmark {
  font: 700 15px var(--sans);
  letter-spacing: -.02em;
  line-height: 1.2;
  text-align: center;
  color: var(--muted-2);
  transition: color .18s ease;
}
a.gt-client:hover .gt-client-wordmark { color: var(--ink); }

/* Home band ---------------------------------------------------------------- */
.gt-clients-band {
  padding-top: 22px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.gt-clients-lede {
  margin: 0 0 16px;
  font: 600 11px var(--mono);
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--muted-2);
}
.gt-clients-more {
  display: inline-block;
  margin-top: 16px;
  font: 600 13.5px var(--sans);
  color: var(--violet);
  text-decoration: none;
}
.gt-clients-more:hover { text-decoration: underline; }

/* Clients page ------------------------------------------------------------- */
/* Tiles here, not a bare strip: the logos are the content of the page rather
   than a trust bar under a hero, so they get the site's card treatment. */
.gt-clients--page {
  grid-template-columns: repeat(auto-fill, minmax(min(230px, 100%), 1fr));
  gap: clamp(14px, 1.6vw, 20px);
}
.gt-clients--page .gt-client {
  padding: 34px 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.gt-clients--page .gt-client-frame { height: 76px; }
.gt-clients--page .gt-client-wordmark { font-size: 17px; color: var(--ink); }
a.gt-clients--page-item:hover,
.gt-clients--page a.gt-client:hover {
  border-color: var(--violet);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  background: var(--surface);
}

/* --- Marquee -------------------------------------------------------------- */
.gt-marquee { display: flex; width: max-content; animation: gt-tick 40s linear infinite; padding: 14px 0 20px; }
.gt-marquee-track {
  display: flex;
  flex: none;
  width: max-content;
  align-items: center;
  gap: 44px;
  padding-right: 44px;
  font: 600 15px var(--sans);
  color: var(--muted-2);
  white-space: nowrap;
}
.gt-marquee-track b { color: var(--violet); font-weight: 400; }
@keyframes gt-tick { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* --- Google profile bar --------------------------------------------------- */
.gt-gbp {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(14px, 2vw, 32px);
  padding-top: 18px;
  padding-bottom: 18px;
}
.gt-gbp-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: var(--surface-2);
  border: 1px solid rgba(20,20,40,.1);
  font: 700 15px var(--sans);
  color: var(--indigo);
  flex: none;
}
.gt-stars { font: 400 15px var(--sans); color: #d9d9e2; letter-spacing: 1px; }
.gt-divider-v { width: 1px; height: 24px; background: rgba(20,20,40,.12); }

/* --- Section heads -------------------------------------------------------- */
.gt-section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 40px;
}
.gt-rule-head { display: flex; align-items: center; gap: 14px; margin-bottom: 22px; }
.gt-rule-head h2 { margin: 0; font: 800 clamp(20px, 2.3vw, 27px)/1.2 var(--sans); letter-spacing: -.025em; }
.gt-rule-head i { flex: 1; height: 1px; background: rgba(20,20,40,.12); }

/* --- Featured case card --------------------------------------------------- */
.gt-proof-card { display: flex; flex-direction: column; padding: 0; overflow: hidden; border-radius: var(--radius-lg); }
.gt-proof-top { position: relative; padding: 26px 26px 24px; background: var(--ink); overflow: hidden; }
.gt-proof-top::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 38px 38px;
}
.gt-proof-top::after {
  content: '';
  position: absolute;
  top: -70px;
  right: -60px;
  width: 220px;
  height: 220px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(121,35,255,.42) 0%, transparent 68%);
}
.gt-proof-top > * { position: relative; }
.gt-proof-industry { display: block; font: 500 10.5px var(--mono); letter-spacing: .16em; color: var(--violet-soft); margin-bottom: 20px; }
.gt-proof-headline { display: block; font: 800 clamp(22px, 2.6vw, 30px)/1.15 var(--sans); letter-spacing: -.03em; color: #fff; }
.gt-proof-second {
  display: inline-flex;
  align-items: baseline;
  gap: 7px;
  margin-top: 18px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.2);
}
.gt-proof-second b { font: 700 12.5px var(--mono); color: #fff; }
.gt-proof-second span { font: 500 11.5px var(--sans); color: rgba(255,255,255,.6); }
.gt-proof-body { display: flex; flex-direction: column; flex: 1; padding: 24px 26px 22px; }
.gt-proof-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid rgba(20,20,40,.08);
}
.gt-shot-hint { font: 500 9.5px var(--mono); letter-spacing: .1em; color: var(--faint); }

/* --- Case study ----------------------------------------------------------- */
/* The detail page for one delivered project. Its own block rather than reused
   service-page classes: a case study leads with a screenshot and a row of
   numbers, and neither of those appears anywhere else. */
.gt-case-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(0, .94fr);
  gap: clamp(28px, 4vw, 60px);
  align-items: start;
}

/* Category, screenshot count, services covered — the facts a visitor scans for
   before reading a word of the copy. */
.gt-case-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px clamp(20px, 3vw, 38px);
  margin: 0 0 28px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.gt-case-fact { display: flex; flex-direction: column; gap: 5px; }
.gt-case-fact .k { font: 500 9.5px var(--mono); letter-spacing: .14em; text-transform: uppercase; color: var(--muted-2); }
.gt-case-fact .v { font: 700 14px var(--sans); color: var(--ink); }

/* The hero screenshot, lifted off the page by a tinted panel behind it. The
   panel is decorative and offset, so it is a pseudo-element rather than markup. */
.gt-case-shot {
  position: relative;
  isolation: isolate;
  display: flex;
  justify-content: center;
  margin: 0;
}
.gt-case-shot::after {
  content: '';
  position: absolute;
  z-index: -1;
  inset: 20px -20px -20px 20px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--indigo), var(--violet));
  opacity: .12;
}
/* Uploads are whatever shape the screenshot was. A tall portrait capture left
   unbounded runs to twice the height of the copy beside it, so it is capped and
   centred instead — the frame follows the image rather than the column. */
.gt-case-shot img {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: min(540px, 70vh);
  height: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow-lg);
}

/* Proof numbers. Hairline grid: one background showing through 1px gaps, so the
   dividers stay even however many stats there are and however they wrap. */
.gt-case-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(210px, 100%), 1fr));
  border-radius: var(--radius);
  overflow: hidden;
  /* Drawn inside the box so the cell borders below land exactly on top of it. */
  outline: 1px solid rgba(255,255,255,.14);
  outline-offset: -1px;
}
/* Every cell carries its own top and left rule. The first row's and first
   column's coincide with the outline, so they are invisible, and a wrapped row
   gets its divider without anything having to know where the row starts. */
.gt-case-stat {
  padding: clamp(20px, 2.4vw, 30px);
  background: var(--ink);
  border-top: 1px solid rgba(255,255,255,.14);
  border-left: 1px solid rgba(255,255,255,.14);
}
.gt-case-stat b {
  display: block;
  font: 800 clamp(26px, 3.2vw, 40px)/1.02 var(--sans);
  letter-spacing: -.03em;
  color: #fff;
}
.gt-case-stat span {
  display: block;
  margin-top: 10px;
  font: 500 10.5px var(--mono);
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
}
/* A line with no dash is a whole sentence, not a number — set as a sentence. */
.gt-case-stat--sentence b { font: 700 clamp(17px, 1.9vw, 21px)/1.35 var(--sans); letter-spacing: -.015em; }
/* Several stats divide the band into columns; one stretches to fill it, and a
   single left-aligned line in a full-width box reads as an unfinished row.
   Centred, the same box reads as the one claim the project is making. */
.gt-case-stat:only-child {
  padding: clamp(26px, 3.2vw, 40px) clamp(20px, 3vw, 40px);
  text-align: center;
}

/* Screenshot gallery. Uploads arrive at every aspect ratio — tall phone
   captures next to wide dashboards — so each one gets an identical cell and is
   contained inside it, the same way client logos are. The cell reserves its own
   height, so nothing shifts as the images load. */
.gt-shots {
  display: grid;
  /* auto-fit, so three screenshots fill the row instead of leaving a dead
     fourth column — paired with the cap below, which is what stops a project
     with a single screenshot from blowing it up to the full page width. */
  grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
  gap: clamp(12px, 1.6vw, 20px);
}
.gt-shot {
  position: relative;
  display: block;
  max-width: 420px;
  margin: 0;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--surface-2);
  overflow: hidden;
}
.gt-shot img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 12px;
  object-fit: contain;
  transition: transform .25s ease;
}
a.gt-shot::after {
  content: 'View full size';
  position: absolute;
  left: 12px;
  bottom: 12px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(20,20,40,.86);
  color: #fff;
  font: 600 11.5px var(--sans);
  opacity: 0;
  transform: translateY(5px);
  transition: opacity .18s ease, transform .18s ease;
}
a.gt-shot:hover { border-color: var(--violet); }
a.gt-shot:hover img, a.gt-shot:focus-visible img { transform: scale(1.03); }
a.gt-shot:hover::after, a.gt-shot:focus-visible::after { opacity: 1; transform: none; }

/* --- Tech tiles ----------------------------------------------------------- */
.gt-tech-teaser { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(104px, 100%), 1fr)); gap: 12px; }
.gt-tech-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 11px;
  height: 104px;
  padding: 12px 8px;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,.22);
  transition: transform .2s ease, box-shadow .2s ease;
}
.gt-tech-tile:hover { transform: translateY(-3px); box-shadow: 0 12px 26px rgba(121,35,255,.32); }
.gt-tech-logo {
  display: block;
  width: 72px;
  height: 30px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  filter: grayscale(1);
  opacity: .72;
  transition: filter .2s ease, opacity .2s ease;
}
.gt-tech-tile:hover .gt-tech-logo { filter: none; opacity: 1; }
.gt-tech-tile .name { font: 500 10.5px var(--mono); letter-spacing: .04em; color: var(--muted); text-align: center; }
.gt-tech-tile .abbr { font: 700 15px var(--sans); letter-spacing: -.02em; color: var(--indigo); text-align: center; }

.gt-tech-item { display: flex; gap: 16px; padding: 20px; border-radius: var(--radius); background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-sm); transition: border-color .2s ease, box-shadow .2s ease; height: 100%; }
.gt-tech-item:hover { border-color: var(--violet); box-shadow: 0 10px 26px rgba(20,20,40,.09); }
.gt-tech-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
  width: 52px;
  height: 52px;
  border-radius: 10px;
  background: var(--surface-2);
  border: 1px solid rgba(20,20,40,.07);
}
.gt-tech-icon .gt-tech-logo { width: 34px; height: 30px; opacity: 1; }
.gt-tech-item:hover .gt-tech-logo { filter: none; }
.gt-tech-icon .abbr { font: 700 15px var(--mono); color: var(--indigo); }

/* --- Process -------------------------------------------------------------- */
.gt-process { display: flex; flex-wrap: wrap; gap: 14px; }
.gt-process-card {
  flex: 1 1 210px;
  max-width: 340px;
  padding: 26px 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 11px;
}
.gt-process-card.is-optional { background: var(--violet-tint); border-color: var(--violet); }
.gt-process-head { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.gt-process-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: var(--indigo);
  font: 700 13px var(--mono);
  color: #fff;
  flex: none;
}
.is-optional .gt-process-num { background: var(--violet); }
.gt-process-head i { flex: 1; height: 1px; background: rgba(20,20,40,.12); }
.is-optional .gt-process-head i { background: rgba(121,35,255,.28); }
.gt-process-tag {
  padding: 4px 9px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--violet);
  font: 700 9px var(--mono);
  letter-spacing: .12em;
  color: var(--violet);
}
.gt-process-card h3 { margin: 0 0 8px; font: 700 16.5px/1.3 var(--sans); letter-spacing: -.015em; color: var(--ink); }
.gt-process-card p { margin: 0; font: 400 14px/1.55 var(--sans); color: var(--body); }

/* --- Hairline list (steps, hard problems, timeline) ----------------------- */
.gt-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
  background: rgba(20,20,40,.1);
  border: 1px solid rgba(20,20,40,.1);
  border-radius: var(--radius);
  overflow: hidden;
}
.gt-list-row {
  display: flex;
  gap: clamp(14px, 2vw, 26px);
  align-items: baseline;
  padding: 22px clamp(18px, 2.5vw, 30px);
  background: #fff;
}
.gt-list-row .num { font: 700 14px var(--mono); color: var(--violet); min-width: 26px; flex: none; }
.gt-list-row .text { font: 500 clamp(15px, 1.6vw, 17px)/1.6 var(--sans); color: var(--ink); }
.gt-list-row--grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(220px, 100%), 1fr));
  gap: clamp(12px, 2vw, 28px);
}
.gt-kv-row { display: flex; justify-content: space-between; gap: 16px; padding: 16px 20px; background: #fff; }
.gt-kv-row .k { font: 500 13.5px var(--sans); color: var(--muted); }
.gt-kv-row .v { font: 600 13.5px var(--sans); color: var(--ink); text-align: right; }
.gt-kv-row .v.is-pending { font-family: var(--mono); font-size: 12.5px; color: var(--amber-dark); }

/* --- Founder ------------------------------------------------------------- */
.gt-portrait { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid rgba(20,20,40,.1); background: #fff; }
.gt-portrait img { display: block; width: 100%; height: auto; }
.gt-quote p { margin: 0 0 18px; font: 400 clamp(16px, 1.7vw, 18.5px)/1.68 var(--sans); color: var(--ink-2); }
.gt-avatar { border-radius: 999px; object-fit: cover; object-position: top; flex: none; }

/* --- Team card ------------------------------------------------------------
   One card, used on /team/. Every card is the same shape whatever the bio
   length: the head is a fixed row, the bio is clamped to three lines, and the
   social footer is pushed to the bottom — so names, roles, chips and links line up across the
   whole grid instead of drifting with the copy. */
/* Grid rows are sized independently by default, so a role that wraps in the
   first row leaves that row taller than the next one. 1fr makes every row match
   the tallest, which with height:100% below makes every card identical. */
.gt-team-grid { grid-auto-rows: 1fr; }
.gt-team-card { display: flex; flex-direction: column; height: 100%; padding: 24px; }
.gt-team-card--compact { padding: 20px; }

.gt-team-head { display: flex; align-items: center; gap: 15px; }
.gt-team-card .gt-team-head { margin-bottom: 16px; }
.gt-team-card--compact .gt-team-head { margin-bottom: 14px; }

.gt-team-avatar { width: 68px; height: 68px; border-radius: 999px; object-fit: cover; object-position: top; flex: none; }
.gt-team-card--compact .gt-team-avatar { width: 56px; height: 56px; }
/* No photo yet: initials, never a stock portrait. */
.gt-team-avatar--initials {
  display: flex; align-items: center; justify-content: center;
  background: var(--surface-2); border: 1px solid var(--line);
  font: 700 20px var(--mono); color: var(--violet);
}
.gt-team-card--compact .gt-team-avatar--initials { font-size: 17px; }

/* The name always occupies two lines' worth of space, whether or not it needs
   them. That is what keeps the role, and everything below it, on the same line
   across a row when one person's name wraps and their neighbour's does not —
   without truncating anybody's name to achieve it. */
.gt-team-id { min-width: 0; }
.gt-team-name {
  font: 700 17px/1.25 var(--sans); letter-spacing: -.015em; color: var(--ink);
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
  min-height: 2.5em; /* 2 lines at the 1.25 line-height above */
}
.gt-team-card--compact .gt-team-name { font-size: 15px; }
.gt-team-role { display: block; margin-top: 4px; font: 500 12px var(--mono); color: var(--indigo); }

.gt-team-bio {
  margin: 0 0 14px; font: 400 14px/1.6 var(--sans); color: var(--body);
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical;
  overflow: hidden; min-height: calc(3 * 1.6 * 14px);
}
.gt-team-chips { margin-bottom: 16px; }

.gt-team-foot {
  margin-top: auto; padding-top: 14px; border-top: 1px solid var(--line);
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  font: 600 11.5px var(--mono); letter-spacing: .04em;
}
.gt-team-foot a { color: var(--indigo); text-decoration: none; }
.gt-team-foot a:hover { color: var(--violet); text-decoration: underline; }

/* --- Lead magnet cover mockup -------------------------------------------- */
.gt-cover-stack { position: relative; width: min(360px, 100%); }
.gt-cover-stack::before,
.gt-cover-stack::after {
  content: '';
  position: absolute;
  border-radius: 12px;
}
.gt-cover-stack::before { top: 16px; left: 16px; right: -16px; bottom: -16px; background: rgba(46,48,155,.1); }
.gt-cover-stack::after { top: 8px; left: 8px; right: -8px; bottom: -8px; background: rgba(46,48,155,.18); }
.gt-cover {
  position: relative;
  border-radius: 12px;
  background: var(--ink);
  overflow: hidden;
  box-shadow: 0 26px 60px rgba(20,20,40,.32);
  z-index: 1;
}
.gt-cover::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 34px 34px;
}
.gt-cover::after {
  content: '';
  position: absolute;
  top: -70px;
  right: -56px;
  width: 230px;
  height: 230px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(121,35,255,.48) 0%, transparent 70%);
}
.gt-cover-inner {
  position: relative;
  padding: 34px 32px 38px;
  aspect-ratio: 1 / 1.29;
  display: flex;
  flex-direction: column;
}
.gt-cover-brand { display: flex; align-items: center; gap: 10px; margin-bottom: auto; }
.gt-cover-brand img { width: 28px; height: 28px; object-fit: contain; filter: brightness(0) invert(1); }
.gt-cover-brand span { font: 700 7.5px var(--mono); letter-spacing: .24em; color: rgba(255,255,255,.62); }
.gt-cover-rule { width: 38px; height: 3px; background: var(--violet); margin-bottom: 20px; }
/* Holds the guide's own title, so it is sized to wrap to three or four lines
   rather than to a short punchy phrase typed just for the cover. */
.gt-cover-title { font: 800 clamp(23px, 2.8vw, 30px)/1.1 var(--sans); letter-spacing: -.038em; color: #fff; margin-bottom: 22px; }
.gt-cover-spec { font: 500 10px var(--mono); letter-spacing: .16em; color: var(--violet-soft); }

.gt-magnet-card-top {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 26px;
  background: var(--ink);
  overflow: hidden;
  min-height: 190px;
}
.gt-magnet-card-top::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 32px 32px;
}
.gt-magnet-card-top::after {
  content: '';
  position: absolute;
  top: -62px;
  right: -52px;
  width: 200px;
  height: 200px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(121,35,255,.42) 0%, transparent 70%);
}
.gt-magnet-card-top > * { position: relative; }
.gt-magnet-spine {
  flex: none;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 56px;
  height: 72px;
  padding: 9px 8px;
  border-radius: 6px;
  background: #e9e8f0;
  border: 1px solid rgba(20,20,40,.1);
}
.gt-magnet-spine span { font: 700 7px var(--mono); letter-spacing: .1em; color: var(--muted-2); }
.gt-magnet-spine i { display: block; width: 18px; height: 2px; background: #c4b5fd; }

/* --- Placeholders --------------------------------------------------------- */
.gt-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--surface-2), #eceaf7);
  text-align: center;
  padding: 24px;
  font: 500 11px/1.8 var(--mono);
  letter-spacing: .12em;
  color: var(--muted-2);
}
.gt-placeholder small { font-size: 10px; display: block; }
.gt-placeholder--card { height: 150px; border-bottom: 1px solid rgba(20,20,40,.08); font-size: 10.5px; line-height: 1.7; }
.gt-placeholder--tall { min-height: 280px; border-radius: var(--radius); border: 1px solid var(--line); }
.gt-placeholder--dashed { background: #fff; border: 1px dashed var(--line-dashed); border-radius: var(--radius); min-height: 240px; }
.gt-placeholder--diagram { height: 240px; border-bottom: 1px solid rgba(20,20,40,.08); }
.gt-placeholder--blog { min-height: 260px; background: linear-gradient(135deg, var(--indigo), var(--violet)); color: rgba(255,255,255,.72); padding: 30px; }

/* --- Forms ---------------------------------------------------------------- */
.gt-form { display: flex; flex-direction: column; gap: 16px; }
.gt-field { display: flex; flex-direction: column; gap: 7px; }
.gt-field > label,
.gt-field-label { font: 600 13px var(--sans); color: var(--ink); }
.gt-input {
  width: 100%;
  padding: 13px 15px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line-strong);
  font-family: var(--sans);
  font-size: 15px;
  color: var(--ink);
  background: #fff;
  transition: border-color .15s ease, box-shadow .15s ease;
}
textarea.gt-input { resize: vertical; min-height: 110px; }
.gt-input:focus { border-color: var(--violet); box-shadow: 0 0 0 3px rgba(121,35,255,.13); outline: none; }
.gt-input::placeholder { color: var(--faint); }
.gt-input.is-invalid { border-color: #c62828; }
.gt-form-note { font: 400 12.5px/1.5 var(--sans); color: var(--muted-2); }
.gt-form-error { font: 500 12.5px/1.5 var(--sans); color: #c62828; }
.gt-honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.gt-card--form { padding: clamp(22px, 3vw, 30px); border-radius: var(--radius-lg); }

.gt-inline-form { display: flex; flex-wrap: wrap; gap: 10px; }
.gt-inline-form .gt-input { flex: 1; min-width: 220px; }

/* Option buttons in the quote wizard */
.gt-option {
  display: flex;
  align-items: center;
  gap: 11px;
  width: 100%;
  text-align: left;
  padding: 16px 18px;
  border-radius: 10px;
  border: 1px solid rgba(20,20,40,.14);
  background: #fff;
  cursor: pointer;
  transition: border-color .15s ease, background .15s ease;
}
.gt-option:hover { border-color: var(--violet); background: var(--violet-tint); }
.gt-option input { position: absolute; opacity: 0; pointer-events: none; }
.gt-option .box,
.gt-option .radio {
  flex: none;
  width: 18px;
  height: 18px;
  border: 1.5px solid rgba(20,20,40,.24);
  display: flex;
  align-items: center;
  justify-content: center;
  font: 700 11px var(--sans);
  color: #fff;
}
.gt-option .box { border-radius: 5px; }
.gt-option .radio { border-radius: 999px; }
.gt-option input:checked ~ .box { background: var(--violet); border-color: var(--violet); }
.gt-option input:checked ~ .box::after { content: '✓'; }
.gt-option input:checked ~ .radio::after {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--violet);
}
.gt-option input:checked ~ .label { color: var(--ink); }
.gt-option:has(input:checked) { border-color: var(--violet); background: var(--violet-tint); }
.gt-option .label { font: 600 14.5px var(--sans); color: var(--ink); }
.gt-option .label-mono { font-family: var(--mono); }

.gt-progress { height: 5px; border-radius: 999px; background: rgba(20,20,40,.1); overflow: hidden; }
.gt-progress i { display: block; height: 100%; background: linear-gradient(90deg, var(--indigo), var(--violet)); border-radius: 999px; transition: width .3s ease; }

.gt-toggle {
  display: inline-flex;
  gap: 2px;
  padding: 3px;
  border-radius: 9px;
  background: var(--surface-2);
  border: 1px solid rgba(20,20,40,.1);
}
.gt-toggle button {
  padding: 9px 16px;
  border: 0;
  border-radius: 7px;
  background: none;
  font: 600 13px var(--sans);
  color: var(--ink);
  cursor: pointer;
}
.gt-toggle button.is-on { background: #fff; box-shadow: var(--shadow-sm); }
.gt-toggle button.is-on::before { content: '●'; color: var(--violet); margin-right: 6px; }

/* --- Filter chips --------------------------------------------------------- */
.gt-filters {
  position: sticky;
  top: var(--header-h);
  z-index: 40;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.gt-filter-row { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; }
.gt-filter-row > .label { font: 500 10px var(--mono); letter-spacing: .14em; color: var(--muted); min-width: 66px; }
.gt-filter {
  padding: 7px 13px;
  border-radius: 999px;
  border: 1px solid rgba(20,20,40,.14);
  background: #fff;
  font: 600 12.5px var(--sans);
  color: var(--body);
  transition: border-color .15s ease, color .15s ease;
  white-space: nowrap;
}
.gt-filter:hover { border-color: var(--violet); color: var(--indigo); }
.gt-filter.is-on { border-color: var(--violet); color: var(--indigo); }
.gt-filter.is-on::before { content: '●'; color: var(--violet); margin-right: 5px; }

/* --- Breadcrumbs ---------------------------------------------------------- */
.gt-crumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font: 500 12px var(--mono);
  color: var(--muted);
  margin-bottom: 26px;
  padding: 0;
  list-style: none;
}
.gt-crumbs a { color: var(--muted); text-transform: uppercase; }
.gt-crumbs a:hover { color: var(--violet); }
.gt-crumbs li[aria-current] { color: var(--indigo); }

/* --- Article -------------------------------------------------------------- */
.gt-article { max-width: 760px; }
.gt-article p { margin: 0 0 22px; font: 400 clamp(16.5px, 1.8vw, 19px)/1.75 var(--sans); color: var(--ink-2); }
.gt-article h2 { margin: 36px 0 14px; font: 800 clamp(21px, 2.4vw, 28px)/1.2 var(--sans); letter-spacing: -.028em; color: var(--ink); }

/* Rich-text post body. CKEditor writes plain semantic HTML, so the old block
   classes live on as element rules: blockquote is what the callout was, pre is
   what the code panel was. Scoped to .gt-article-body so nothing here leaks
   into the hand-written article markup around it. */
.gt-article-body h3 { margin: 30px 0 12px; font: 700 clamp(18px, 2vw, 21px)/1.25 var(--sans); letter-spacing: -.02em; color: var(--ink); }
.gt-article-body ul,
.gt-article-body ol { margin: 0 0 22px; padding-left: 22px; }
.gt-article-body li { margin-bottom: 9px; font: 400 clamp(16.5px, 1.8vw, 19px)/1.75 var(--sans); color: var(--ink-2); }
.gt-article-body li:last-child { margin-bottom: 0; }
.gt-article-body a { color: var(--violet); text-decoration: underline; text-underline-offset: 3px; }
.gt-article-body strong { color: var(--ink); font-weight: 700; }
.gt-article-body blockquote {
  padding: 22px 24px;
  border-radius: var(--radius);
  background: var(--surface-2);
  border-left: 3px solid var(--violet);
  margin: 0 0 28px;
}
.gt-article-body blockquote p { margin: 0 0 10px; font: 500 clamp(16px, 1.7vw, 18px)/1.6 var(--sans); color: var(--ink); }
.gt-article-body blockquote p:last-child { margin-bottom: 0; }
.gt-article-body pre {
  padding: 20px 22px;
  border-radius: var(--radius);
  background: var(--ink);
  margin: 0 0 28px;
  overflow: auto;
  font: 400 13px/1.75 var(--mono);
  color: #c4b5fd;
  white-space: pre-wrap;
}
.gt-article-body pre code { font: inherit; color: inherit; background: none; padding: 0; }
.gt-article-body p code { padding: 2px 6px; border-radius: 5px; background: var(--surface-2); font: 500 .88em var(--mono); color: var(--indigo); }
.gt-article-body hr { height: 1px; border: 0; background: var(--line); margin: 34px 0; }
.gt-article-body figure { margin: 0 0 28px; }
.gt-article-body img { max-width: 100%; height: auto; border-radius: var(--radius); }
.gt-article-body figcaption { margin-top: 10px; font: 500 13px var(--sans); color: var(--muted-2); }
/* A table wider than the column scrolls inside itself rather than pushing the
   whole article sideways on a phone. */
.gt-article-body .table-wrap,
.gt-article-body figure.table { overflow-x: auto; margin: 0 0 28px; }
.gt-article-body table { border-collapse: collapse; width: 100%; min-width: 420px; }
.gt-article-body th,
.gt-article-body td { padding: 10px 14px; border: 1px solid var(--line); text-align: left; font: 400 15px/1.55 var(--sans); color: var(--ink-2); }
.gt-article-body th { font-weight: 700; color: var(--ink); background: var(--surface-2); }

.gt-toc { position: sticky; top: calc(var(--header-h) + 25px); max-width: 280px; }
.gt-toc-list { display: flex; flex-direction: column; gap: 11px; padding-left: 14px; border-left: 2px solid rgba(20,20,40,.1); }
.gt-toc-list a { font: 500 13.5px/1.45 var(--sans); color: var(--muted); }
.gt-toc-list a:hover { color: var(--violet); }

/* --- Footer --------------------------------------------------------------- */
.gt-footer { background: var(--ink); color: #fff; }
.gt-footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(210px, 100%), 1fr));
  gap: clamp(28px, 3vw, 44px);
  padding-top: clamp(44px, 5vw, 72px);
  padding-bottom: 28px;
}
.gt-footer h2 { font: 500 10.5px var(--mono); letter-spacing: .16em; color: rgba(255,255,255,.5); margin: 0 0 16px; }
.gt-footer-links { display: flex; flex-direction: column; gap: 11px; }
.gt-footer-links a { font: 500 14px var(--sans); color: rgba(255,255,255,.8); }
.gt-footer-links a:hover { color: #fff; }
.gt-footer-contact { display: flex; flex-direction: column; gap: 11px; font: 400 14px/1.5 var(--sans); color: rgba(255,255,255,.8); }
.gt-footer-contact a { color: rgba(255,255,255,.8); }
.gt-footer-contact a.is-phone { color: #fff; font-family: var(--mono); font-size: 13.5px; }
.gt-footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.gt-footer-logo img { width: 32px; height: 32px; object-fit: contain; filter: brightness(0) invert(1); }
.gt-footer-logo b { font: 700 18px/1 var(--sans); color: #fff; }
.gt-footer-logo span { font: 500 7px/1 var(--mono); letter-spacing: .24em; color: rgba(255,255,255,.6); }
.gt-footer-input {
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.06);
  color: #fff;
  font-size: 14px;
  font-family: var(--sans);
  width: 100%;
}
.gt-footer-input::placeholder { color: rgba(255,255,255,.45); }
.gt-footer-input:focus { border-color: var(--violet); outline: none; }
.gt-footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-top: 20px;
  padding-bottom: 20px;
  border-top: 1px solid rgba(255,255,255,.12);
  font: 400 13px var(--sans);
  color: rgba(255,255,255,.55);
}
.gt-footer-bottom a { color: rgba(255,255,255,.55); }
.gt-footer-bottom a:hover { color: #fff; }

/* --- Floating contact ----------------------------------------------------- */
.gt-float {
  position: fixed;
  right: clamp(14px, 2vw, 26px);
  bottom: clamp(14px, 2vw, 26px);
  z-index: 70;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}
.gt-float-phone {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 12px 18px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(20,20,40,.12);
  color: var(--ink);
  font: 700 14px var(--mono);
  box-shadow: 0 8px 22px rgba(20,20,40,.16);
}
.gt-float-wa {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 22px;
  border-radius: 999px;
  background: var(--green);
  color: #fff;
  font: 700 15px var(--sans);
  box-shadow: 0 12px 30px rgba(30,158,106,.42);
}
.gt-float-wa:hover { background: #178257; color: #fff; }
.gt-float-wa .gt-dot { width: 9px; height: 9px; background: #fff; }

/* --- Booking modal -------------------------------------------------------- */
.gt-modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(12,12,26,.62);
  backdrop-filter: blur(4px);
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(16px, 4vh, 60px) 16px;
  overflow: auto;
}
.gt-modal.is-open { display: flex; }
.gt-modal-panel {
  width: 100%;
  max-width: 920px;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 40px 90px rgba(10,10,30,.4);
  animation: gt-rise .28s ease-out;
}
.gt-modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 22px;
  border-bottom: 1px solid var(--line);
  background: var(--surface-3);
}
.gt-modal-head span { font: 500 10.5px var(--mono); letter-spacing: .16em; color: var(--muted); }
.gt-modal-close { font: 400 22px/1 var(--sans); color: var(--muted); padding: 2px 8px; background: none; border: 0; cursor: pointer; }
.gt-modal-body { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr)); }
.gt-modal-aside { padding: clamp(22px, 3vw, 34px); background: var(--surface-2); border-right: 1px solid rgba(20,20,40,.08); }
.gt-modal-main { padding: clamp(22px, 3vw, 34px); }

.gt-slots { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(78px, 100%), 1fr)); gap: 8px; }
.gt-slot {
  padding: 13px 6px;
  border-radius: 9px;
  border: 1px solid rgba(20,20,40,.14);
  background: #fff;
  text-align: center;
  cursor: pointer;
  transition: border-color .15s ease, background .15s ease;
}
.gt-slot:hover, .gt-slot.is-on { border-color: var(--violet); background: var(--violet-tint); }
.gt-slot span { display: block; font: 500 10.5px var(--mono); color: var(--muted); }
.gt-slot b { display: block; font: 700 15px var(--sans); color: var(--ink); margin-top: 4px; }

/* --- Success / alert ------------------------------------------------------ */
.gt-success {
  padding: 24px;
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid var(--green);
  animation: gt-rise .26s ease-out;
}
.gt-success-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: var(--green-tint);
  font: 700 17px var(--sans);
  color: var(--green);
  flex: none;
}
.gt-alert { padding: 14px 18px; border-radius: var(--radius-sm); font: 500 14px var(--sans); margin-bottom: 16px; }
.gt-alert--error { background: #fdecea; color: #a4241c; border: 1px solid #f3c2be; }
.gt-alert--success { background: var(--green-tint); color: var(--green-dark); border: 1px solid rgba(30,158,106,.3); }

@keyframes gt-rise { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }

/* --- FAQ accordion -------------------------------------------------------- */
.gt-faq { border-radius: 11px; background: #fff; border: 1px solid var(--line); overflow: hidden; }
.gt-faq + .gt-faq { margin-top: 10px; }
.gt-faq summary {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 19px 22px;
  cursor: pointer;
  list-style: none;
  font: 700 clamp(15px, 1.6vw, 17px)/1.45 var(--sans);
  color: var(--ink);
}
.gt-faq summary::-webkit-details-marker { display: none; }
.gt-faq summary::after { content: '+'; font: 400 20px/1 var(--sans); color: var(--violet); flex: none; }
.gt-faq[open] summary::after { content: '−'; }
.gt-faq-answer { padding: 0 22px 22px; font: 400 15px/1.65 var(--sans); color: var(--body); animation: gt-rise .2s ease-out; }

/* --- Key takeaways -------------------------------------------------------- */
/* The summary box above an article body. Tinted rather than boxed-in so it
   reads as part of the piece, not as a pull-out advert. */
.gt-takeaways {
  margin: 30px 0 34px;
  padding: 22px 24px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  border-left: 3px solid var(--violet);
  background: var(--violet-tint);
}
.gt-takeaways h2 {
  margin: 0 0 12px;
  font: 700 12px/1 var(--mono);
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--indigo);
}
.gt-takeaways ul { margin: 0; padding-left: 20px; }
.gt-takeaways li { font: 500 15px/1.6 var(--sans); color: var(--ink-2); }
.gt-takeaways li + li { margin-top: 8px; }

/* --- Pagination ----------------------------------------------------------- */
.gt-pagination { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; justify-content: center; margin-top: 40px; }
.gt-pagination a, .gt-pagination span {
  padding: 10px 15px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line-strong);
  font: 600 14px var(--sans);
  color: var(--ink);
}
.gt-pagination a:hover { border-color: var(--violet); color: var(--indigo); }
.gt-pagination .is-current { background: var(--ink); border-color: var(--ink); color: #fff; }

/* --- Utilities ------------------------------------------------------------ */
.gt-stack { display: flex; flex-direction: column; }
.gt-stack-6 { gap: 6px; } .gt-stack-9 { gap: 9px; } .gt-stack-11 { gap: 11px; }
.gt-stack-14 { gap: 14px; } .gt-stack-16 { gap: 16px; } .gt-stack-20 { gap: 20px; }
.gt-row { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; }
.gt-row-gap-lg { gap: clamp(16px, 3vw, 42px); }
.gt-flex-1 { flex: 1; min-width: 0; }
.gt-mb-0 { margin-bottom: 0 !important; }
.gt-mb-8 { margin-bottom: 8px; }
.gt-mb-10 { margin-bottom: 10px; }
.gt-mb-14 { margin-bottom: 14px; }
.gt-mb-16 { margin-bottom: 16px; }
.gt-mb-18 { margin-bottom: 18px; }
.gt-mb-20 { margin-bottom: 20px; }
.gt-mb-22 { margin-bottom: 22px; }
.gt-mb-24 { margin-bottom: 24px; }
.gt-mb-26 { margin-bottom: 26px; }
.gt-mb-28 { margin-bottom: 28px; }
.gt-mb-30 { margin-bottom: 30px; }
.gt-mb-32 { margin-bottom: 32px; }
.gt-mb-34 { margin-bottom: 34px; }
.gt-mb-40 { margin-bottom: 40px; }
.gt-mt-14 { margin-top: 14px; }
.gt-mt-18 { margin-top: 18px; }
.gt-mt-22 { margin-top: 22px; }
.gt-mt-26 { margin-top: 26px; }
.gt-mt-34 { margin-top: 34px; }
.gt-text-center { text-align: center; }
.gt-maxw-520 { max-width: 520px; }
.gt-maxw-560 { max-width: 560px; }
.gt-maxw-580 { max-width: 580px; }
.gt-maxw-600 { max-width: 600px; }
.gt-maxw-660 { max-width: 660px; }
.gt-maxw-700 { max-width: 700px; }
.gt-maxw-760 { max-width: 760px; }
.gt-maxw-820 { max-width: 820px; }
.gt-maxw-960 { max-width: 960px; }
.gt-mx-auto { margin-left: auto; margin-right: auto; }
.gt-sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}

/* --- Responsive ----------------------------------------------------------- */
@media (max-width: 1240px) {
  .gt-phone-block { display: none !important; }
}

@media (max-width: 1100px) {
  .gt-nav,
  .gt-header-actions .gt-wa-pill { display: none !important; }
  .gt-burger { display: flex; }
  .gt-hero-inner { grid-template-columns: 1fr; }
  .gt-megamenu { display: none; }
}

@media (max-width: 900px) {
  .gt-case-hero { grid-template-columns: 1fr; }
  /* The offset panel would hang off the page edge once the hero is one column. */
  .gt-case-shot::after { inset: 14px -6px -14px 6px; }
  .gt-article-layout { grid-template-columns: 1fr !important; }
  .gt-toc { position: static; max-width: none; margin-bottom: 8px; }
  .gt-modal-aside { border-right: 0; border-bottom: 1px solid rgba(20,20,40,.08); }
}

@media (max-width: 768px) {
  :root { --section-y: clamp(44px, 9vw, 64px); --section-y-sm: clamp(36px, 8vw, 56px); }
  .gt-header-cta { padding: 10px 14px; font-size: 13px; }
  .gt-hero-inner { grid-template-columns: 1fr; padding-top: 34px; }
  .gt-hero-actions .gt-btn,
  .gt-hero-actions .gt-btn--whatsapp { width: 100%; }
  .gt-section-head { align-items: flex-start; }
  .gt-case-facts { gap: 14px 22px; }
  .gt-shots { grid-template-columns: repeat(auto-fill, minmax(min(150px, 100%), 1fr)); }
  .gt-statbar { gap: 10px 16px; }
  .gt-statbar i { display: none; }
  .gt-statbar span { font-size: 12px; }
  .gt-float-phone { display: none; }
  .gt-float-wa { padding: 13px 18px; font-size: 14px; }
  .gt-process-card { max-width: none; }
  .gt-list-row { flex-wrap: wrap; }
  .gt-kv-row { flex-direction: column; gap: 4px; }
  .gt-kv-row .v { text-align: left; }
  .gt-mock-rail { width: 40px; }
  .gt-cover-inner { padding: 26px 24px 28px; }
  .gt-filters { position: static; }
  .gt-filter-row { gap: 6px; }
  .gt-filter-row > .label { flex-basis: 100%; min-width: 0; }
  .gt-inline-form .gt-btn { width: 100%; }
}

@media (max-width: 560px) {
  .gt-logo-name b { font-size: 17px; }
  .gt-header-cta { padding: 9px 12px; font-size: 12.5px; }
  .gt-mock-kpis { flex-wrap: wrap; }
  .gt-mock-kpi { flex: 1 1 45%; }
  .gt-proof-headline { font-size: 21px; }
  .gt-btn { width: 100%; }
  .gt-btn.gt-btn--auto { width: auto; }
  .gt-modal-panel { border-radius: 12px; }
}

/* --- Touch ergonomics ------------------------------------------------------
   Keyed off the pointer rather than the viewport: a 15px input zooms iOS
   Safari on focus whatever the screen is, and a phone-sized tap target is
   wrong on a tablet too. Desktop keeps the tighter type it was designed with.
   -------------------------------------------------------------------------- */
@media (pointer: coarse) {
  /* iOS Safari zooms the page whenever a focused field's text is under 16px,
     which throws the layout sideways mid-form. Every lead form on the site is
     touch-first, so fields hold at 16px — gtechadmin.css does this already. */
  .gt-input,
  .gt-footer-input,
  select,
  textarea { font-size: 16px; }

  /* 44px is the smallest reliable tap target; these all sat under it. Calling
     and emailing are the two things a phone visitor most wants to do, so every
     tel:/mailto: link on the site gets the full target wherever it appears. */
  .gt-btn,
  .gt-filter { min-height: 44px; }
  .gt-filter,
  .gt-logo,
  .gt-link,
  .gt-crumbs a,
  .gt-social-row a,
  .gt-toc-list a,
  .gt-float-wa,
  .gt-float-phone,
  .gt-team-foot a,
  .gt-case-fact a,
  .gt-pagination a,
  .gt-pagination span,
  a[href^='tel:'],
  a[href^='mailto:'] {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
  }
  /* A single-digit page number is otherwise a target barely wider than the
     glyph, wedged between two of its neighbours. */
  .gt-pagination a,
  .gt-pagination span { justify-content: center; min-width: 44px; }

  /* …but a contact link written mid-sentence is prose, not a control: leave it
     in the line rather than making it a 44px box. */
  .gt-article-body a[href^='tel:'],
  .gt-article-body a[href^='mailto:'] { display: inline; min-height: 0; }

  /* The column gap already spaces these; drop it to 0 so growing each link to
     44px spaces the list evenly instead of doubling the footer's height. */
  .gt-footer-links { gap: 0; }
  .gt-footer-links a,
  .gt-footer-contact > a,
  .gt-footer-contact span a,
  .gt-footer-bottom a {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}

@media print {
  .gt-header, .gt-footer, .gt-float, .gt-modal { display: none !important; }
}
