/* translaterush.com -- style.css */
/* Design: Bento grid hero | Syne + DM Sans | Navy + Vivid Orange | Spain */
/* CSS prefix: tr- (unique to this project) */

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

/* ── DESIGN TOKENS ─────────────────────────────────────────── */
:root {
  --tr-ink:      #0D1722;
  --tr-navy:     #1A2E5A;
  --tr-navy2:    #243F7D;
  --tr-navy-lt:  #3A5598;
  --tr-orange:   #F05722;
  --tr-orange2:  #D94518;
  --tr-orange-lt:#FDE8E0;
  --tr-cream:    #FAFAF7;
  --tr-sand:     #F2EDE6;
  --tr-sand2:    #E8E2DA;
  --tr-rule:     #E0D9D1;
  --tr-fog:      #8A8E9E;
  --tr-white:    #FFFFFF;
  --tr-green:    #2D6A4F;
  --tr-purple:   #3B2D8E;
  --tr-red:      #B5451B;

  --tr-h-font: 'Syne', system-ui, sans-serif;
  --tr-b-font: 'DM Sans', system-ui, sans-serif;

  --tr-r:     8px;
  --tr-r-lg:  16px;
  --tr-r-xl:  24px;
  --tr-r-2xl: 36px;
  --tr-r-pill:100px;

  --tr-sh:    0 4px 24px rgba(13,23,34,.09);
  --tr-sh-lg: 0 16px 56px rgba(13,23,34,.14);
  --tr-sh-o:  0 8px 32px rgba(240,87,34,.22);

  --tr-max:   1180px;
  --tr-gap:   1.5rem;
  --tr-ease:  0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── RESET ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--tr-b-font);
  font-size: 1rem;
  line-height: 1.68;
  color: var(--tr-ink);
  background: var(--tr-cream);
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; font-size: inherit; outline: none; }

/* ── LAYOUT ────────────────────────────────────────────────── */
.tr-wrap {
  max-width: var(--tr-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.tr-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--tr-h-font);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--tr-orange);
}
.tr-label::before {
  content: '';
  width: 20px;
  height: 2px;
  background: var(--tr-orange);
  flex-shrink: 0;
}

/* ── TYPOGRAPHY ─────────────────────────────────────────────── */
h1, h2, h3, h4 { font-family: var(--tr-h-font); line-height: 1.15; color: var(--tr-ink); }
h1 { font-size: clamp(2.6rem, 5vw, 5rem); font-weight: 800; }
h2 { font-size: clamp(1.85rem, 3vw, 2.8rem); font-weight: 700; }
h3 { font-size: clamp(1.1rem, 1.6vw, 1.55rem); font-weight: 700; }
h4 { font-size: 1.05rem; font-weight: 700; }
p { color: var(--tr-fog); line-height: 1.76; }

/* ── BUTTONS ────────────────────────────────────────────────── */
.tr-btn, .tr-btn-outline, .tr-btn-ghost, .tr-btn-white, .tr-btn-navy {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--tr-h-font);
  font-size: 0.88rem;
  font-weight: 700;
  padding: 0.82rem 1.9rem;
  border-radius: var(--tr-r-pill);
  transition: var(--tr-ease);
  cursor: pointer;
  white-space: nowrap;
  letter-spacing: 0.01em;
}
.tr-btn {
  background: var(--tr-orange);
  color: var(--tr-white);
  border: 2px solid var(--tr-orange);
}
.tr-btn:hover { background: var(--tr-orange2); border-color: var(--tr-orange2); transform: translateY(-2px); box-shadow: var(--tr-sh-o); }
.tr-btn-outline {
  background: transparent;
  color: var(--tr-navy);
  border: 2px solid var(--tr-navy);
}
.tr-btn-outline:hover { background: var(--tr-navy); color: var(--tr-white); transform: translateY(-2px); }
.tr-btn-ghost {
  background: transparent;
  color: rgba(255,255,255,.8);
  border: 1.5px solid rgba(255,255,255,.35);
}
.tr-btn-ghost:hover { background: rgba(255,255,255,.12); color: var(--tr-white); border-color: rgba(255,255,255,.6); }
.tr-btn-white {
  background: var(--tr-white);
  color: var(--tr-navy);
  border: 2px solid var(--tr-white);
}
.tr-btn-white:hover { background: var(--tr-cream); }
.tr-btn-navy {
  background: var(--tr-navy);
  color: var(--tr-white);
  border: 2px solid var(--tr-navy);
}
.tr-btn-navy:hover { background: var(--tr-navy2); transform: translateY(-2px); box-shadow: var(--tr-sh); }
.tr-btn svg, .tr-btn-outline svg, .tr-btn-ghost svg { width: 13px; height: 13px; flex-shrink: 0; }

