html {
  scroll-behavior: smooth;
}

body > .main {
  padding-top: 0;
}

.tnb-site {
  --tnb-green: #0e7a4e;
  --tnb-green-deep: #0a5a3a;
  --tnb-forest: #0e3626;
  --tnb-ink: #1f2b34;
  --tnb-copy: #56666f;
  --tnb-mint: #d9f0e4;
  --tnb-mint-soft: #eef7f2;
  --tnb-cream: #f7faf8;
  --tnb-line: #dbe5df;
  --tnb-gold: #ecc45c;
  --tnb-white: #ffffff;
  background: var(--tnb-white);
  color: var(--tnb-ink);
  font-family: "freight-sans-pro", Arial, sans-serif;
  font-size: 17px;
  margin: 0;
  overflow: hidden;
}

.tnb-site * {
  box-sizing: border-box;
}

.tnb-site a:focus-visible,
.tnb-site button:focus-visible {
  outline: 3px solid var(--tnb-gold);
  outline-offset: 3px;
}

.tnb-skip {
  left: -9999px;
  position: absolute;
  top: 0;
}

.tnb-skip:focus {
  background: var(--tnb-ink);
  border-radius: 0 0 8px 0;
  color: var(--tnb-white);
  left: 0;
  padding: 12px 18px;
  position: fixed;
  text-decoration: none;
  top: 0;
  z-index: 200;
}

.tnb-container {
  margin: 0 auto;
  max-width: 1200px;
  padding-left: 28px;
  padding-right: 28px;
  width: 100%;
}

/* Dedicated product navigation */
.tnb-site .tnb-header {
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid rgba(14, 122, 78, .12);
  box-shadow: 0 8px 28px rgba(14, 54, 38, .06);
  height: auto;
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 100;
}

.tnb-header-inner {
  align-items: center;
  display: flex;
  gap: 30px;
  justify-content: space-between;
  min-height: 80px;
}

.tnb-brand {
  align-items: center;
  color: var(--tnb-ink) !important;
  display: inline-flex;
  flex: 0 0 auto;
  gap: 12px;
  text-decoration: none;
}

.tnb-brand-auditfile {
  display: block;
  height: 35px;
  width: 158px;
}

.tnb-brand-divider {
  background: var(--tnb-line);
  height: 31px;
  width: 1px;
}

.tnb-brand-product {
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -.01em;
}

.tnb-header-links {
  align-items: center;
  display: flex;
  gap: 28px;
  margin-left: auto;
}

.tnb-header-links a,
.tnb-header-login {
  color: var(--tnb-ink) !important;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
}

.tnb-header-links a:hover,
.tnb-header-login:hover {
  color: var(--tnb-green) !important;
}

.tnb-header-actions {
  align-items: center;
  display: flex;
  flex: 0 0 auto;
  gap: 18px;
}

.tnb-header-cta {
  background: var(--tnb-green);
  border-radius: 9px;
  color: var(--tnb-white) !important;
  display: inline-block;
  font-size: 15px;
  font-weight: 700;
  padding: 12px 18px;
  text-decoration: none;
  transition: background .2s ease, transform .2s ease;
}

.tnb-header-cta:hover {
  background: var(--tnb-green-deep);
  transform: translateY(-1px);
}

