
    :root {
      --navy: #06162f;
      --blue: #0b4ea2;
      --blue-2: #0e6bd8;
      --gold: #c99a2e;
      --ink: #132033;
      --muted: #5e6b7d;
      --line: #dbe3ee;
      --soft: #f5f8fc;
      --white: #ffffff;
      --shadow: 0 22px 60px rgba(6, 22, 47, 0.14);
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      color: var(--ink);
      background: var(--white);
      -webkit-font-smoothing: antialiased;
    }
    a { color: inherit; text-decoration: none; }
    img { max-width: 100%; display: block; }

    .trs-page {
      overflow-x: hidden;
      background: var(--white);
    }
    .trs-container {
      width: min(1180px, calc(100% - 40px));
      margin: 0 auto;
    }
    .trs-topbar {
      background: var(--navy);
      color: rgba(255,255,255,0.78);
      font-size: 13px;
    }
    .trs-topbar-inner {
      min-height: 42px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
    }
    .trs-topbar strong { color: var(--gold); font-weight: 700; }

    .trs-header {
      position: sticky;
      top: 0;
      z-index: 20;
      background: rgba(255,255,255,0.94);
      backdrop-filter: blur(14px);
      border-bottom: 1px solid rgba(19,32,51,0.08);
    }
    .trs-nav {
      min-height: 76px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 28px;
    }
    .trs-brand {
      display: flex;
      align-items: center;
      gap: 14px;
      min-width: 260px;
    }
    .trs-mark {
      width: 46px;
      height: 46px;
      display: grid;
      place-items: center;
      border-radius: 8px;
      background: var(--navy);
      color: var(--gold);
      font-family: "Source Serif 4", serif;
      font-weight: 700;
      border: 1px solid rgba(201,154,46,0.55);
    }
    .trs-brand-title {
      font-family: "Source Serif 4", serif;
      font-size: 18px;
      font-weight: 700;
      line-height: 1.05;
      color: var(--navy);
    }
    .trs-brand-sub {
      margin-top: 3px;
      color: var(--muted);
      font-size: 11px;
      letter-spacing: 1.2px;
      text-transform: uppercase;
    }
    .trs-links {
      display: flex;
      align-items: center;
      gap: 24px;
      color: #344256;
      font-size: 14px;
      font-weight: 700;
    }
    .trs-links a:hover { color: var(--blue); }
    .trs-button,
    .trs-button-light,
    .trs-button-ghost {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 48px;
      padding: 0 22px;
      border-radius: 8px;
      font-weight: 800;
      font-size: 14px;
      border: 1px solid transparent;
      transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
    }
    .trs-button {
      background: var(--gold);
      color: var(--navy);
      box-shadow: 0 16px 36px rgba(201,154,46,0.25);
    }
    .trs-button:hover { transform: translateY(-1px); box-shadow: 0 18px 42px rgba(201,154,46,0.34); }
    .trs-button-light {
      background: var(--white);
      color: var(--navy);
    }
    .trs-button-ghost {
      color: var(--white);
      border-color: rgba(255,255,255,0.24);
      background: rgba(255,255,255,0.05);
    }
    .trs-socials {
      display: flex;
      align-items: center;
      gap: 10px;
      flex-wrap: wrap;
    }
    .trs-social {
      width: 40px;
      height: 40px;
      display: inline-grid;
      place-items: center;
      border-radius: 10px;
      color: var(--white);
      box-shadow: 0 14px 32px rgba(6,22,47,0.18);
      transition: transform 180ms ease, filter 180ms ease;
    }
    .trs-social:hover {
      transform: translateY(-2px);
      filter: brightness(1.06);
    }
    .trs-social svg {
      width: 20px;
      height: 20px;
      fill: currentColor;
    }
    .trs-social.linkedin { background: #0a66c2; }
    .trs-social.youtube { background: #ff0000; }
    .trs-social.whatsapp { background: #25d366; color: #052e1a; }

    .trs-hero {
      position: relative;
      background:
        linear-gradient(120deg, rgba(6,22,47,0.98), rgba(6,22,47,0.76), rgba(11,78,162,0.55)),
        url("https://images.unsplash.com/photo-1563986768609-322da13575f3?auto=format&fit=crop&w=2000&q=80") center/cover;
      color: var(--white);
    }
    .trs-hero::after {
      content: "";
      position: absolute;
      inset: 0;
      background-image: linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
      background-size: 44px 44px;
      pointer-events: none;
    }
    .trs-hero-inner {
      position: relative;
      z-index: 1;
      min-height: 720px;
      display: grid;
      grid-template-columns: 1.05fr 0.95fr;
      gap: 56px;
      align-items: center;
      padding: 88px 0 64px;
    }
    .trs-hero-tagline {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin: 0 0 22px;
    }
    .trs-mini-tag {
      position: relative;
      overflow: hidden;
      display: inline-flex;
      align-items: center;
      min-height: 32px;
      padding: 0 12px;
      border-radius: 999px;
      border: 1px solid rgba(255,255,255,0.16);
      background: rgba(255,255,255,0.08);
      color: rgba(255,255,255,0.82);
      font-size: 12px;
      font-weight: 800;
      box-shadow: 0 10px 26px rgba(0,0,0,0.12);
      animation: trs-tag-float 4.8s ease-in-out infinite;
    }
    .trs-mini-tag::after {
      content: "";
      position: absolute;
      inset: 0;
      transform: translateX(-120%);
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.22), transparent);
      animation: trs-tag-shine 3.8s ease-in-out infinite;
    }
    .trs-mini-tag:nth-child(1) { border-color: rgba(96,165,250,0.44); color: #dbeafe; }
    .trs-mini-tag:nth-child(2) { border-color: rgba(52,211,153,0.44); color: #d1fae5; animation-delay: 120ms; }
    .trs-mini-tag:nth-child(3) { border-color: rgba(250,204,21,0.5); color: #fef3c7; animation-delay: 240ms; }
    .trs-mini-tag:nth-child(4) { border-color: rgba(244,114,182,0.46); color: #fce7f3; animation-delay: 360ms; }
    .trs-mini-tag:nth-child(5) { border-color: rgba(167,139,250,0.48); color: #ede9fe; animation-delay: 480ms; }
    @keyframes trs-tag-float {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-4px); }
    }
    @keyframes trs-tag-shine {
      0%, 60% { transform: translateX(-120%); }
      100% { transform: translateX(120%); }
    }
    .trs-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      color: var(--gold);
      font-size: 12px;
      font-weight: 800;
      letter-spacing: 1.8px;
      text-transform: uppercase;
    }
    .trs-eyebrow::before {
      content: "";
      width: 34px;
      height: 2px;
      background: var(--gold);
    }
    .trs-hero h1 {
      margin: 22px 0 22px;
      max-width: 760px;
      font-family: "Source Serif 4", serif;
      font-size: clamp(44px, 6vw, 76px);
      line-height: 0.98;
      letter-spacing: 0;
    }
    .trs-hero h1 span { color: var(--gold); }
    .trs-hero p {
      max-width: 650px;
      margin: 0 0 34px;
      color: rgba(255,255,255,0.82);
      font-size: 19px;
      line-height: 1.7;
    }
    .trs-hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin-bottom: 42px;
    }
    .trs-proof {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 14px;
      max-width: 720px;
    }
    .trs-proof-item {
      border: 1px solid rgba(255,255,255,0.15);
      background: rgba(255,255,255,0.07);
      padding: 18px;
      border-radius: 8px;
    }
    .trs-proof-item strong {
      display: block;
      color: var(--white);
      font-size: 18px;
      margin-bottom: 5px;
    }
    .trs-proof-item span {
      color: rgba(255,255,255,0.68);
      font-size: 13px;
      line-height: 1.45;
    }
    .trs-hero-visual {
      position: relative;
      min-height: 560px;
      display: grid;
      align-items: center;
    }
    .trs-command {
      position: relative;
      overflow: hidden;
      border-radius: 18px;
      background: linear-gradient(180deg, rgba(255,255,255,0.12), rgba(255,255,255,0.06));
      border: 1px solid rgba(255,255,255,0.18);
      box-shadow: 0 32px 90px rgba(0,0,0,0.34);
      backdrop-filter: blur(18px);
    }
    .trs-command::before {
      content: "";
      position: absolute;
      inset: 0;
      background-image: linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px);
      background-size: 28px 28px;
      pointer-events: none;
    }
    .trs-command::after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      top: -80px;
      height: 80px;
      background: linear-gradient(180deg, transparent, rgba(201,154,46,0.22), transparent);
      animation: trs-scan 5.5s linear infinite;
      pointer-events: none;
    }
    @keyframes trs-scan {
      0% { transform: translateY(0); opacity: 0; }
      10% { opacity: 1; }
      90% { opacity: 1; }
      100% { transform: translateY(720px); opacity: 0; }
    }
    .trs-command-top {
      position: relative;
      z-index: 1;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      padding: 18px 20px;
      border-bottom: 1px solid rgba(255,255,255,0.14);
    }
    .trs-window-dots {
      display: flex;
      gap: 8px;
    }
    .trs-window-dots span {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: var(--gold);
      opacity: 0.86;
    }
    .trs-command-status {
      color: rgba(255,255,255,0.72);
      font-size: 12px;
      font-weight: 800;
      letter-spacing: 1.2px;
      text-transform: uppercase;
    }
    .trs-command-body {
      position: relative;
      z-index: 1;
      padding: 26px;
      display: grid;
      gap: 18px;
    }
    .trs-score {
      display: grid;
      grid-template-columns: auto 1fr;
      gap: 20px;
      align-items: center;
      padding: 22px;
      border-radius: 14px;
      background: rgba(6,22,47,0.72);
      border: 1px solid rgba(255,255,255,0.14);
    }
    .trs-score-ring {
      width: 112px;
      height: 112px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      background: conic-gradient(var(--gold) 0 78%, rgba(255,255,255,0.13) 78% 100%);
      position: relative;
      animation: trs-breathe 3.8s ease-in-out infinite;
    }
    .trs-score-ring::before {
      content: "";
      position: absolute;
      inset: 10px;
      border-radius: 50%;
      background: var(--navy);
    }
    .trs-score-ring span {
      position: relative;
      color: var(--white);
      font-family: "Source Serif 4", serif;
      font-size: 32px;
      font-weight: 700;
    }
    @keyframes trs-breathe {
      0%, 100% { transform: scale(1); }
      50% { transform: scale(1.035); }
    }
    .trs-score h2 {
      margin: 0 0 8px;
      color: var(--white);
      font-family: "Source Serif 4", serif;
      font-size: 30px;
      line-height: 1.08;
    }
    .trs-score p {
      margin: 0;
      color: rgba(255,255,255,0.72);
      font-size: 14px;
      line-height: 1.55;
    }
    .trs-readiness {
      display: grid;
      gap: 12px;
      padding: 20px;
      border-radius: 14px;
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.13);
    }
    .trs-bar-row {
      display: grid;
      gap: 7px;
    }
    .trs-bar-label {
      display: flex;
      justify-content: space-between;
      gap: 12px;
      color: rgba(255,255,255,0.8);
      font-size: 12px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.8px;
    }
    .trs-bar {
      height: 9px;
      border-radius: 999px;
      background: rgba(255,255,255,0.13);
      overflow: hidden;
    }
    .trs-bar span {
      display: block;
      height: 100%;
      border-radius: inherit;
      background: linear-gradient(90deg, var(--gold), #f2d27a);
      transform-origin: left;
      animation: trs-grow 1.2s ease-out both;
    }
    .trs-bar-row:nth-child(2) .trs-bar span { animation-delay: 120ms; }
    .trs-bar-row:nth-child(3) .trs-bar span { animation-delay: 240ms; }
    .trs-bar-row:nth-child(4) .trs-bar span { animation-delay: 360ms; }
    @keyframes trs-grow {
      from { transform: scaleX(0); }
      to { transform: scaleX(1); }
    }
    .trs-command-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 12px;
    }
    .trs-control-tile {
      min-height: 96px;
      padding: 16px;
      border-radius: 12px;
      background: rgba(255,255,255,0.1);
      border: 1px solid rgba(255,255,255,0.13);
    }
    .trs-control-tile strong {
      display: block;
      color: var(--white);
      font-size: 15px;
      margin-bottom: 6px;
    }
    .trs-control-tile span {
      color: rgba(255,255,255,0.66);
      font-size: 12px;
      line-height: 1.48;
    }
    .trs-floating-note {
      position: absolute;
      z-index: 2;
      right: -16px;
      bottom: 34px;
      width: min(260px, 72%);
      padding: 18px;
      border-radius: 12px;
      background: var(--white);
      color: var(--ink);
      border: 1px solid rgba(255,255,255,0.75);
      box-shadow: 0 24px 70px rgba(0,0,0,0.3);
    }
    .trs-floating-note strong {
      display: block;
      color: var(--navy);
      margin-bottom: 5px;
      font-size: 15px;
    }
    .trs-floating-note span {
      color: var(--muted);
      font-size: 13px;
      line-height: 1.48;
    }

    .trs-strip {
      background: var(--soft);
      border-bottom: 1px solid var(--line);
    }
    .trs-strip-inner {
      padding: 24px 0;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 12px;
    }
    .trs-chip {
      border: 1px solid var(--line);
      background: var(--white);
      border-radius: 999px;
      padding: 10px 15px;
      color: #344256;
      font-size: 13px;
      font-weight: 800;
    }

    .trs-section { padding: 96px 0; }
    .trs-section-soft { background: var(--soft); }
    .trs-section-head {
      max-width: 780px;
      margin: 0 auto 48px;
      text-align: center;
    }
    .trs-section-head.left {
      margin-left: 0;
      text-align: left;
    }
    .trs-kicker {
      color: var(--blue);
      font-size: 12px;
      font-weight: 900;
      letter-spacing: 1.8px;
      text-transform: uppercase;
      margin-bottom: 14px;
    }
    .trs-section h2 {
      margin: 0;
      color: var(--navy);
      font-family: "Source Serif 4", serif;
      font-size: clamp(34px, 4.4vw, 52px);
      line-height: 1.06;
      letter-spacing: 0;
    }
    .trs-section-head p {
      margin: 18px 0 0;
      color: var(--muted);
      font-size: 17px;
      line-height: 1.7;
    }

    .trs-services {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
    }
    .trs-card {
      position: relative;
      overflow: hidden;
      background: var(--white);
      border: 1px solid var(--line);
      border-radius: 10px;
      padding: 28px;
      min-height: 260px;
      box-shadow: 0 12px 34px rgba(6,22,47,0.05);
    }
    .trs-card::before {
      content: "";
      position: absolute;
      inset: 0 0 auto;
      height: 7px;
      background: var(--card-color, var(--blue));
    }
    .trs-card::after {
      content: "";
      position: absolute;
      width: 150px;
      height: 150px;
      right: -82px;
      top: -82px;
      border-radius: 50%;
      background: color-mix(in srgb, var(--card-color, var(--blue)) 18%, transparent);
      pointer-events: none;
    }
    .trs-card:hover {
      border-color: rgba(11,78,162,0.28);
      box-shadow: var(--shadow);
      transform: translateY(-4px);
    }
    .trs-card:nth-child(1) { --card-color: #2563eb; }
    .trs-card:nth-child(2) { --card-color: #059669; }
    .trs-card:nth-child(3) { --card-color: #dc2626; }
    .trs-card:nth-child(4) { --card-color: #7c3aed; }
    .trs-card:nth-child(5) { --card-color: #d97706; }
    .trs-card:nth-child(6) { --card-color: #db2777; }
    .trs-card:nth-child(7) { --card-color: #0f766e; }
    .trs-card:nth-child(8) { --card-color: #0891b2; }
    .trs-card:nth-child(9) { --card-color: #4f46e5; }
    .trs-icon {
      position: relative;
      z-index: 1;
      width: 48px;
      height: 48px;
      display: grid;
      place-items: center;
      border-radius: 10px;
      background: color-mix(in srgb, var(--card-color, var(--blue)) 13%, white);
      color: var(--card-color, var(--blue));
      font-weight: 900;
      margin-bottom: 20px;
    }
    .trs-card h3 {
      position: relative;
      z-index: 1;
      margin: 0 0 12px;
      color: var(--navy);
      font-size: 21px;
      line-height: 1.25;
    }
    .trs-card h3 span {
      color: var(--card-color, var(--blue));
    }
    .trs-card p {
      position: relative;
      z-index: 1;
      margin: 0;
      color: var(--muted);
      line-height: 1.62;
      font-size: 15px;
    }
    .trs-service-tabs {
      position: relative;
      z-index: 1;
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 18px;
    }
    .trs-service-tabs span {
      display: inline-flex;
      min-height: 28px;
      align-items: center;
      padding: 0 10px;
      border-radius: 999px;
      background: color-mix(in srgb, var(--card-color, var(--blue)) 12%, white);
      color: var(--card-color, var(--blue));
      font-size: 11px;
      font-weight: 900;
      letter-spacing: 0.2px;
    }

    .trs-two-col {
      display: grid;
      grid-template-columns: 0.95fr 1.05fr;
      gap: 58px;
      align-items: center;
    }
    .trs-photo {
      min-height: 560px;
      border-radius: 12px;
      background:
        linear-gradient(180deg, rgba(6,22,47,0.05), rgba(6,22,47,0.12)),
        url("https://images.unsplash.com/photo-1551836022-d5d88e9218df?auto=format&fit=crop&w=1400&q=80") center/cover;
      box-shadow: var(--shadow);
      position: relative;
      overflow: hidden;
    }
    .trs-photo-note {
      position: absolute;
      left: 24px;
      right: 24px;
      bottom: 24px;
      background: rgba(255,255,255,0.94);
      border-radius: 10px;
      padding: 22px;
      border: 1px solid rgba(255,255,255,0.7);
    }
    .trs-photo-note strong {
      color: var(--navy);
      font-family: "Source Serif 4", serif;
      font-size: 24px;
      display: block;
      margin-bottom: 6px;
    }
    .trs-photo-note span {
      color: var(--muted);
      line-height: 1.55;
    }
    .trs-text p {
      color: var(--muted);
      font-size: 17px;
      line-height: 1.75;
      margin: 0 0 20px;
    }
    .trs-list {
      display: grid;
      gap: 12px;
      margin-top: 26px;
    }
    .trs-list div {
      display: grid;
      grid-template-columns: 26px 1fr;
      gap: 12px;
      align-items: start;
      color: #344256;
      font-weight: 700;
    }
    .trs-list div::before {
      content: "✓";
      color: var(--gold);
      font-weight: 900;
    }

    .trs-industries {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 14px;
    }
    .trs-industry {
      background: var(--white);
      border: 1px solid var(--line);
      border-radius: 10px;
      padding: 22px;
      color: var(--navy);
      font-weight: 800;
      min-height: 98px;
      display: flex;
      align-items: end;
    }

    .trs-process {
      counter-reset: step;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
    }
    .trs-step {
      background: var(--navy);
      color: var(--white);
      border-radius: 10px;
      padding: 28px;
      position: relative;
      min-height: 230px;
    }
    .trs-step::before {
      counter-increment: step;
      content: "0" counter(step);
      color: var(--gold);
      font-family: "Source Serif 4", serif;
      font-size: 42px;
      font-weight: 700;
    }
    .trs-step h3 {
      margin: 20px 0 10px;
      font-size: 20px;
    }
    .trs-step p {
      margin: 0;
      color: rgba(255,255,255,0.72);
      line-height: 1.58;
      font-size: 14px;
    }

    .trs-cta {
      background:
        linear-gradient(120deg, rgba(6,22,47,0.96), rgba(11,78,162,0.88)),
        url("https://images.unsplash.com/photo-1516321318423-f06f85e504b3?auto=format&fit=crop&w=1800&q=80") center/cover;
      color: var(--white);
      border-radius: 18px;
      padding: 56px;
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 32px;
      align-items: center;
    }
    .trs-cta h2 {
      color: var(--white);
      margin-bottom: 12px;
    }
    .trs-cta p {
      margin: 0;
      color: rgba(255,255,255,0.78);
      font-size: 17px;
      line-height: 1.65;
      max-width: 720px;
    }

    .trs-footer {
      background: var(--navy);
      color: rgba(255,255,255,0.76);
      padding: 58px 0 28px;
    }
    .trs-footer-grid {
      display: grid;
      grid-template-columns: 1.2fr 0.8fr 0.8fr;
      gap: 38px;
      padding-bottom: 34px;
      border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    .trs-footer h3,
    .trs-footer h4 {
      color: var(--white);
      margin: 0 0 16px;
    }
    .trs-footer p,
    .trs-footer a {
      color: rgba(255,255,255,0.72);
      line-height: 1.7;
      font-size: 14px;
    }
    .trs-footer a:hover { color: var(--gold); }
    .trs-footer .trs-social {
      box-shadow: none;
    }
    .trs-footer-bottom {
      display: flex;
      justify-content: space-between;
      gap: 16px;
      flex-wrap: wrap;
      padding-top: 22px;
      font-size: 13px;
      color: rgba(255,255,255,0.5);
    }

    @media (max-width: 980px) {
      .trs-topbar { display: none; }
      .trs-links { display: none; }
      .trs-hero-inner,
      .trs-two-col,
      .trs-cta {
        grid-template-columns: 1fr;
      }
      .trs-hero-inner { min-height: auto; padding: 72px 0; }
      .trs-proof,
      .trs-services,
      .trs-industries,
      .trs-process,
      .trs-command-grid,
      .trs-footer-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      .trs-hero-visual { min-height: auto; }
      .trs-floating-note { position: static; width: 100%; margin-top: 16px; }
      .trs-cta { padding: 40px; }
    }
    @media (max-width: 640px) {
      .trs-container { width: min(100% - 28px, 1180px); }
      .trs-nav { min-height: 70px; }
      .trs-brand { min-width: 0; }
      .trs-brand-title { font-size: 15px; }
      .trs-brand-sub { font-size: 9px; }
      .trs-mark { width: 40px; height: 40px; }
      .trs-hero h1 { font-size: 42px; }
      .trs-hero p { font-size: 17px; }
      .trs-proof,
      .trs-services,
      .trs-industries,
      .trs-process,
      .trs-command-grid,
      .trs-footer-grid {
        grid-template-columns: 1fr;
      }
      .trs-score { grid-template-columns: 1fr; }
      .trs-section { padding: 72px 0; }
      .trs-photo { min-height: 420px; }
      .trs-card { min-height: auto; }
      .trs-cta { padding: 28px; border-radius: 12px; }
      .trs-button,
      .trs-button-light,
      .trs-button-ghost {
        width: 100%;
 }
    }
		
/* TRS WordPress strong fixes */
.page-id-176 .trs-page,
.page-id-176 .trs-page * {
  box-sizing: border-box !important;
}

.page-id-176 .trs-page {
  width: 100vw !important;
  max-width: 100vw !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
  overflow-x: hidden !important;
}

.page-id-176 .trs-page h1,
.page-id-176 .trs-page h2,
.page-id-176 .trs-page h3,
.page-id-176 .trs-page h4,
.page-id-176 .trs-page p {
  margin-top: 0;
}

.page-id-176 .trs-hero h1 {
  color: #ffffff !important;
  font-size: clamp(44px, 6vw, 76px) !important;
  line-height: 0.98 !important;
}

.page-id-176 .trs-hero h1 span {
  color: #c99a2e !important;
}

.page-id-176 .trs-hero p {
  color: rgba(255,255,255,0.82) !important;
}

.page-id-176 .trs-section h2 {
  color: #06162f !important;
}

.page-id-176 .trs-section-head p,
.page-id-176 .trs-card p,
.page-id-176 .trs-text p {
  color: #5e6b7d !important;
}

.page-id-176 .trs-step {
  background: #06162f !important;
  color: #ffffff !important;
}

.page-id-176 .trs-step p {
  color: rgba(255,255,255,0.72) !important;
}

.page-id-176 .trs-cta h2 {
  color: #ffffff !important;
}

.page-id-176 .trs-cta p {
  color: rgba(255,255,255,0.78) !important;
}

.page-id-176 .trs-social svg {
  width: 20px !important;
  height: 20px !important;
  max-width: 20px !important;
  max-height: 20px !important;
}

/* Final homepage layout fix */
html,
body {
  overflow-x: hidden !important;
}

.page-id-176 .trs-page,
.home .trs-page,
.front-page .trs-page {
  width: 100% !important;
  max-width: 100% !important;
  overflow-x: hidden !important;
  margin: 0 !important;
}

.page-id-176 .trs-container,
.home .trs-container,
.front-page .trs-container {
  width: min(1180px, calc(100% - 32px)) !important;
  max-width: 1180px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.page-id-176 .trs-topbar-inner,
.home .trs-topbar-inner,
.front-page .trs-topbar-inner {
  min-height: 40px !important;
}

.page-id-176 .trs-nav,
.home .trs-nav,
.front-page .trs-nav {
  min-height: 82px !important;
  padding-top: 10px !important;
  padding-bottom: 10px !important;
}

.page-id-176 .trs-hero-inner,
.home .trs-hero-inner,
.front-page .trs-hero-inner {
  min-height: calc(100vh - 122px) !important;
  padding-top: 56px !important;
  padding-bottom: 56px !important;
}

.page-id-176 .trs-hero h1,
.home .trs-hero h1,
.front-page .trs-hero h1 {
  font-size: clamp(42px, 5.1vw, 68px) !important;
}

.page-id-176 .trs-hero-visual,
.home .trs-hero-visual,
.front-page .trs-hero-visual {
  max-width: 100% !important;
}

.page-id-176 .trs-command,
.home .trs-command,
.front-page .trs-command {
  max-width: 100% !important;
}