/* ── HORIZONTAL NAVIGATION ─────────────────────────────────── */
/* Logo left | Links center-left | CTA right */
/* Transparent → solid on scroll (TRAPP.navScroll) */
.tr-topnav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: rgba(250,250,247,0);
  border-bottom: 1px solid transparent;
  transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.tr-topnav.tr-scrolled {
  background: rgba(250,250,247,0.96);
  border-color: var(--tr-rule);
  box-shadow: 0 1px 0 var(--tr-rule);
  backdrop-filter: blur(12px);
}
.tr-nav-inner {
  display: flex;
  align-items: center;
  height: 68px;
  gap: 0.25rem;
}
.tr-nav-logo {
  font-family: var(--tr-h-font);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--tr-navy);
  letter-spacing: -0.04em;
  flex-shrink: 0;
  margin-right: 2rem;
}
.tr-nav-logo span { color: var(--tr-orange); }
.tr-nav-links {
  display: flex;
  align-items: center;
  gap: 0.1rem;
  flex: 1;
}
.tr-nav-link {
  font-family: var(--tr-h-font);
  font-size: 1rem;
  font-weight: 600;
  color: var(--tr-fog);
  padding: 0.4rem 0.85rem;
  border-radius: var(--tr-r);
  transition: color var(--tr-ease), background var(--tr-ease);
  white-space: nowrap;
}
.tr-nav-link:hover, .tr-nav-link.tr-active { color: var(--tr-navy); background: rgba(26,46,90,.06); }
.tr-nav-right {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}
.tr-lang-toggle {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--tr-rule);
  border-radius: var(--tr-r-pill);
  overflow: hidden;
  font-family: var(--tr-h-font);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.06em;
}
.tr-lang-opt {
  padding: 0.28rem 0.65rem;
  color: var(--tr-fog);
  transition: background var(--tr-ease), color var(--tr-ease);
}
.tr-lang-opt.tr-lang-on { background: var(--tr-navy); color: var(--tr-white); }
.tr-lang-opt:hover:not(.tr-lang-on) { background: var(--tr-sand); color: var(--tr-ink); }
/* Mobile burger */
.tr-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.45rem;
  background: none;
  border: none;
  cursor: pointer;
}
.tr-burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--tr-navy);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}
.tr-burger.tr-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.tr-burger.tr-open span:nth-child(2) { opacity: 0; }
.tr-burger.tr-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
.tr-drawer {
  display: none;
  flex-direction: column;
  background: var(--tr-white);
  border-top: 1px solid var(--tr-rule);
  padding: 1rem 1.5rem 2rem;
  position: fixed;
  left: 0;
  right: 0;
  top: 68px;
  z-index: 899;
  max-height: calc(100vh - 68px);
  overflow-y: auto;
  box-shadow: var(--tr-sh-lg);
}
.tr-drawer.tr-drawer-open { display: flex; }
.tr-mob-link {
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--tr-rule);
  font-family: var(--tr-h-font);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--tr-navy);
}
.tr-mob-sub {
  padding-left: 1rem;
  font-family: var(--tr-b-font);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--tr-fog);
}

/* ── BENTO GRID HERO ────────────────────────────────────────── */
/* 5-card asymmetric grid unique to this project */
.tr-hero-zone {
  padding: 7rem 0 3rem;
  background: var(--tr-cream);
}
.tr-bento-grid {
  display: grid;
  grid-template-columns: 1.65fr 0.68fr 0.67fr;
  grid-template-rows: auto auto;
  gap: 1rem;
}
/* Card 1: Main heading (spans rows 1+2) */
.tr-bento-main {
  grid-column: 1;
  grid-row: 1 / span 2;
  background: var(--tr-navy);
  border-radius: var(--tr-r-2xl);
  padding: 2.75rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 480px;
  min-width: 0;
  position: relative;
  overflow: hidden;
}
.tr-bento-main::after {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: rgba(240,87,34,.12);
  pointer-events: none;
}
.tr-bento-main::before {
  content: '';
  position: absolute;
  bottom: -60px; left: -60px;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: rgba(255,255,255,.04);
  pointer-events: none;
}
.tr-bento-kicker {
  font-family: var(--tr-h-font);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--tr-orange);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  position: relative;
  z-index: 1;
}
.tr-bento-kicker::before {
  content: '';
  width: 18px;
  height: 2px;
  background: var(--tr-orange);
  flex-shrink: 0;
}
.tr-bento-h1 {
  font-family: var(--tr-h-font);
  font-size: clamp(1.85rem, 2.7vw, 3.2rem);
  font-weight: 800;
  color: var(--tr-white);
  line-height: 1.08;
  letter-spacing: -0.03em;
  position: relative;
  z-index: 1;
  word-break: break-word;
  overflow-wrap: break-word;
}
.tr-bento-h1 em {
  font-style: italic;
  font-weight: 600;
  color: var(--tr-orange);
}
.tr-bento-sub {
  font-size: 0.93rem;
  color: rgba(255,255,255,.5);
  max-width: 100%;
  line-height: 1.72;
  position: relative;
  z-index: 1;
}
.tr-bento-acts {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
/* Card 2: Orange stat (top right col 2) */
.tr-bento-stat1 {
  grid-column: 2;
  grid-row: 1;
  background: var(--tr-orange);
  border-radius: var(--tr-r-xl);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 200px;
}
.tr-bento-stat1-n {
  font-family: var(--tr-h-font);
  font-size: 4.5rem;
  font-weight: 800;
  color: var(--tr-white);
  line-height: 1;
}
.tr-bento-stat1-l {
  font-family: var(--tr-h-font);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,.7);
}
/* Card 3: Photo (col 3, rows 1+2) */
.tr-bento-photo {
  grid-column: 3;
  grid-row: 1 / span 2;
  border-radius: var(--tr-r-xl);
  overflow: hidden;
  background: var(--tr-sand2);
  position: relative;
  min-height: 300px;
}
.tr-bento-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* Card 4: Quality badge (col 2, row 2) */
.tr-bento-qual {
  grid-column: 2;
  grid-row: 2;
  background: var(--tr-white);
  border: 1.5px solid var(--tr-rule);
  border-radius: var(--tr-r-xl);
  padding: 1.75rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 200px;
}
.tr-bento-qual-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: var(--tr-navy);
  color: var(--tr-white);
  padding: 0.35rem 0.85rem;
  border-radius: var(--tr-r-pill);
  font-family: var(--tr-h-font);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  width: fit-content;
}
.tr-bento-qual-title {
  font-family: var(--tr-h-font);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--tr-ink);
  line-height: 1.3;
}
.tr-bento-qual-sub {
  font-size: 0.78rem;
  color: var(--tr-fog);
  margin-top: 0.2rem;
}
/* Trust strip below bento grid */
.tr-hero-trust {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  flex-wrap: wrap;
  padding: 2rem 0 0;
  margin-top: 1rem;
  border-top: 1px solid var(--tr-rule);
}
.tr-trust-item {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--tr-h-font);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--tr-fog);
  white-space: nowrap;
}
.tr-trust-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--tr-orange);
  opacity: 0.5;
  flex-shrink: 0;
}