/* Hero */
.tnb-hero {
  background:
    radial-gradient(circle at 88% 4%, rgba(14, 122, 78, .12), transparent 32%),
    linear-gradient(115deg, #f6fbf8 0%, #e9f5ee 100%);
  overflow: hidden;
  padding: 88px 0 82px;
  position: relative;
}

/* Faint ledger ruling behind the hero copy */
.tnb-hero:before {
  background: repeating-linear-gradient(
    to bottom,
    transparent 0,
    transparent 27px,
    rgba(14, 122, 78, .09) 27px,
    rgba(14, 122, 78, .09) 28px
  );
  border-left: 2px solid rgba(216, 116, 91, .25);
  content: '';
  height: 260px;
  left: -150px;
  position: absolute;
  top: 60px;
  transform: rotate(-6deg);
  width: 300px;
}

.tnb-hero:after {
  border: 1px solid rgba(14, 122, 78, .14);
  border-radius: 28px;
  bottom: -190px;
  content: '';
  height: 250px;
  position: absolute;
  right: 34%;
  transform: rotate(18deg);
  width: 250px;
}

.tnb-hero-grid {
  align-items: center;
  display: grid;
  gap: 64px;
  grid-template-columns: minmax(0, 1.02fr) minmax(430px, .98fr);
  position: relative;
  z-index: 1;
}

.tnb-eyebrow,
.tnb-section-heading > span,
.tnb-final-cta-inner > div > span {
  color: var(--tnb-green);
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.tnb-site h1 {
  color: var(--tnb-ink);
  font-size: clamp(46px, 5vw, 68px);
  font-weight: 600;
  letter-spacing: -.045em;
  line-height: 1.01;
  margin: 20px 0 24px;
  max-width: 620px;
}

.tnb-lede {
  color: var(--tnb-copy);
  font-size: 21px;
  line-height: 1.55;
  margin: 0;
  max-width: 640px;
}

.tnb-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 31px;
}

.tnb-button {
  border: 1px solid transparent;
  border-radius: 9px;
  display: inline-flex;
  font-size: 16px;
  font-weight: 700;
  justify-content: center;
  line-height: 1.2;
  padding: 15px 20px;
  text-decoration: none;
  transition: background .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}

.tnb-button:hover {
  transform: translateY(-2px);
}

.tnb-button-primary {
  background: var(--tnb-green);
  color: var(--tnb-white) !important;
}

.tnb-button-primary:hover {
  background: var(--tnb-green-deep);
}

.tnb-text-link {
  align-self: center;
  border-bottom: 1px solid rgba(14, 122, 78, .35);
  color: var(--tnb-green) !important;
  font-size: 14px;
  font-weight: 700;
  margin-left: 5px;
  padding: 5px 0 3px;
  text-decoration: none;
}

.tnb-text-link:hover {
  border-color: var(--tnb-green-deep);
  color: var(--tnb-green-deep) !important;
}

/* CSS invoice mockup keeps the hero concrete without a stock illustration. */
.tnb-product-stage {
  margin-right: -60px;
  position: relative;
}

.tnb-product-stage:before {
  background: var(--tnb-gold);
  border-radius: 22px;
  content: '';
  height: 112px;
  left: -24px;
  opacity: .65;
  position: absolute;
  top: -22px;
  width: 112px;
}

.tnb-product-window {
  background: var(--tnb-white);
  border: 1px solid rgba(14, 54, 38, .12);
  border-radius: 17px;
  box-shadow: 0 30px 70px rgba(14, 54, 38, .2);
  overflow: hidden;
  position: relative;
  transform: rotate(1deg);
}

.tnb-window-bar {
  align-items: center;
  background: var(--tnb-ink);
  color: rgba(255, 255, 255, .78);
  display: grid;
  font-size: 12px;
  grid-template-columns: 95px 1fr auto;
  min-height: 55px;
  padding: 0 20px;
}

.tnb-window-bar > span {
  font-weight: 700;
}

.tnb-window-bar > b {
  color: rgba(255, 255, 255, .64);
  font-size: 11px;
  font-weight: 500;
}

.tnb-window-dots {
  display: flex;
  gap: 6px;
}

.tnb-window-dots i {
  background: rgba(255, 255, 255, .4);
  border-radius: 50%;
  height: 8px;
  width: 8px;
}

.tnb-window-dots i:first-child {
  background: var(--tnb-gold);
}

/* The invoice paper itself */
.tnb-invoice {
  background:
    linear-gradient(180deg, rgba(14, 122, 78, .04) 0, transparent 90px),
    var(--tnb-white);
  padding: 28px;
}

.tnb-invoice-head {
  align-items: center;
  border-bottom: 1px solid var(--tnb-line);
  display: flex;
  justify-content: space-between;
  padding-bottom: 18px;
}

.tnb-invoice-head span,
.tnb-invoice-meta span,
.tnb-budget-top span,
.tnb-ratecard-top span {
  color: #7c8f85;
  display: block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .15em;
  margin-bottom: 5px;
}

.tnb-invoice-head strong {
  color: var(--tnb-ink);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -.01em;
}

.tnb-invoice-status,
.tnb-budget-pill,
.tnb-ratecard-pill {
  background: var(--tnb-mint);
  border: 1px solid #bfe3d2;
  border-radius: 999px;
  color: var(--tnb-green-deep);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .04em;
  padding: 7px 10px;
  text-transform: uppercase;
  white-space: nowrap;
}

.tnb-invoice-meta {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 16px;
}

.tnb-invoice-meta > div {
  background: #f5f9f6;
  border: 1px solid #e5eee8;
  border-radius: 10px;
  padding: 12px 14px;
}

.tnb-invoice-meta strong {
  color: var(--tnb-ink);
  display: block;
  font-size: 13px;
}

.tnb-invoice-lines {
  border: 1px solid var(--tnb-line);
  border-radius: 11px;
  margin-top: 16px;
  overflow: hidden;
}

.tnb-invoice-line {
  align-items: center;
  background: var(--tnb-white);
  border-bottom: 1px dashed #e0eae4;
  display: flex;
  justify-content: space-between;
  padding: 12px 14px;
}

.tnb-invoice-line:last-child {
  border-bottom: 0;
}

.tnb-invoice-line span {
  color: var(--tnb-copy);
  font-size: 12px;
}

.tnb-invoice-line b {
  color: var(--tnb-ink);
  font-size: 12px;
  font-variant-numeric: tabular-nums;
}

.tnb-invoice-total {
  align-items: center;
  border-top: 2px solid var(--tnb-ink);
  display: flex;
  justify-content: space-between;
  margin-top: 16px;
  padding-top: 13px;
}

.tnb-invoice-total span {
  color: var(--tnb-copy);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.tnb-invoice-total strong {
  color: var(--tnb-ink);
  font-size: 23px;
  font-variant-numeric: tabular-nums;
  font-weight: 700;
}

.tnb-invoice-foot {
  align-items: center;
  border-top: 1px solid #e4ede7;
  display: flex;
  justify-content: space-between;
  margin-top: 18px;
  padding-top: 15px;
}

.tnb-invoice-foot span {
  color: #83958b;
  font-size: 10px;
}

.tnb-invoice-foot b {
  background: var(--tnb-green);
  border-radius: 7px;
  color: var(--tnb-white);
  font-size: 11px;
  padding: 10px 14px;
}

/* Proof strip */
.tnb-proof-strip {
  background: var(--tnb-white);
  border-bottom: 1px solid var(--tnb-line);
  padding: 26px 0;
}

.tnb-proof-strip .tnb-container {
  align-items: center;
  display: grid;
  gap: 44px;
  grid-template-columns: minmax(210px, .85fr) minmax(0, 2.15fr);
}

.tnb-proof-strip > .tnb-container > p {
  color: var(--tnb-ink);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
  margin: 0;
}

.tnb-proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.tnb-proof-item {
  border-left: 1px solid var(--tnb-line);
  padding: 5px 20px;
}

.tnb-proof-item strong,
.tnb-proof-item span {
  display: block;
}

.tnb-proof-item strong {
  color: var(--tnb-green-deep);
  font-size: 13px;
  margin-bottom: 3px;
}

.tnb-proof-item span {
  color: var(--tnb-copy);
  font-size: 12px;
  line-height: 1.35;
}

/* Shared sections */
.tnb-section {
  padding: 96px 0;
  scroll-margin-top: 80px;
}

.tnb-section-heading {
  margin-bottom: 42px;
  max-width: 790px;
}

.tnb-section-heading-centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.tnb-section-heading h2,
.tnb-final-cta h2 {
  color: var(--tnb-ink);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 600;
  letter-spacing: -.035em;
  line-height: 1.07;
  margin: 13px 0 16px;
}

.tnb-section-heading p {
  color: var(--tnb-copy);
  font-size: 19px;
  line-height: 1.55;
  margin: 0;
}

/* Time tracking */
.tnb-time-section {
  background: var(--tnb-white);
}

.tnb-time-grid {
  display: grid;
  gap: 18px;
  grid-auto-rows: 1fr;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.tnb-time-card {
  background: var(--tnb-white);
  border: 1px solid var(--tnb-line);
  border-radius: 14px;
  border-top: 3px solid var(--tnb-green);
  box-shadow: 0 10px 30px rgba(14, 54, 38, .06);
  padding: 28px;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.tnb-time-card:hover {
  border-color: #b9dcc9;
  border-top-color: var(--tnb-green);
  box-shadow: 0 18px 40px rgba(14, 54, 38, .1);
  transform: translateY(-4px);
}

.tnb-time-card h3,
.tnb-invoicing-card h3 {
  color: var(--tnb-ink);
  font-size: 21px;
  font-weight: 600;
  line-height: 1.22;
  margin: 0 0 11px;
}

.tnb-time-card p,
.tnb-invoicing-card p {
  color: var(--tnb-copy);
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

/* Review and approval (dark ledger-green section) */
.tnb-approval-section {
  background:
    radial-gradient(circle at 92% 8%, rgba(236, 196, 92, .1), transparent 34%),
    var(--tnb-forest);
  color: var(--tnb-white);
}

.tnb-approval-grid {
  align-items: center;
  display: grid;
  gap: 80px;
  grid-template-columns: 1fr .9fr;
}

.tnb-approval-section .tnb-section-heading {
  margin-bottom: 32px;
}

.tnb-approval-section .tnb-section-heading > span {
  color: #8fdcb6;
}

.tnb-approval-section .tnb-section-heading h2 {
  color: var(--tnb-white);
}

.tnb-approval-section .tnb-section-heading p {
  color: #c2d9cc;
}

.tnb-approval-list {
  display: grid;
  gap: 22px;
}

.tnb-approval-item {
  display: grid;
  gap: 14px;
  grid-template-columns: auto 1fr;
}

.tnb-approval-item > i {
  background: rgba(143, 220, 182, .16);
  border: 1px solid rgba(143, 220, 182, .35);
  border-radius: 50%;
  color: #8fdcb6;
  display: grid;
  font-size: 12px;
  font-style: normal;
  height: 28px;
  place-items: center;
  width: 28px;
}

.tnb-approval-item h3 {
  color: var(--tnb-white);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.22;
  margin: 0 0 5px;
}

.tnb-approval-item p {
  color: #c2d9cc;
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

.tnb-budget-card {
  background: var(--tnb-white);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 16px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, .24);
  color: var(--tnb-ink);
  overflow: hidden;
}

.tnb-budget-top,
.tnb-ratecard-top {
  align-items: center;
  border-bottom: 1px solid var(--tnb-line);
  display: flex;
  justify-content: space-between;
  padding: 22px 24px;
}

.tnb-budget-top strong,
.tnb-ratecard-top strong {
  color: var(--tnb-ink);
  font-size: 18px;
}

.tnb-budget-rows {
  padding: 10px 24px 20px;
}

.tnb-budget-row {
  padding: 14px 0 0;
}

.tnb-budget-row-head {
  align-items: baseline;
  display: flex;
  justify-content: space-between;
  margin-bottom: 7px;
}

.tnb-budget-row-head strong {
  color: var(--tnb-ink);
  font-size: 13px;
}

.tnb-budget-row-head b {
  color: var(--tnb-green-deep);
  font-size: 11px;
  font-variant-numeric: tabular-nums;
  font-weight: 700;
}

.tnb-budget-row-head b.tnb-budget-over {
  color: #b0611f;
}

.tnb-budget-bar {
  background: #e9f1ec;
  border-radius: 999px;
  height: 8px;
  overflow: hidden;
}

.tnb-budget-fill {
  background: var(--tnb-green);
  border-radius: 999px;
  display: block;
  height: 100%;
}

.tnb-budget-fill-a {
  width: 90%;
}

.tnb-budget-fill-b {
  background: linear-gradient(90deg, var(--tnb-green) 0 82%, #d9992e 82% 100%);
  width: 100%;
}

.tnb-budget-fill-c {
  width: 48%;
}

.tnb-budget-note {
  background: var(--tnb-mint-soft);
  color: var(--tnb-copy);
  font-size: 12px;
  line-height: 1.5;
  padding: 15px 24px;
}

/* Client invoicing */
.tnb-invoicing-section {
  background:
    radial-gradient(circle at 6% 8%, rgba(14, 122, 78, .07), transparent 28%),
    var(--tnb-cream);
}

.tnb-status-flow {
  align-items: stretch;
  background: var(--tnb-mint-soft);
  border: 1px solid #d3e6da;
  border-radius: 14px;
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  padding: 18px;
}

.tnb-status-flow > i {
  align-self: center;
  color: var(--tnb-green);
  font-size: 19px;
  font-style: normal;
}

.tnb-status-node {
  background: rgba(255, 255, 255, .9);
  border: 1px solid #d6e5db;
  border-radius: 10px;
  padding: 14px 15px;
}

.tnb-status-node strong,
.tnb-status-node span {
  display: block;
}

.tnb-status-node strong {
  color: var(--tnb-ink);
  font-size: 12px;
  margin-bottom: 4px;
}

.tnb-status-node span {
  color: var(--tnb-copy);
  font-size: 11px;
  line-height: 1.35;
}

.tnb-status-node-primary {
  background: var(--tnb-green);
  border-color: var(--tnb-green);
}

.tnb-status-node-primary strong {
  color: var(--tnb-white);
}

.tnb-status-node-primary span {
  color: #cdeeda;
}

.tnb-status-note {
  color: #6e8078;
  font-size: 12px;
  line-height: 1.5;
  margin: 14px auto 0;
  max-width: 850px;
  text-align: center;
}

.tnb-invoicing-grid {
  display: grid;
  gap: 18px;
  grid-auto-rows: 1fr;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 34px;
}

.tnb-invoicing-card {
  background: var(--tnb-white);
  border: 1px solid #d9e5dd;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(14, 54, 38, .055);
  padding: 27px;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.tnb-invoicing-card:hover {
  border-color: rgba(14, 122, 78, .42);
  box-shadow: 0 15px 34px rgba(14, 54, 38, .1);
  transform: translateY(-2px);
}

/* Proposals */
.tnb-proposals-section {
  background:
    radial-gradient(circle at 94% 90%, rgba(14, 122, 78, .07), transparent 30%),
    var(--tnb-white);
}

.tnb-proposals-grid {
  align-items: center;
  display: grid;
  gap: 80px;
  grid-template-columns: 1fr .9fr;
}

.tnb-proposals-copy .tnb-section-heading {
  margin-bottom: 32px;
}

.tnb-proposal-list {
  display: grid;
  gap: 22px;
}

.tnb-proposal-item {
  display: grid;
  gap: 14px;
  grid-template-columns: auto 1fr;
}

.tnb-proposal-item > i {
  background: var(--tnb-mint);
  border: 1px solid #bfe3d2;
  border-radius: 50%;
  color: var(--tnb-green-deep);
  display: grid;
  font-size: 12px;
  font-style: normal;
  height: 28px;
  place-items: center;
  width: 28px;
}

.tnb-proposal-item h3 {
  color: var(--tnb-ink);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.22;
  margin: 0 0 5px;
}

.tnb-proposal-item p {
  color: var(--tnb-copy);
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

.tnb-ratecard {
  background: var(--tnb-white);
  border: 1px solid #d5e2da;
  border-radius: 16px;
  box-shadow: 0 24px 60px rgba(14, 54, 38, .14);
  overflow: hidden;
}

.tnb-ratecard-rows {
  padding: 7px 24px;
}

.tnb-ratecard-row {
  align-items: center;
  border-bottom: 1px solid #e7efe9;
  display: grid;
  gap: 14px;
  grid-template-columns: auto 1fr auto;
  padding: 14px 0;
}

.tnb-ratecard-row:last-child {
  border-bottom: 0;
}

.tnb-ratecard-level {
  background: var(--tnb-mint);
  border: 1px solid #c2e4d2;
  border-radius: 8px;
  color: var(--tnb-green-deep);
  display: grid;
  font-size: 9px;
  font-weight: 800;
  height: 34px;
  letter-spacing: .04em;
  place-items: center;
  width: 34px;
}

.tnb-ratecard-row > div strong,
.tnb-ratecard-row > div span {
  display: block;
}

.tnb-ratecard-row > div strong {
  color: var(--tnb-ink);
  font-size: 13px;
  margin-bottom: 2px;
}

.tnb-ratecard-row > div span {
  color: #75887e;
  font-size: 10px;
  line-height: 1.35;
}

.tnb-ratecard-row > b {
  color: var(--tnb-ink);
  font-size: 13px;
  font-variant-numeric: tabular-nums;
  font-weight: 700;
}

.tnb-ratecard-note {
  background: var(--tnb-mint-soft);
  color: var(--tnb-copy);
  font-size: 12px;
  line-height: 1.5;
  padding: 15px 24px;
}

/* Final CTA */
.tnb-final-cta {
  background: linear-gradient(115deg, var(--tnb-green) 0%, var(--tnb-green-deep) 100%);
  color: var(--tnb-white);
  padding: 74px 0;
}

.tnb-final-cta-inner {
  align-items: center;
  display: grid;
  gap: 50px;
  grid-template-columns: 1fr auto;
}

.tnb-final-cta-inner > div > span {
  color: var(--tnb-gold);
}

.tnb-final-cta h2 {
  color: var(--tnb-white);
  font-size: clamp(34px, 4vw, 48px);
  margin-bottom: 12px;
  max-width: 780px;
}

.tnb-final-cta p {
  color: #d3ecdd;
  font-size: 17px;
  margin: 0;
}

.tnb-final-cta .tnb-actions {
  flex-wrap: nowrap;
  margin: 0;
}

.tnb-final-cta .tnb-button-primary {
  background: var(--tnb-white);
  color: var(--tnb-green-deep) !important;
}

.tnb-final-cta .tnb-button-primary:hover {
  background: var(--tnb-mint);
}

/* Sitemap accent */
.tnb-site .af-sitemap {
  --afsm-accent: #0e7a4e;
}

/* Compact brand footer */
.tnb-footer {
  background: #0c1a14;
  color: #9db5a8;
  padding: 48px 0 34px;
  position: static;
}

.tnb-footer-inner {
  display: grid;
  gap: 30px;
  grid-template-columns: 1fr auto;
}

.tnb-footer-brand img {
  filter: brightness(0) invert(1);
  height: 35px;
  opacity: .95;
  width: 158px;
}

.tnb-footer-brand p {
  font-size: 13px;
  margin: 12px 0 0;
}

.tnb-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.tnb-footer a {
  color: #d3e3da;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  text-transform: none;
}

.tnb-footer a:hover {
  color: var(--tnb-white);
}

.tnb-footer-legal {
  border-top: 1px solid rgba(255, 255, 255, .1);
  font-size: 11px;
  grid-column: 1 / -1;
  margin: 0;
  padding-top: 24px;
}

/* Responsive */
@media (max-width: 920px) {
  .tnb-container {
    padding-left: 22px;
    padding-right: 22px;
  }

  .tnb-header-links {
    display: none;
  }

  .tnb-header-inner {
    min-height: 70px;
  }

  .tnb-brand-auditfile {
    height: 29px;
    width: 131px;
  }

  .tnb-brand-divider {
    height: 27px;
  }

  .tnb-brand-product {
    font-size: 17px;
  }

  .tnb-hero {
    padding: 68px 0 64px;
  }

  .tnb-hero-grid,
  .tnb-approval-grid,
  .tnb-proposals-grid {
    grid-template-columns: 1fr;
  }

  .tnb-approval-grid,
  .tnb-proposals-grid {
    gap: 48px;
  }

  .tnb-hero-copy {
    max-width: 730px;
  }

  .tnb-product-stage {
    margin: 15px 0 0;
  }

  .tnb-proof-strip .tnb-container {
    gap: 24px;
    grid-template-columns: 1fr;
  }

  .tnb-proof-grid {
    border-top: 1px solid var(--tnb-line);
    grid-template-columns: repeat(2, 1fr);
    padding-top: 20px;
  }

  .tnb-proof-item:first-child,
  .tnb-proof-item:nth-child(3) {
    border-left: 0;
    padding-left: 0;
  }

  .tnb-section {
    padding: 76px 0;
  }

  .tnb-time-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .tnb-invoicing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .tnb-status-flow {
    grid-template-columns: 1fr;
  }

  .tnb-status-flow > i {
    justify-self: center;
    transform: rotate(90deg);
  }

  .tnb-final-cta-inner {
    grid-template-columns: 1fr;
  }

  .tnb-final-cta .tnb-actions {
    flex-wrap: wrap;
  }
}

@media (max-width: 600px) {
  .tnb-site {
    font-size: 16px;
  }

  .tnb-header-inner {
    gap: 12px;
  }

  .tnb-brand {
    gap: 8px;
  }

  .tnb-brand-auditfile {
    height: 26px;
    width: 117px;
  }

  .tnb-brand-divider,
  .tnb-header-login {
    display: none;
  }

  .tnb-brand-product {
    font-size: 15px;
  }

  .tnb-header-cta {
    border-radius: 7px;
    font-size: 13px;
    padding: 10px 12px;
  }

  .tnb-hero {
    padding-top: 53px;
  }

  .tnb-site h1 {
    font-size: 42px;
  }

  .tnb-lede {
    font-size: 18px;
  }

  .tnb-actions,
  .tnb-button {
    width: 100%;
  }

  .tnb-button {
    align-items: center;
  }

  .tnb-text-link {
    margin: 3px 0 0;
    text-align: center;
  }

  .tnb-product-stage:before {
    display: none;
  }

  .tnb-window-bar {
    grid-template-columns: 65px 1fr;
  }

  .tnb-window-bar > b {
    display: none;
  }

  .tnb-invoice {
    padding: 18px;
  }

  .tnb-invoice-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .tnb-invoice-meta {
    grid-template-columns: 1fr;
  }

  .tnb-invoice-foot span {
    display: none;
  }

  .tnb-proof-grid,
  .tnb-time-grid,
  .tnb-invoicing-grid {
    grid-template-columns: 1fr;
  }

  .tnb-proof-item,
  .tnb-proof-item:first-child,
  .tnb-proof-item:nth-child(3) {
    border-bottom: 1px solid var(--tnb-line);
    border-left: 0;
    padding: 13px 0;
  }

  .tnb-proof-item:last-child {
    border-bottom: 0;
  }

  .tnb-time-card {
    padding: 24px;
  }

  .tnb-budget-top,
  .tnb-ratecard-top {
    padding: 18px;
  }

  .tnb-budget-rows,
  .tnb-ratecard-rows {
    padding-left: 18px;
    padding-right: 18px;
  }

  .tnb-budget-note,
  .tnb-ratecard-note {
    padding: 14px 18px;
  }

  .tnb-ratecard-row > div span {
    display: none;
  }

  .tnb-final-cta {
    padding: 60px 0;
  }

  .tnb-final-cta .tnb-actions {
    width: 100%;
  }

  .tnb-footer-inner {
    grid-template-columns: 1fr;
  }

  .tnb-footer-links {
    gap: 15px 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .tnb-site *,
  .tnb-site *:before,
  .tnb-site *:after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