/* ── SERVICE CARDS (3-col grid) ─────────────────────────────── */
.tr-svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
  margin-top: 3.5rem;
}
.tr-svc-card {
  background: var(--tr-white);
  border: 1.5px solid var(--tr-rule);
  border-radius: var(--tr-r-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--tr-ease), box-shadow var(--tr-ease);
}
.tr-svc-card:hover { transform: translateY(-5px); box-shadow: var(--tr-sh-lg); }
.tr-svc-card-img {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
  display: block;
  background: var(--tr-sand);
}
.tr-svc-card-body { padding: 1.65rem; flex: 1; display: flex; flex-direction: column; }
.tr-svc-card-from {
  font-family: var(--tr-h-font);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--tr-orange);
  margin-bottom: 0.5rem;
}
.tr-svc-card-name {
  font-family: var(--tr-h-font);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--tr-ink);
  margin-bottom: 0.65rem;
  line-height: 1.3;
}
.tr-svc-card-desc { font-size: 0.84rem; color: var(--tr-fog); line-height: 1.65; flex: 1; margin-bottom: 1.25rem; }
.tr-svc-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--tr-h-font);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--tr-navy);
  border-bottom: 2px solid var(--tr-navy);
  padding-bottom: 0.18rem;
  width: fit-content;
  transition: color var(--tr-ease), border-color var(--tr-ease);
  cursor: pointer;
}
.tr-svc-card:hover .tr-svc-card-link { color: var(--tr-orange); border-color: var(--tr-orange); }
.tr-svc-card-link svg { width: 13px; height: 13px; }

/* ── PROCESS -- horizontal ribbon ───────────────────────────── */
.tr-ribbon-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
  gap: 0;
  margin-top: 3.5rem;
}
.tr-ribbon-steps::before {
  content: '';
  position: absolute;
  top: 30px;
  left: 5%;
  right: 5%;
  height: 2px;
  background: var(--tr-rule);
  z-index: 0;
}
.tr-ribbon-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 1.25rem;
  position: relative;
  z-index: 1;
}
.tr-ribbon-num {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--tr-white);
  border: 2.5px solid var(--tr-rule);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--tr-h-font);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--tr-fog);
  transition: background var(--tr-ease), border-color var(--tr-ease), color var(--tr-ease);
  margin-bottom: 1.25rem;
}
.tr-ribbon-step:hover .tr-ribbon-num {
  background: var(--tr-orange);
  border-color: var(--tr-orange);
  color: var(--tr-white);
}
.tr-ribbon-step h3 { font-size: 1rem; font-weight: 700; color: var(--tr-ink); margin-bottom: 0.5rem; }
.tr-ribbon-step p { font-size: 0.83rem; color: var(--tr-fog); line-height: 1.6; }

/* ── CASE STUDIES -- 2+1 layout ────────────────────────────── */
.tr-cases-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: auto auto;
  gap: 1.15rem;
  margin-top: 3.5rem;
}
.tr-case-card {
  background: var(--tr-white);
  border: 1.5px solid var(--tr-rule);
  border-radius: var(--tr-r-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--tr-ease);
}
.tr-case-card:hover { box-shadow: var(--tr-sh-lg); }
.tr-case-card--tall { grid-row: 1 / span 2; }
.tr-case-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
  background: var(--tr-sand);
}
.tr-case-card--tall .tr-case-img { aspect-ratio: 3/4; }
.tr-case-body { padding: 1.75rem; flex: 1; display: flex; flex-direction: column; }
.tr-case-sector {
  display: inline-block;
  font-family: var(--tr-h-font);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--tr-orange);
  background: var(--tr-orange-lt);
  padding: 0.22rem 0.65rem;
  border-radius: var(--tr-r-pill);
  margin-bottom: 0.85rem;
  width: fit-content;
}
.tr-case-title { font-family: var(--tr-h-font); font-size: 1.1rem; font-weight: 700; color: var(--tr-ink); margin-bottom: 0.6rem; line-height: 1.3; }
.tr-case-desc { font-size: 0.82rem; color: var(--tr-fog); line-height: 1.65; flex: 1; margin-bottom: 1.25rem; }
.tr-case-kpis { display: flex; gap: 1.75rem; padding-top: 1rem; border-top: 1px solid var(--tr-rule); }
.tr-kpi-n { font-family: var(--tr-h-font); font-size: 1.7rem; font-weight: 800; color: var(--tr-navy); line-height: 1; }
.tr-kpi-l { font-size: 0.62rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; color: var(--tr-fog); margin-top: 0.2rem; }

/* ── TESTIMONIALS -- 2-col pull quote ───────────────────────── */
.tr-review-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.15rem;
  margin-top: 3.5rem;
}
.tr-review-card {
  background: var(--tr-white);
  border: 1.5px solid var(--tr-rule);
  border-radius: var(--tr-r-xl);
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--tr-ease);
}
.tr-review-card:hover { box-shadow: var(--tr-sh); }
.tr-review-card--dark { background: var(--tr-navy); border-color: var(--tr-navy); }
.tr-review-mark {
  font-family: var(--tr-h-font);
  font-size: 4.5rem;
  font-weight: 800;
  line-height: 0.9;
  margin-bottom: 0.5rem;
  color: var(--tr-rule);
  user-select: none;
}
.tr-review-card--dark .tr-review-mark { color: rgba(255,255,255,.08); }
.tr-review-text {
  font-family: var(--tr-h-font);
  font-size: 1rem;
  font-style: italic;
  font-weight: 500;
  color: var(--tr-ink);
  line-height: 1.68;
  flex: 1;
  margin-bottom: 1.5rem;
}
.tr-review-card--dark .tr-review-text { color: rgba(255,255,255,.68); }
.tr-review-divider { height: 1px; background: var(--tr-rule); margin-bottom: 1.15rem; }
.tr-review-card--dark .tr-review-divider { background: rgba(255,255,255,.1); }
.tr-review-who { display: flex; align-items: center; gap: 0.75rem; }
.tr-review-av {
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--tr-h-font); font-size: 1rem; font-weight: 800; color: var(--tr-white);
  flex-shrink: 0;
}
.tr-review-name { font-family: var(--tr-h-font); font-weight: 700; font-size: 0.88rem; color: var(--tr-ink); }
.tr-review-card--dark .tr-review-name { color: var(--tr-white); }
.tr-review-org { font-size: 0.75rem; color: var(--tr-fog); }
.tr-review-card--dark .tr-review-org { color: rgba(255,255,255,.35); }

/* ── PRICING TIERS ──────────────────────────────────────────── */
.tr-tiers-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
  margin-top: 3.5rem;
  align-items: start;
}
.tr-tier {
  border-radius: var(--tr-r-xl);
  overflow: hidden;
  background: var(--tr-white);
  border: 1.5px solid var(--tr-rule);
  transition: box-shadow var(--tr-ease), transform var(--tr-ease);
}
.tr-tier:hover { box-shadow: var(--tr-sh-lg); transform: translateY(-4px); }
.tr-tier--hot { border-color: var(--tr-navy); background: var(--tr-navy); }
.tr-tier-head { padding: 2rem; border-bottom: 1px solid var(--tr-rule); }
.tr-tier--hot .tr-tier-head { border-color: rgba(255,255,255,.1); }
.tr-tier-badge {
  display: inline-block;
  background: var(--tr-orange);
  color: var(--tr-white);
  font-family: var(--tr-h-font);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.2rem 0.65rem;
  border-radius: var(--tr-r-pill);
  margin-bottom: 0.75rem;
}
.tr-tier-name { font-family: var(--tr-h-font); font-size: 1.5rem; font-weight: 700; color: var(--tr-ink); margin-bottom: 0.35rem; }
.tr-tier--hot .tr-tier-name { color: var(--tr-white); }
.tr-tier-price { font-family: var(--tr-h-font); font-size: 3rem; font-weight: 800; color: var(--tr-ink); line-height: 1; }
.tr-tier--hot .tr-tier-price { color: var(--tr-orange); }
.tr-tier-cap { font-size: 0.78rem; color: var(--tr-fog); margin-top: 0.35rem; }
.tr-tier--hot .tr-tier-cap { color: rgba(255,255,255,.3); }
.tr-tier-body { padding: 2rem; }
.tr-tier-feats { display: flex; flex-direction: column; gap: 0.6rem; margin-bottom: 1.75rem; }
.tr-tier-feat { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.88rem; color: var(--tr-fog); }
.tr-tier--hot .tr-tier-feat { color: rgba(255,255,255,.6); }
.tr-feat-check {
  width: 18px; height: 18px; border-radius: 50%;
  background: rgba(240,87,34,.1);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 2px;
}
.tr-tier--hot .tr-feat-check { background: rgba(240,87,34,.2); }
.tr-feat-check svg { width: 9px; height: 9px; color: var(--tr-orange); }

/* ── PACKAGE BUILDER ────────────────────────────────────────── */
.tr-build-wrap {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 2.5rem;
  align-items: start;
  margin-top: 3rem;
}
.tr-build-panel {
  background: var(--tr-white);
  border: 1.5px solid var(--tr-rule);
  border-radius: var(--tr-r-xl);
  padding: 1.75rem;
  margin-bottom: 1.15rem;
}
.tr-build-phead {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--tr-h-font);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--tr-ink);
  margin-bottom: 1.15rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--tr-rule);
}
.tr-build-step-num {
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--tr-orange);
  color: var(--tr-white);
  font-family: var(--tr-b-font);
  font-size: 0.72rem;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.tr-pkg-tile {
  display: flex; align-items: center; gap: 0.85rem;
  padding: 0.9rem 1.05rem;
  border: 1.5px solid var(--tr-rule);
  border-radius: var(--tr-r);
  cursor: pointer;
  margin-bottom: 0.5rem;
  transition: border-color var(--tr-ease), background var(--tr-ease);
}
.tr-pkg-tile:hover { border-color: rgba(240,87,34,.35); }
.tr-pkg-tile.tr-pkg-on { border-color: var(--tr-orange); background: rgba(240,87,34,.04); }
.tr-pkg-tile input { accent-color: var(--tr-orange); cursor: pointer; flex-shrink: 0; }
.tr-pkg-tile-body { flex: 1; }
.tr-pkg-tile-name { font-family: var(--tr-h-font); font-weight: 700; color: var(--tr-ink); font-size: 0.9rem; }
.tr-pkg-tile-hint { font-size: 0.74rem; color: var(--tr-fog); margin-top: 0.1rem; }
.tr-pkg-tile-price { font-family: var(--tr-h-font); font-weight: 800; color: var(--tr-orange); font-size: 0.9rem; white-space: nowrap; }
.tr-addon-tile {
  display: flex; align-items: center; gap: 0.85rem;
  padding: 0.78rem 1.05rem;
  border: 1.5px solid var(--tr-rule);
  border-radius: var(--tr-r);
  cursor: pointer;
  margin-bottom: 0.45rem;
  transition: border-color var(--tr-ease), background var(--tr-ease);
}
.tr-addon-tile:hover { border-color: rgba(240,87,34,.35); }
.tr-addon-tile.tr-addon-on { border-color: var(--tr-orange); background: rgba(240,87,34,.04); }
.tr-addon-tile input { accent-color: var(--tr-orange); cursor: pointer; flex-shrink: 0; }
.tr-addon-lbl { flex: 1; font-weight: 600; color: var(--tr-fog); font-size: 0.87rem; }
.tr-addon-price { font-family: var(--tr-h-font); font-weight: 800; color: var(--tr-orange); font-size: 0.82rem; white-space: nowrap; }
.tr-hrs-row { display: flex; align-items: center; gap: 1.25rem; }
.tr-hrs-slider { flex: 1; accent-color: var(--tr-orange); height: 4px; }
.tr-hrs-disp { font-family: var(--tr-h-font); font-weight: 700; color: var(--tr-ink); font-size: 0.9rem; min-width: 115px; text-align: right; }
/* Summary */
.tr-sum-panel {
  position: sticky;
  top: 84px;
  background: var(--tr-navy);
  border-radius: var(--tr-r-xl);
  padding: 2rem;
  color: var(--tr-white);
}
.tr-sum-header {
  font-family: var(--tr-h-font);
  font-size: 1.1rem;
  color: rgba(255,255,255,.5);
  margin-bottom: 1.25rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.tr-sum-lines { min-height: 52px; display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1rem; }
.tr-sum-line { display: flex; justify-content: space-between; font-size: 0.84rem; gap: 1rem; }
.tr-sl-k { color: rgba(255,255,255,.38); }
.tr-sl-v { font-family: var(--tr-h-font); font-weight: 700; color: var(--tr-white); text-align: right; }
.tr-sum-divide { height: 1px; background: rgba(255,255,255,.08); margin: .75rem 0; }
.tr-sum-total-row { display: flex; justify-content: space-between; align-items: baseline; }
.tr-sum-total-lbl { font-size: 0.68rem; text-transform: uppercase; letter-spacing: .07em; color: rgba(255,255,255,.28); }
.tr-sum-total-amt { font-family: var(--tr-h-font); font-size: 2.8rem; font-weight: 800; color: var(--tr-white); }
.tr-sum-go-btn {
  display: block;
  width: 100%;
  margin-top: 1.5rem;
  padding: 0.95rem;
  background: var(--tr-orange);
  color: var(--tr-white);
  border: none;
  border-radius: var(--tr-r-pill);
  font-family: var(--tr-h-font);
  font-size: 0.95rem;
  font-weight: 800;
  cursor: pointer;
  transition: background var(--tr-ease), transform var(--tr-ease);
}
.tr-sum-go-btn:hover { background: var(--tr-orange2); transform: translateY(-1px); }
.tr-sum-go-btn:disabled { opacity: .3; cursor: not-allowed; transform: none; }
.tr-sum-note { font-size: 0.68rem; color: rgba(255,255,255,.2); text-align: center; margin-top: .65rem; }

/* ── CHECKOUT ───────────────────────────────────────────────── */
.tr-chk-layout { display: grid; grid-template-columns: 1.6fr 1fr; gap: 3rem; align-items: start; margin-top: 3rem; }
.tr-chk-form-box { background: var(--tr-white); border: 1.5px solid var(--tr-rule); border-radius: var(--tr-r-xl); padding: 2.5rem; }
.tr-chk-side { background: var(--tr-navy); border-radius: var(--tr-r-xl); padding: 2rem; position: sticky; top: 84px; }
.tr-chk-side h3 { font-family: var(--tr-h-font); font-size: 1.05rem; color: rgba(255,255,255,.4); margin-bottom: 1.25rem; padding-bottom: 1rem; border-bottom: 1px solid rgba(255,255,255,.08); }
.tr-chk-line { display: flex; justify-content: space-between; font-size: .84rem; margin-bottom: .55rem; }
.tr-chk-lk { color: rgba(255,255,255,.35); }
.tr-chk-lv { font-family: var(--tr-h-font); font-weight: 700; color: var(--tr-white); }
.tr-chk-tot-row { display: flex; justify-content: space-between; align-items: baseline; border-top: 1px solid rgba(255,255,255,.08); padding-top: .85rem; margin-top: .85rem; }
.tr-chk-tot-l { font-size: .68rem; text-transform: uppercase; letter-spacing: .07em; color: rgba(255,255,255,.28); }
.tr-chk-tot-v { font-family: var(--tr-h-font); font-size: 2.3rem; font-weight: 800; color: var(--tr-orange); }

/* ── FORMS ─────────────────────────────────────────────────── */
.tr-field { margin-bottom: 1.15rem; }
.tr-lbl { display: block; font-family: var(--tr-h-font); font-size: 0.7rem; font-weight: 700; color: var(--tr-ink); letter-spacing: 0.07em; text-transform: uppercase; margin-bottom: .42rem; }
.tr-input {
  width: 100%; padding: .82rem 1.1rem;
  border: 1.5px solid var(--tr-rule);
  border-radius: var(--tr-r);
  font-family: var(--tr-b-font);
  font-size: .95rem;
  color: var(--tr-ink);
  background: var(--tr-cream);
  transition: border-color var(--tr-ease), box-shadow var(--tr-ease);
}
.tr-input:focus { border-color: var(--tr-navy); box-shadow: 0 0 0 3px rgba(26,46,90,.1); outline: none; background: var(--tr-white); }
.tr-input::placeholder { color: var(--tr-fog); opacity: .7; }
.tr-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.tr-agree { display: flex; align-items: flex-start; gap: .7rem; margin-top: 1rem; }
.tr-agree input[type="checkbox"] { width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; accent-color: var(--tr-orange); cursor: pointer; }
.tr-agree label { font-size: .84rem; color: var(--tr-fog); cursor: pointer; line-height: 1.5; }
.tr-agree label a { color: var(--tr-orange); text-decoration: underline; text-underline-offset: 3px; }
.tr-submit-btn {
  display: block; width: 100%; margin-top: 1.75rem;
  padding: 1rem; background: var(--tr-orange); color: var(--tr-white);
  border: none; border-radius: var(--tr-r-pill);
  font-family: var(--tr-h-font); font-size: .97rem; font-weight: 800;
  cursor: pointer; transition: background var(--tr-ease), transform var(--tr-ease);
}
.tr-submit-btn:hover { background: var(--tr-orange2); transform: translateY(-1px); }

/* ── PAGE HEADER (inner pages) ──────────────────────────────── */
.tr-page-mast {
  padding: 8rem 0 4rem;
  background: var(--tr-cream);
  text-align: center;
  border-bottom: 1px solid var(--tr-rule);
  position: relative;
}
.tr-page-mast::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--tr-orange); }
.tr-page-mast h1 { text-align: center; margin-bottom: .75rem; }
.tr-page-mast > p { color: var(--tr-fog); max-width: 52ch; margin: 0 auto; text-align: center; }
.tr-breadcrumb {
  display: flex; align-items: center; justify-content: center; gap: .4rem;
  font-family: var(--tr-h-font); font-size: .72rem; color: var(--tr-fog); margin-bottom: 1.35rem;
}
.tr-breadcrumb a { color: var(--tr-fog); transition: color var(--tr-ease); }
.tr-breadcrumb a:hover { color: var(--tr-orange); }
.tr-breadcrumb svg { width: 10px; height: 10px; }
.tr-page-kicker { display: block; text-align: center; margin-bottom: .85rem; }

/* ── SECTIONS ───────────────────────────────────────────────── */
.tr-sec { padding: 7rem 0; }
.tr-sec--sand { background: var(--tr-sand); padding: 7rem 0; }
.tr-sec--white { background: var(--tr-white); padding: 7rem 0; }
.tr-sec--navy { background: var(--tr-navy); padding: 7rem 0; }
.tr-sec--navy h2 { color: var(--tr-white); }
.tr-sec--navy p { color: rgba(255,255,255,.38); }

/* ── CTA BAND ───────────────────────────────────────────────── */
.tr-cta-band {
  background: linear-gradient(135deg, var(--tr-orange) 0%, var(--tr-orange2) 100%);
  padding: 6rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.tr-cta-band::before { content: ''; position: absolute; top: -100px; right: -100px; width: 450px; height: 450px; border-radius: 50%; background: rgba(255,255,255,.07); }
.tr-cta-band::after { content: ''; position: absolute; bottom: -80px; left: -80px; width: 320px; height: 320px; border-radius: 50%; background: rgba(255,255,255,.05); }
.tr-cta-band h2 { color: var(--tr-white); position: relative; z-index: 1; margin-bottom: .75rem; }
.tr-cta-band p { color: rgba(255,255,255,.65); max-width: 50ch; margin: 0 auto 2.25rem; position: relative; z-index: 1; }
.tr-cta-acts { display: flex; align-items: center; justify-content: center; gap: 1rem; flex-wrap: wrap; position: relative; z-index: 1; }

/* ── FAQ (2-column accordion) ───────────────────────────────── */
.tr-faq-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-top: 3.5rem;
}
.tr-faq-item {
  border-top: 1px solid var(--tr-rule);
  padding: 1.35rem 1.5rem;
}
.tr-faq-2col .tr-faq-item:nth-child(2n) { border-left: 1px solid var(--tr-rule); }
.tr-faq-item:last-child, .tr-faq-item:nth-last-child(2):nth-child(odd) { border-bottom: 1px solid var(--tr-rule); }
.tr-faq-btn {
  display: flex; justify-content: space-between; align-items: flex-start; gap: 1rem;
  background: none; border: none; cursor: pointer; text-align: left; width: 100%; padding: 0;
}
.tr-faq-q { font-family: var(--tr-h-font); font-size: .95rem; font-weight: 700; color: var(--tr-ink); line-height: 1.4; }
.tr-faq-ico {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--tr-sand);
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--tr-ease);
}
.tr-faq-ico svg { width: 11px; height: 11px; color: var(--tr-ink); transition: transform var(--tr-ease); }
.tr-faq-item.tr-faq-open .tr-faq-ico { background: var(--tr-orange); }
.tr-faq-item.tr-faq-open .tr-faq-ico svg { color: var(--tr-white); transform: rotate(45deg); }
.tr-faq-a { display: none; padding-top: .75rem; font-size: .87rem; color: var(--tr-fog); line-height: 1.72; }
.tr-faq-item.tr-faq-open .tr-faq-a { display: block; }

/* ── SERVICE SINGLE PAGE ─────────────────────────────────────── */
.tr-svc-detail-layout { display: grid; grid-template-columns: 1fr 340px; gap: 4rem; align-items: start; margin-top: 3.5rem; }
.tr-svc-detail-body h2 { font-size: 1.55rem; margin: 2rem 0 .75rem; }
.tr-svc-detail-body p { margin-bottom: .95rem; line-height: 1.76; }
.tr-svc-detail-body ul { margin-bottom: .95rem; display: flex; flex-direction: column; gap: .5rem; }
.tr-svc-detail-body li { display: flex; align-items: flex-start; gap: .6rem; font-size: .9rem; color: var(--tr-fog); }
.tr-svc-detail-body li::before { content: ''; width: 4px; height: 4px; border-radius: 50%; background: var(--tr-orange); flex-shrink: 0; margin-top: .7rem; }
.tr-svc-aside { position: sticky; top: 84px; border-radius: var(--tr-r-xl); overflow: hidden; background: var(--tr-white); border: 1.5px solid var(--tr-rule); }
.tr-aside-head { background: var(--tr-navy); padding: 1.75rem; }
.tr-aside-from { font-family: var(--tr-h-font); font-size: .65rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.3); margin-bottom: .2rem; }
.tr-aside-price { font-family: var(--tr-h-font); font-size: 3rem; font-weight: 800; color: var(--tr-orange); line-height: 1; }
.tr-aside-unit { font-size: .78rem; color: rgba(255,255,255,.25); margin-top: .2rem; }
.tr-aside-body { padding: 1.5rem; }
.tr-aside-row { display: flex; justify-content: space-between; align-items: center; padding: .55rem 0; border-bottom: 1px solid var(--tr-rule); font-size: .84rem; }
.tr-aside-row:last-child { border-bottom: none; }
.tr-aside-k { color: var(--tr-fog); }
.tr-aside-v { font-family: var(--tr-h-font); font-weight: 700; color: var(--tr-ink); text-align: right; }
.tr-aside-cta { display: block; margin: 0 1.25rem .85rem; text-align: center; padding: .9rem; background: var(--tr-orange); color: var(--tr-white); border-radius: var(--tr-r-pill); font-family: var(--tr-h-font); font-weight: 800; transition: background var(--tr-ease); }
.tr-aside-cta:hover { background: var(--tr-orange2); }

/* ── LEGAL PAGES ────────────────────────────────────────────── */
.tr-legal-body { max-width: 820px; margin: 4rem auto; }
.tr-legal-body h2 { font-size: 1.5rem; margin: 2.5rem 0 .75rem; }
.tr-legal-body h3 { font-size: 1.05rem; margin: 1.75rem 0 .5rem; color: var(--tr-fog); }
.tr-legal-body p { font-size: .9rem; color: var(--tr-fog); margin-bottom: 1rem; line-height: 1.78; }
.tr-legal-body ul, .tr-legal-body ol { padding-left: 1.5rem; margin-bottom: 1rem; }
.tr-legal-body li { font-size: .9rem; color: var(--tr-fog); line-height: 1.72; margin-bottom: .5rem; }
.tr-legal-body a { color: var(--tr-orange); text-decoration: underline; text-underline-offset: 3px; }
.tr-legal-date { display: inline-block; background: var(--tr-sand); border: 1px solid var(--tr-rule); border-radius: var(--tr-r-pill); padding: .28rem .85rem; font-family: var(--tr-h-font); font-size: .72rem; color: var(--tr-fog); margin-bottom: 1.75rem; }
.tr-legal-callout { background: var(--tr-sand); border-left: 4px solid var(--tr-orange); border-radius: var(--tr-r); padding: 1.1rem 1.3rem; margin-top: 1.75rem; }

/* ── CONTACT ────────────────────────────────────────────────── */
.tr-contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 5rem; align-items: start; margin-top: 3.5rem; }
.tr-contact-item { display: flex; align-items: flex-start; gap: .75rem; margin-bottom: 1.25rem; }
.tr-contact-ico { width: 38px; height: 38px; border-radius: var(--tr-r); background: var(--tr-sand); border: 1px solid var(--tr-rule); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.tr-contact-ico svg { width: 16px; height: 16px; color: var(--tr-orange); }
.tr-contact-info-label { font-family: var(--tr-h-font); font-size: .68rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--tr-fog); margin-bottom: .15rem; }
.tr-contact-info-val { font-size: .9rem; color: var(--tr-ink); line-height: 1.5; }

/* ── RESULT PAGES ───────────────────────────────────────────── */
.tr-result-screen { min-height: 80vh; display: flex; align-items: center; justify-content: center; padding: 6rem 1.5rem; }
.tr-result-box { max-width: 540px; width: 100%; text-align: center; background: var(--tr-white); border: 1.5px solid var(--tr-rule); border-radius: var(--tr-r-2xl); padding: 3rem; box-shadow: var(--tr-sh); }
.tr-result-icon { width: 72px; height: 72px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; }
.tr-result-icon--ok { background: rgba(240,87,34,.1); }
.tr-result-icon--fail { background: rgba(181,69,27,.08); }
.tr-result-icon svg { width: 32px; height: 32px; }

/* ── STATS ROW ──────────────────────────────────────────────── */
.tr-stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--tr-navy);
  text-align: center;
}
.tr-stat-col {
  padding: 3.5rem 1.5rem;
  border-right: 1px solid rgba(255,255,255,.07);
}
.tr-stat-col:last-child { border-right: none; }
.tr-stat-col-n { font-family: var(--tr-h-font); font-size: clamp(2.8rem,5vw,4.8rem); font-weight: 800; color: var(--tr-white); line-height: 1; }
.tr-stat-col-l { font-family: var(--tr-h-font); font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.28); margin-top: .35rem; }

/* ── FOOTER ─────────────────────────────────────────────────── */
.tr-footer { background: var(--tr-ink); padding: 5rem 0 2rem; }
.tr-foot-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 3rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,.06); }
.tr-foot-brand { font-family: var(--tr-h-font); font-size: 1.35rem; font-weight: 800; color: var(--tr-white); letter-spacing: -.04em; margin-bottom: .75rem; }
.tr-foot-brand span { color: var(--tr-orange); }
.tr-foot-tag { font-size: .85rem; color: rgba(255,255,255,.28); line-height: 1.65; margin-bottom: 1.25rem; }
.tr-foot-contact { font-size: .82rem; color: rgba(255,255,255,.2); line-height: 1.9; }
.tr-foot-contact a { color: rgba(255,255,255,.2); transition: color var(--tr-ease); }
.tr-foot-contact a:hover { color: var(--tr-orange); }
.tr-foot-col h4 { font-family: var(--tr-h-font); font-size: .82rem; color: rgba(255,255,255,.35); margin-bottom: .85rem; font-weight: 700; }
.tr-foot-col ul { display: flex; flex-direction: column; gap: .45rem; }
.tr-foot-col li a { font-size: .82rem; color: rgba(255,255,255,.18); transition: color var(--tr-ease); }
.tr-foot-col li a:hover { color: var(--tr-orange); }
.tr-foot-bottom { padding-top: 1.75rem; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.tr-foot-copy { font-size: .74rem; color: rgba(255,255,255,.15); }
.tr-foot-legals { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.tr-foot-legals a { font-size: .74rem; color: rgba(255,255,255,.15); transition: color var(--tr-ease); }
.tr-foot-legals a:hover { color: var(--tr-orange); }
.tr-foot-digital-note { font-size: .7rem; color: rgba(255,255,255,.15); display: flex; align-items: center; gap: .35rem; }
.tr-foot-digital-note::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--tr-orange); opacity: .4; }

/* ── COOKIE BANNER ──────────────────────────────────────────── */
.tr-cookie-bar { position: fixed; bottom: 1.25rem; right: 1.25rem; width: 318px; background: var(--tr-ink); border: 1px solid rgba(255,255,255,.1); border-radius: var(--tr-r-xl); padding: 1.4rem; box-shadow: var(--tr-sh-lg); z-index: 9999; }
.tr-cookie-bar.tr-cookie-gone { display: none; }
.tr-cookie-text { font-size: .83rem; color: rgba(255,255,255,.42); margin-bottom: 1rem; line-height: 1.6; }
.tr-cookie-btns { display: flex; gap: .6rem; }
.tr-ck-accept { flex: 1; padding: .52rem; background: var(--tr-orange); color: var(--tr-white); border: none; border-radius: var(--tr-r-pill); font-family: var(--tr-h-font); font-size: .78rem; font-weight: 800; cursor: pointer; transition: background var(--tr-ease); }
.tr-ck-accept:hover { background: var(--tr-orange2); }
.tr-ck-decline { flex: 1; padding: .52rem; border: 1px solid rgba(255,255,255,.15); color: rgba(255,255,255,.38); background: none; border-radius: var(--tr-r-pill); font-family: var(--tr-h-font); font-size: .78rem; cursor: pointer; transition: border-color var(--tr-ease), color var(--tr-ease); }
.tr-ck-decline:hover { border-color: rgba(255,255,255,.4); color: var(--tr-white); }

/* ── CHAT WIDGET ────────────────────────────────────────────── */
.tr-chat-btn { position: fixed; bottom: 1.5rem; left: 1.5rem; width: 54px; height: 54px; border-radius: 50%; background: var(--tr-navy); color: var(--tr-white); display: flex; align-items: center; justify-content: center; cursor: pointer; box-shadow: var(--tr-sh); z-index: 8000; border: none; transition: transform var(--tr-ease), background var(--tr-ease); }
.tr-chat-btn:hover { transform: scale(1.08); background: var(--tr-navy2); }
.tr-chat-btn svg { width: 22px; height: 22px; }
.tr-chat-panel { position: fixed; bottom: calc(1.5rem + 54px + .75rem); left: 1.5rem; width: 318px; background: var(--tr-ink); border: 1px solid rgba(255,255,255,.1); border-radius: var(--tr-r-xl); box-shadow: var(--tr-sh-lg); z-index: 8000; overflow: hidden; transform: translateY(10px) scale(.97); opacity: 0; pointer-events: none; transition: transform .22s, opacity .22s; }
.tr-chat-panel.tr-chat-open { transform: translateY(0) scale(1); opacity: 1; pointer-events: auto; }
.tr-chat-head { background: var(--tr-orange); padding: 1.1rem 1.25rem; display: flex; align-items: center; gap: .75rem; }
.tr-chat-avatar { width: 32px; height: 32px; border-radius: 50%; background: rgba(255,255,255,.2); display: flex; align-items: center; justify-content: center; font-family: var(--tr-h-font); font-size: .95rem; font-weight: 800; color: var(--tr-white); }
.tr-chat-head h4 { font-family: var(--tr-h-font); font-size: .85rem; font-weight: 800; color: var(--tr-white); }
.tr-chat-head span { font-size: .7rem; color: rgba(255,255,255,.65); }
.tr-chat-body { padding: 1.25rem; }
.tr-chat-intro { font-size: .83rem; color: rgba(255,255,255,.4); margin-bottom: .85rem; line-height: 1.6; }
.tr-chat-name, .tr-chat-msg { width: 100%; padding: .62rem .88rem; border: 1px solid rgba(255,255,255,.1); border-radius: var(--tr-r); font-family: var(--tr-b-font); font-size: .83rem; color: var(--tr-white); background: rgba(255,255,255,.05); margin-bottom: .5rem; transition: border-color var(--tr-ease); }
.tr-chat-msg { resize: none; height: 70px; }
.tr-chat-name:focus, .tr-chat-msg:focus { border-color: var(--tr-orange); outline: none; }
.tr-chat-name::placeholder, .tr-chat-msg::placeholder { color: rgba(255,255,255,.25); }
.tr-chat-send { width: 100%; padding: .65rem; background: var(--tr-orange); color: var(--tr-white); border: none; border-radius: var(--tr-r-pill); font-family: var(--tr-h-font); font-size: .83rem; font-weight: 800; cursor: pointer; transition: background var(--tr-ease); }
.tr-chat-send:hover { background: var(--tr-orange2); }
.tr-chat-thanks { display: none; text-align: center; padding: .85rem; font-size: .85rem; color: var(--tr-orange); font-weight: 700; }

/* ── REVEAL ANIMATIONS ──────────────────────────────────────── */
.tr-reveal { opacity: 0; transform: translateY(20px); transition: opacity .5s ease, transform .5s ease; }
.tr-reveal.tr-in { opacity: 1; transform: none; }
.tr-d1 { transition-delay: .08s; }
.tr-d2 { transition-delay: .16s; }
.tr-d3 { transition-delay: .24s; }
.tr-d4 { transition-delay: .32s; }

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .tr-bento-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto auto auto; }
  .tr-bento-main { grid-column: 1 / span 2; grid-row: 1; min-height: 340px; padding: 2.25rem; }
  .tr-bento-stat1 { grid-column: 1; grid-row: 2; }
  .tr-bento-qual { grid-column: 2; grid-row: 2; }
  .tr-bento-photo { grid-column: 1 / span 2; grid-row: 3; min-height: 260px; }
  .tr-svc-grid { grid-template-columns: repeat(2, 1fr); }
  .tr-cases-layout { grid-template-columns: 1fr; }
  .tr-case-card--tall { grid-row: auto; }
  .tr-chk-layout { grid-template-columns: 1fr; }
  .tr-contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .tr-svc-detail-layout { grid-template-columns: 1fr; }
  .tr-svc-aside { position: static; }
  .tr-foot-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  :root { --tr-gap: 1rem; }
  .tr-topnav { position: fixed; }
  .tr-nav-links, .tr-nav-right { display: none; }
  .tr-burger { display: flex; }
  .tr-hero-zone { padding: 6rem 0 2.5rem; }
  .tr-bento-grid { grid-template-columns: 1fr; }
  .tr-bento-main { grid-column: 1; grid-row: auto; min-height: 300px; }
  .tr-bento-stat1, .tr-bento-qual, .tr-bento-photo { grid-column: 1; grid-row: auto; }
  .tr-bento-photo { min-height: 220px; }
  .tr-ribbon-steps { grid-template-columns: 1fr 1fr; }
  .tr-ribbon-steps::before { display: none; }
  .tr-svc-grid { grid-template-columns: 1fr; }
  .tr-review-grid { grid-template-columns: 1fr; }
  .tr-tiers-row { grid-template-columns: 1fr; }
  .tr-build-wrap { grid-template-columns: 1fr; }
  .tr-sum-panel { position: static; }
  .tr-faq-2col { grid-template-columns: 1fr; }
  .tr-faq-2col .tr-faq-item:nth-child(2n) { border-left: none; }
  .tr-stats-bar { grid-template-columns: 1fr 1fr; }
  .tr-stat-col { border-right: none; border-bottom: 1px solid rgba(255,255,255,.07); padding: 2rem; }
  .tr-foot-grid { grid-template-columns: 1fr; }
  .tr-foot-bottom { flex-direction: column; align-items: flex-start; }
  .tr-pair { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .tr-bento-acts { flex-direction: column; align-items: flex-start; }
  .tr-cta-acts { flex-direction: column; align-items: center; }
}
