

:root {
  --navy: #07182E;
  --navy-light: #0B1F3A;
  --gold: #B8862D;
  --gold-light: #C89A3D;
  --text-dark: #07182E;
  --text-gray: #5E6673;
  --border: #E8E8E8;
  --white: #FFFFFF;
  --bg-light: #FAFAFA;

  /* TrustGen / TZ palette */
  --tz-navy: var(--navy);
  --tz-navy-2: var(--navy-light);
  --tz-gold: var(--gold);
  --tz-gold-2: var(--gold-light);
  --tz-white: var(--white);
  --tz-surface: #f6f8fc;
  --tz-surface-2: #edf3f8;
  --tz-text: #304b63;
  --tz-muted: var(--text-gray);
  --tz-border: var(--border);
  --tz-shadow: 0 16px 40px rgba(15, 39, 68, 0.08);
  --tz-shadow-strong: 0 24px 70px rgba(15, 39, 68, 0.12);
  --tz-radius: 14px;

  --tz-container: 1450px;

  /* Home page legacy variables referenced by .home-hero styles */
  --home-ink: var(--tz-navy);
  --home-gold: var(--tz-gold);
  --home-muted: var(--tz-muted);
}



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

html{
  scroll-behavior:smooth;
}

html,
body{
  width:100%;
  overflow-x:hidden;
}

img{
  max-width:100%;
  display:block;
}


section{
  position:relative;
}

html, body { height: 100%; }
body {
  margin: 0;
  background:#ffffff;
  color:#304b63;
  font-family: Inter, sans-serif;
  line-height:1.7;

  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
::selection {
  background: rgba(199, 150, 63, 0.24);
  color: var(--tz-navy);
}
a { color: inherit; text-decoration: none; }
a:hover { color: var(--tz-navy); }
img { max-width: 100%; display: block; }
:focus-visible { outline: 2px solid rgba(199, 150, 63, 0.65); outline-offset: 3px; border-radius: 0.65rem; }

/* Public button focus parity (covers .btn-primary/.btn-gold/.btn-outline-primary variants) */
.btn:focus-visible,
.btn-primary:focus-visible,
.btn-gold:focus-visible,
.btn-outline-primary:focus-visible,
.btn-outline-primary:focus-visible,
a.btn:focus-visible,
button.btn:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(201, 164, 92, 0.55);
  outline-offset: 3px;
} 


.container {
  width: min(100% - 2rem, var(--tz-container));
  margin: 0 auto;
}

.tz-main { padding-bottom: 0; }

/* Section spacing utilities (required by homepage audit) */
.tg-section,
.tg-home-hero,
.tg-home-products,
.tg-home-services,
.tg-home-customers,
.tg-home-book-demo {
  padding-top: var(--section-space-desktop);
  padding-bottom: var(--section-space-desktop);
}

/* Home components (TrustGen) */
.tg-home-products,
.tg-home-services,
.tg-home-customers,
.tg-home-book-demo {
  overflow: clip;
}

/* Overlap/scroll safety */
*,
*::before,
*::after{
  box-sizing: border-box;
}



.tz-section--soft { background: linear-gradient(180deg, rgba(246, 248, 251, 0.97), rgba(238, 243, 248, 0.98)); }
.tz-section--dark { background: var(--tz-navy); color: var(--tz-white); }



/* =========================================
   TRUSTGEN EXECUTIVE HERO
========================================= */

/* =========================================
   TRUSTGEN EXECUTIVE HERO
========================================= */

.tg-hero{

    background:#fff;
    padding:120px 0 100px;
}



.tg-hero-grid{
    display:grid;
    grid-template-columns:58% 42%;
    gap:5rem;
    align-items:center;
}

.tg-eyebrow{
    display:block;
    color:#c7963f;
    font-size:.82rem;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:.14em;
    margin-bottom:30px;
}

.tg-hero-title{
    font-family:"Playfair Display",serif;
    font-size:clamp(5rem,8vw,7.5rem);
    line-height:.88;
    letter-spacing:-.06em;
    color:#0f172a;
    margin:0;
}

.tg-hero-description{
    margin-top:30px;
    max-width:650px;
    font-size:1.1rem;
    line-height:1.9;
    color:#64748b;
}

.tg-hero-actions{
    display:flex;
    gap:18px;
    margin-top:40px;
}

.tg-btn-primary{
    padding:18px 34px;
    border-radius:999px;
    background:#c7963f;
    color:#fff;
    font-weight:600;
}

.tg-btn-secondary{
    padding:18px 34px;
    border-radius:999px;
    border:1px solid #dbe2ea;
    color:#0f172a;
}

.tg-hero-stats{
    display:flex;
    gap:60px;
    margin-top:60px;
}

.tg-hero-stats strong{
    display:block;
    font-size:2rem;
    color:#0f172a;
}

.tg-hero-stats span{
    color:#64748b;
}

.tg-hero-visual{
    position:relative;
}

.tg-hero-visual img{
    width:100%;
    height:720px;
    object-fit:cover;
    border-radius:28px;
    box-shadow:0 40px 100px rgba(0,0,0,.12);
}

.tg-floating-card{
    position:absolute;
    bottom:40px;
    left:-50px;

    width:320px;

    background:#fff;

    padding:30px;

    border-radius:24px;

    box-shadow:0 30px 80px rgba(0,0,0,.12);
}

.tg-floating-card span{
    display:block;
    color:#c7963f;
    font-size:.8rem;
    text-transform:uppercase;
    letter-spacing:.12em;
    margin-bottom:15px;
}

.tg-floating-card h4{
    margin:10px 0;
    color:#111827;
}

.tg-floating-card p{
    margin-top:15px;
    color:#64748b;
}

@media(max-width:960px){

    .tg-hero-grid{
        grid-template-columns:1fr;
    }

    .tg-hero-title{
        font-size:4rem;
    }

    .tg-hero-stats{
        flex-wrap:wrap;
        gap:30px;
    }

    .tg-floating-card{
        position:relative;
        left:0;
        bottom:auto;
        width:100%;
        margin-top:20px;
    }

    .tg-hero-visual img{
        height:auto;
    }
}


.tg-btn-primary{
display:inline-flex;
align-items:center;
justify-content:center;
padding:18px 34px;
border-radius:999px;
background:#C79A3B;
color:#ffffff;
font-weight:600;
transition:.3s;
}

.tg-btn-primary:hover{
transform:translateY(-2px);
}

.tg-btn-secondary{
display:inline-flex;
align-items:center;
justify-content:center;
padding:18px 34px;
border-radius:999px;
border:1px solid #d8dce3;
color:#111111;
background:#ffffff;
}

.tg-hero-image{
    position:relative;
}

.tg-hero-image img{
    width:100%;
    height:720px;
    object-fit:cover;
    border-radius:24px;
    box-shadow:0 40px 100px rgba(0,0,0,.12);
}

/* ==========================================
TRUST BAR
========================================== */

.tg-metrics{
border-top:1px solid #eceff3;
border-bottom:1px solid #eceff3;
padding:60px 0;
background:#fff;
}

.tg-metrics-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:40px;
text-align:center;
}

.tg-metric-number{
font-size:3rem;
font-weight:700;
color:#111111;
}

.tg-metric-label{
margin-top:10px;
color:#697281;
}

/* ==========================================
MOBILE
========================================== */

@media(max-width:960px){
.tg-hero-grid{
    grid-template-columns:1fr;
    gap:50px;
}

.tg-hero-title{
    font-family:"Playfair Display",serif;
    font-size:clamp(5rem,8vw,7.5rem);
    line-height:.88;
    letter-spacing:-0.06em;
    color:#0f172a;
    max-width:700px;
    margin:0;
}

.tg-metrics-grid{
    grid-template-columns:1fr 1fr;
}

}

@media(max-width:640px){

.tg-hero{
    min-height:auto;
    padding:60px 0;
}

.tg-hero-title{
    font-size:2.8rem;
}

.tg-metrics-grid{
    grid-template-columns:1fr;
}

.tg-hero-actions{
    flex-direction:column;
}

.tg-btn-primary,
.tg-btn-secondary{
    width:100%;
}
}


.tz-trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.3rem;
}
.tz-trust-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.11);
  border: 1px solid rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.92);
  font-size: 0.92rem;
}

.tz-section-header {
  max-width: 45rem;
  margin-bottom: 2rem;
}
.tz-section-header h2, .tz-section-header h3, .tz-cta-panel h2, .tz-framework-copy h2, .tz-service-section h2 {
  margin: 0 0 0.7rem;
  color: var(--tz-navy);
  font-size: clamp(1.56rem, 2vw, 2.08rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.tz-section-header p, .tz-framework-copy p, .tz-cta-panel p, .tz-service-section p, .tz-service-section li, .tz-panel p, .tz-panel li, .tz-list {
  color: var(--tz-muted);
  line-height: 1.75;
  margin: 0;
}
.tz-section-kicker, .tz-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--tz-gold);
  margin: 0 0 0.75rem;
}
.tz-eyebrow::before, .tz-section-kicker::before {
  content: "";
  width: 0.62rem;
  height: 0.62rem;
  border-radius: 999px;
  background: rgba(201, 164, 92, 0.25);
  box-shadow: 0 0 0 0.35rem rgba(201, 164, 92, 0.1);
}

.tz-grid-2, .tz-grid-3, .tz-card-grid { display: grid; gap: 1rem; }
.tz-grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.tz-grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.tz-card-grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.tz-card-grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.tz-panel, .tz-surface, .tz-surface-strong, .tz-card, .tz-service-highlight {
  background: var(--tz-white);
  border: 1px solid rgba(221, 229, 238, 0.95);
  border-radius: var(--tz-radius);
  box-shadow: 0 14px 36px rgba(15, 39, 68, 0.06);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
  animation: fadeUp 0.7s ease both;
}
.tz-panel { padding: 1.35rem; }
.tz-panel:hover,
.tz-process-item:hover,
.tz-cta-panel:hover,
.tz-service-highlight:hover {
  transform: translateY(-4px);
  box-shadow: var(--tz-shadow-strong);
  border-color: rgba(201, 164, 92, 0.28);
}
.tz-panel--soft { background: linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%); }
.tz-panel--strong { background: linear-gradient(135deg, #f3f6fb 0%, #eef3f8 100%); }
.tz-surface-strong { background: var(--tz-surface-2); border-color: #dfe7ef; }
.tz-panel h3, .tz-card h3, .tz-service-highlight h3 { margin: 0 0 0.55rem; color: var(--tz-navy); font-size: 1.08rem; }
.tz-panel--strong h3, .tz-panel--strong p { color: var(--tz-navy); }
.tz-card-link { text-decoration: none; }
.tz-card-meta { margin-top: 0.9rem; }

.tz-stack { display: grid; gap: 1rem; }
.tz-stack--tight { gap: 0.75rem; }
.tz-inline-list { display: flex; flex-wrap: wrap; gap: 0.7rem; padding: 0; margin: 1.2rem 0 0; list-style: none; }
.tz-inline-list li {
  padding: 0.46rem 0.8rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.9);
  font-size: 0.95rem;
  border: 1px solid rgba(255,255,255,0.1);
}

.tz-two-column { display: grid; grid-template-columns: 1.02fr 0.98fr; gap: 1.3rem; align-items: start; }
.tz-framework-shell { display: grid; gap: 1.3rem; grid-template-columns: 0.95fr 1.05fr; align-items: start; }
.tz-process-list { display: grid; gap: 0.9rem; }
.tz-process-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  align-items: start;
  padding: 0.95rem 1rem;
  background: var(--tz-white);
  border: 1px solid var(--tz-border);
  border-radius: 1rem;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
  animation: fadeUp 0.8s ease both;
}
.tz-process-item span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: rgba(201, 164, 92, 0.16);
  color: var(--tz-gold);
  font-weight: 700;
}
.tz-check-list { list-style: none; padding: 0; margin: 0.8rem 0 0; display: grid; gap: 0.55rem; }
.tz-check-list li { position: relative; padding-left: 1rem; color: var(--tz-text); }
.tz-check-list li::before { content: "•"; position: absolute; left: 0; color: var(--tz-gold); }
.tz-list { padding-left: 1.1rem; display: grid; gap: 0.55rem; color: var(--tz-text); }
.tz-list--numbered { padding-left: 1.2rem; }
.tz-actions { display: flex; gap: 0.8rem; flex-wrap: wrap; align-items: center; margin-top: 1.3rem; }
.tz-actions--stack { margin-top: 0; }
.tz-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.78rem 1.2rem;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
  animation: fadeUp 0.9s ease both;
}
.tz-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 26px rgba(15, 39, 68, 0.12); }
.tz-btn-primary {
  background: linear-gradient(135deg, var(--tz-gold) 0%, var(--tz-gold-2) 100%);
  color: var(--tz-navy);
  border-color: rgba(199, 150, 63, 0.2);
}
.tz-btn-primary:hover { background: linear-gradient(135deg, #d4a951 0%, #e6bf77 100%); color: var(--tz-navy); }
.tz-btn-ghost {
  background: rgba(255,255,255,0.08);
  color: var(--tz-white);
  border-color: rgba(255,255,255,0.3);
}
.tz-btn-ghost:hover { background: rgba(255,255,255,0.15); color: var(--tz-white); }
.tz-btn-ghost--dark {
  background: #f7fafd;
  color: var(--tz-navy);
  border-color: rgba(15, 39, 68, 0.12);
}
.tz-btn-ghost--dark:hover { background: #eef4f9; color: var(--tz-navy); }
.tz-btn-full { width: 100%; }
.tz-cta-panel {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.2rem;
  padding: 1.5rem 1.6rem;
  background: linear-gradient(120deg, rgba(201, 164, 92, 0.16), rgba(248, 250, 252, 0.95));
  border: 1px solid rgba(201, 164, 92, 0.22);
  border-radius: var(--tz-radius);
  box-shadow: var(--tz-shadow);
  animation: fadeUp 0.75s ease both;
}
.tz-cta-panel h2, .tz-cta-panel p { color: var(--tz-navy); }


.tz-site-header.is-scrolled {
  background: rgba(255,255,255,0.98);
  box-shadow: 0 12px 34px rgba(15, 39, 68, 0.09);
  border-color: rgba(201, 164, 92, 0.16);
}
.tz-nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 5.4rem;
}
.tz-nav-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.35rem 0;
}
.tz-nav-brand img { height: 5rem; width: auto; }
.tz-nav-links { display: flex; align-items: center; gap: 0.25rem; }
.tz-nav-link {
  padding: 0.52rem 0.8rem;
  border-radius: 999px;
  font-weight: 600;
  color: var(--tz-navy);
  transition: color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}
.tz-nav-link:hover {
  color: var(--tz-navy);
  background: rgba(199, 150, 63, 0.12);
  transform: translateY(-1px);
}
.tz-nav-link--cta {
  background: linear-gradient(135deg, var(--tz-gold) 0%, var(--tz-gold-2) 100%);
  color: var(--tz-navy);
  border: 1px solid rgba(199, 150, 63, 0.2);
  box-shadow: 0 10px 26px rgba(199, 150, 63, 0.16);
}
.tz-nav-dropdown { position: relative; }
.tz-nav-submenu {
  position: absolute;
  top: calc(100% + 0.55rem);
  left: 0;
  min-width: 13rem;
  padding: 0.45rem;
  display: none;
  background: rgba(255,255,255,0.98);
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: 1rem;
  box-shadow: var(--tz-shadow-strong);
}
.tz-nav-submenu a { display: block; padding: 0.58rem 0.65rem; border-radius: 0.75rem; color: var(--tz-muted); }
.tz-nav-submenu a:hover { background: rgba(201, 164, 92, 0.12); color: var(--tz-navy); }
.tz-nav-dropdown:hover .tz-nav-submenu { display: block; }
.mobile-nav-toggle { display: none; background: transparent; border: 1px solid var(--tz-border); color: var(--tz-navy); border-radius: 0.8rem; padding: 0.5rem 0.65rem; }
.mobile-menu {
  position: fixed;
  inset: 0;
  padding: 6rem 1rem 2rem;
  background: rgba(255,255,255,0.98);
  z-index: 60;
  overflow: auto;
}
.mobile-menu-inner { max-width: 36rem; }
.mobile-menu-grid { display: grid; gap: 1.2rem; grid-template-columns: repeat(2, minmax(0, 1fr)); margin-bottom: 1.2rem; }
.mobile-section-title { color: var(--tz-gold); font-size: 0.74rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 0.65rem; }
.mobile-menu a { display: block; padding: 0.4rem 0; color: var(--tz-navy); }
body.mobile-nav-active { overflow: hidden; }

.tz-form { display: grid; gap: 1rem; }
.tz-form-grid { display: grid; gap: 1rem; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.tz-form label { display: block; margin-bottom: 0.45rem; font-weight: 600; color: var(--tz-navy); }
.tz-form input,
.tz-form select,
.tz-form textarea {
  width: 100%;
  border: 1px solid var(--tz-border);
  border-radius: 0.8rem;
  background: var(--tz-white);
  color: var(--tz-text);
  padding: 0.8rem 0.95rem;
  font: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.tz-form input:focus,
.tz-form select:focus,
.tz-form textarea:focus { outline: none; border-color: rgba(201, 164, 92, 0.5); box-shadow: 0 0 0 3px rgba(201, 164, 92, 0.16); }


.tz-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(201, 164, 92, 0.16), transparent 30%);
  pointer-events: none;
}
.tz-footer-shell { display: grid; gap: 1.35rem; position: relative; z-index: 1; }
.tz-footer-grid { display: grid; grid-template-columns: 1.2fr 0.8fr 0.8fr 1fr; gap: 1.3rem; }
.tz-footer-logo,
.tz-footer-brand img,
.tz-footer-logo img {
  display: block;
  width: 220px;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  margin-bottom: 20px;
  filter: none;
  opacity: 1;
  visibility: visible;
}

.tz-footer-logo--white {
  /* asset is already light; keep explicit for clarity */
  filter: none;
}
.tz-footer-copy { max-width: 24rem; color: rgba(255,255,255,0.78); margin-top: 0.95rem; }
.tz-footer h4 { margin: 0 0 0.8rem; color: var(--tz-white); font-size: 1rem; }
.tz-footer-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.55rem; }
.tz-footer-list a { color: rgba(255,255,255,0.76); transition: color 0.2s ease, transform 0.2s ease; }
.tz-footer-list a:hover { color: var(--tz-white); transform: translateX(2px); }
.tz-footer-cta {
  padding: 1.1rem 1.2rem;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 1rem;
  background: rgba(255,255,255,0.06);
}
.tz-footer-cta strong { color: var(--tz-white); display: block; margin-bottom: 0.35rem; }
.tz-footer-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding-top: 1.15rem;
  border-top: 1px solid rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.76);
  flex-wrap: wrap;
}
.tz-footer-legal { display: flex; gap: 0.8rem; flex-wrap: wrap; }
.tz-skip-link { position: absolute; left: -999px; top: 1rem; background: var(--tz-navy); color: var(--tz-white); padding: 0.65rem 0.9rem; border-radius: 0.5rem; z-index: 100; }
.tz-skip-link:focus { left: 1rem; }

.tz-layout { display: grid; gap: 1.5rem; grid-template-columns: 16rem minmax(0, 1fr); padding: 2.2rem 0 0; }
.tz-service-sidebar { position: sticky; top: 5.8rem; align-self: start; }
.tz-service-sidebar-inner { padding: 1.05rem; background: var(--tz-white); border: 1px solid var(--tz-border); border-radius: var(--tz-radius); box-shadow: var(--tz-shadow); }
.tz-service-sidebar-title { font-weight: 700; color: var(--tz-navy); margin-bottom: 0.8rem; }
.tz-service-sidebar-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.3rem; }
.tz-service-sidebar-link { display: block; padding: 0.5rem 0.6rem; border-radius: 0.7rem; color: var(--tz-muted); transition: background-color 0.2s ease, color 0.2s ease; }
.tz-service-sidebar-link:hover { background: rgba(201, 164, 92, 0.12); color: var(--tz-navy); }
.tz-service-content { display: grid; gap: 0.2rem; }
.tz-service-hero { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 1.25rem; padding: 1.2rem 0 1.6rem; }
.tz-service-highlight { padding: 1.2rem; }
.tz-service-highlight img { margin-top: 1rem; border-radius: 0.9rem; border: 1px solid var(--tz-border); }
.tz-service-section { padding: 1rem 0 1.2rem; border-bottom: 1px solid var(--tz-border); }
.tz-service-section:last-of-type { border-bottom: 0; }
.tz-faq-block { display: grid; gap: 0.8rem; color: var(--tz-muted); }
.tz-faq-block strong { color: var(--tz-navy); }
.tz-media { overflow: hidden; border-radius: 1rem; border: 1px solid var(--tz-border); }
.tz-media img { width: 100%; height: auto; }
.tz-section-spotlight {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1.4rem;
  align-items: center;
}
.tz-feature-visual {
  position: relative;
  padding: 1.2rem;
  border-radius: 1.3rem;
  background: linear-gradient(135deg, rgba(15, 39, 68, 0.98), rgba(30, 58, 95, 0.96));
  box-shadow: var(--tz-shadow-strong);
  overflow: hidden;
}
.tz-feature-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201, 164, 92, 0.16), transparent 40%);
  pointer-events: none;
}
.tz-feature-visual img {
  border-radius: 1rem;
  border: 1px solid rgba(255,255,255,0.14);
  position: relative;
  z-index: 1;
}
.tz-feature-card {
  margin-top: 1rem;
  padding: 1rem 1.05rem;
  border-radius: 1rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  position: relative;
  z-index: 1;
}
.tz-feature-card p, .tz-feature-card strong { color: var(--tz-white); }
.tz-feature-list { display: grid; gap: 0.8rem; margin-top: 1rem; }
.tz-feature-list-item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.8rem 0.9rem;
  border-radius: 0.95rem;
  background: var(--tz-white);
  border: 1px solid var(--tz-border);
  color: var(--tz-text);
}
.tz-feature-list-item::before {
  content: "";
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 999px;
  background: var(--tz-gold);
  flex-shrink: 0;
}
.tz-service-hero--retirement { background: linear-gradient(135deg, rgba(201, 164, 92, 0.12), rgba(248, 250, 252, 0.95)); }
.tz-service-hero--pf { background: linear-gradient(135deg, rgba(15, 39, 68, 0.08), rgba(248, 250, 252, 0.95)); }
.tz-service-hero--payroll { background: linear-gradient(135deg, rgba(201, 164, 92, 0.08), rgba(239, 243, 248, 0.95)); }

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================
   Book Demo form UX
========================= */

/* Loading UX specs (no layout shift, fixed button width) */
#bookDemoSubmitBtn {
  /* Prevent layout shift during content swap */
  min-width: 260px;
  min-height: 46px;
  transition: none;
}

#bookDemoSubmitBtn:disabled {
  opacity: 1;
}

/* Loading state (spec-compliant) */
#bookDemoSubmitBtn .btn-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  white-space: nowrap;
  flex-wrap: nowrap;
}

#bookDemoSubmitBtn .spinner {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.35);
  border-top-color: rgba(255,255,255,1);
  animation: bookdemoSpin 0.8s linear infinite;
  flex: 0 0 16px;
  display: inline-block;
}

#bookDemoSubmitBtn .btn-loading__text {
  display: inline-block;
  font-weight: 900;
  line-height: 1;
}

/* Ensure hover/transition animations are disabled while loading */
#bookDemoSubmitBtn.bookdemo-btn--loading {
  cursor: not-allowed !important;
  pointer-events: none;
}

#bookDemoSubmitBtn.bookdemo-btn--loading:hover {
  transform: none;
  box-shadow: none;
}

/* Inline error styling */
.bookdemo-inline-error {
  color: #b01212;
  font-weight: 800;
  background: rgba(220, 38, 38, 0.10);
  border: 1px solid rgba(220, 38, 38, 0.18);
  padding: 12px 14px;
  border-radius: 12px;
  box-shadow: 0 10px 26px rgba(220, 38, 38, 0.08);
}

.bookdemo-btn__spinner {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.35);
  border-top-color: rgba(255,255,255,1);
  display: none;
  animation: bookdemoSpin 0.8s linear infinite;
}



@keyframes bookdemoSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.bookdemo-btn__loading-text {
  display: none;
  font-weight: 900;
}

.bookdemo-btn__content {
  display: inline;
}

.bookdemo-btn--loading {
  cursor: wait !important;
  pointer-events: none;
}

.bookdemo-btn--loading .bookdemo-btn__content {
  display: none;
}

.bookdemo-btn--loading .bookdemo-btn__spinner {
  display: inline-block;
}

.bookdemo-btn--loading .bookdemo-btn__loading-text {
  display: inline;
}

#bookDemoSubmitBtn {
  /* Prevent layout shift during content swap */
  min-width: 260px;
}

#bookDemoSubmitBtn:disabled {
  opacity: 1;
}

/* Keep button layout stable while loading */
.bookdemo-btn--loading {
  cursor: wait;
  pointer-events: none;
}

.bookdemo-btn__spinner {
  vertical-align: middle;
}

/* Ensure the button content doesn't change width */
.bookdemo-btn__content,
.bookdemo-btn__loading-text {
  display: inline-block;
  min-width: 180px;
  text-align: center;
}

.bookdemo-btn--loading .bookdemo-btn__content {
  display: none;
}

.bookdemo-btn--loading .bookdemo-btn__loading-text {
  display: inline-block;
}

/* Inline subtle link for assistance */
a.subtle-link {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}


.bookdemo-result {
  width: 100%;
}

.bookdemo-card {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  padding: 18px;
  border-radius: 18px;
  border: 1px solid rgba(221, 229, 238, 0.95);
  box-shadow: 0 14px 36px rgba(15, 39, 68, 0.08);
  transform-origin: center;
}

.bookdemo-card--success {
  background: linear-gradient(135deg, rgba(22, 163, 74, 0.12), rgba(255,255,255,0.98));
  animation: bookdemoSuccessIn 0.28s ease both;
}

@keyframes bookdemoSuccessIn {
  from { opacity: 0; transform: scale(0.98); }
  to { opacity: 1; transform: scale(1); }
}

.bookdemo-card--error {
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.10), rgba(255,255,255,0.98));
  animation: bookdemoErrorIn 0.24s ease both;
}

@keyframes bookdemoErrorIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.bookdemo-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  margin-bottom: 10px;
}

.bookdemo-icon {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-weight: 1000;
}

.bookdemo-icon--success {
  background: rgba(22, 163, 74, 0.18);
  color: #0f7a33;
}

.bookdemo-icon--error {
  background: rgba(220, 38, 38, 0.14);
  color: #b01212;
}

.bookdemo-card__title {
  margin: 0;
  font-size: 1.12rem;
  color: var(--tz-navy);
}

.bookdemo-card__message {
  margin: 8px 0 0;
  color: var(--tz-muted);
  line-height: 1.7;
}

.bookdemo-card__footer {
  margin-top: 14px;
}

.bookdemo-expected {
  color: var(--tz-navy);
  font-weight: 700;
  margin-bottom: 10px;
}

.bookdemo-card__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.bookdemo-card__actions .btn {
  flex: 1 1 auto;
}

.field--invalid input,
.field--invalid select,
.field--invalid textarea {
  border-color: rgba(220, 38, 38, 0.55) !important;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.14) !important;
}

.field--invalid .error {
  display: block;
}

@media (max-width: 640px) {
  .bookdemo-card__actions .btn {
    width: 100%;
  }
}


@keyframes floatGlow {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-6px); }
}

.tz-hero-copy,
.tz-hero-media,
.tz-section-header,
.tz-hero-note,
.tz-cta-panel,
.tz-service-highlight,
.tz-service-section,
.tz-footer-grid > div {
  animation: fadeUp 0.8s ease both;
}
.tz-hero-media { animation-name: floatGlow; animation-duration: 3.4s; animation-iteration-count: infinite; }

.tz-clients-hero {
  background: linear-gradient(135deg, #081b33 0%, #11304f 55%, #1a4470 100%);
  color: var(--tz-white);
  padding: 4.5rem 0 4rem;
}
.tz-clients-hero__wrap {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  align-items: center;
}
.tz-clients-hero__content h1 {
  color: var(--tz-white);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1.08;
  margin: 0 0 1rem;
  max-width: 700px;
}
.tz-clients-hero__lead {
  color: rgba(255,255,255,0.82);
  font-size: 1.08rem;
  max-width: 700px;
  margin: 0 0 1.4rem;
}
.tz-clients-hero__content .tz-trust-strip {
  margin-top: 1.25rem;
}
.tz-clients-hero__content .tz-trust-strip li {
  background: rgba(255,255,255,0.13);
  border: 1px solid rgba(255,255,255,0.16);
  color: rgba(255,255,255,0.95);
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  list-style: none;
  font-size: 0.92rem;
}
.tz-clients-hero__media {
  position: relative;
  min-height: 420px;
  border-radius: 2rem;
  overflow: hidden;
  background: linear-gradient(140deg, rgba(255,255,255,0.18), rgba(255,255,255,0.04));
  border: 1px solid rgba(255,255,255,0.16);
  box-shadow: 0 20px 70px rgba(0,0,0,0.18);
}
.tz-hero-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(6px);
  opacity: 0.65;
}
.tz-hero-orb--one {
  width: 220px;
  height: 220px;
  background: rgba(201, 164, 92, 0.24);
  top: -30px;
  right: 40px;
}
.tz-hero-orb--two {
  width: 180px;
  height: 180px;
  background: rgba(255,255,255,0.16);
  bottom: -30px;
  left: -20px;
}
.tz-clients-card {
  position: absolute;
  background: rgba(255,255,255,0.94);
  color: var(--tz-navy);
  padding: 0.95rem 1rem;
  border-radius: 1rem;
  box-shadow: 0 16px 40px rgba(7,24,46,0.16);
  display: grid;
  gap: 0.25rem;
  z-index: 2;
}
.tz-clients-card strong { font-size: 0.95rem; }
.tz-clients-card span { font-size: 0.84rem; color: var(--tz-muted); }
.tz-clients-card--top { top: 2.4rem; left: 1.5rem; }
.tz-clients-card--bottom { bottom: 2rem; right: 1.5rem; }
.tz-clients-illustration {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.tz-illustration-panel {
  width: min(100%, 320px);
  padding: 1.1rem;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 1.4rem;
  backdrop-filter: blur(10px);
}
.tz-illustration-panel__label { display: block; color: var(--tz-white); font-weight: 700; margin-bottom: 1rem; }
.tz-illustration-line {
  height: 0.82rem;
  border-radius: 999px;
  margin-bottom: 0.7rem;
  background: linear-gradient(90deg, rgba(201,164,92,0.9), rgba(255,255,255,0.4));
}
.tz-illustration-line--short { width: 74%; }
.tz-client-logo-wall {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.tz-logo-card {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 1.1rem 1.2rem;
  background: var(--tz-white);
  border: 1px solid rgba(221,229,238,0.95);
  border-radius: 1rem;
  box-shadow: 0 12px 30px rgba(15,39,68,0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}
.tz-logo-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(15,39,68,0.1);
  filter: grayscale(0%);
}
.tz-logo-card__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 0.9rem;
  background: linear-gradient(135deg, rgba(201,164,92,0.18), rgba(15,39,68,0.08));
  color: var(--tz-navy);
  font-weight: 800;
}
.tz-grid-4 {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.tz-icon-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  background: rgba(201,164,92,0.16);
  color: var(--tz-gold);
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
}
.tz-icon-pill--large { width: 3.4rem; height: 3.4rem; font-size: 1.3rem; }
.tz-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.7rem;
  margin-top: 1rem;
}
.tz-timeline__line {
  position: absolute;
  top: 1.4rem;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, rgba(201,164,92,0.3), rgba(201,164,92,0.7));
}
.tz-timeline__item {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 0.7rem;
}
.tz-timeline__dot {
  width: 1.1rem;
  height: 1.1rem;
  border-radius: 999px;
  background: var(--tz-gold);
  box-shadow: 0 0 0 0.3rem rgba(201,164,92,0.16);
}
.tz-timeline__card {
  padding: 0.8rem 0.9rem;
  border-radius: 0.95rem;
  background: var(--tz-white);
  border: 1px solid var(--tz-border);
  box-shadow: 0 12px 30px rgba(15,39,68,0.06);
  text-align: center;
  min-width: 100%;
}
.tz-highlight-card {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1rem;
  align-items: center;
  padding: 1.25rem 1.3rem;
  border-radius: 1.25rem;
  background: linear-gradient(120deg, #ffffff 0%, #f7f9fc 100%);
  border: 1px solid rgba(221,229,238,0.95);
  box-shadow: 0 14px 36px rgba(15,39,68,0.06);
}
.tz-highlight-card__visual {
  position: relative;
  min-height: 180px;
  border-radius: 1rem;
  background: linear-gradient(135deg, rgba(15,39,68,0.96), rgba(26,68,112,0.96));
  overflow: hidden;
}
.tz-highlight-card__shape {
  position: absolute;
  inset: 1rem auto auto 1rem;
  width: 70px;
  height: 70px;
  border-radius: 1rem;
  background: rgba(201,164,92,0.28);
}
.tz-highlight-card__shape--accent {
  inset: auto 1rem 1rem auto;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
}
.tz-stat-card {
  padding: 1.25rem;
  border-radius: 1.15rem;
  background: var(--tz-white);
  border: 1px solid rgba(221,229,238,0.95);
  box-shadow: 0 14px 36px rgba(15,39,68,0.06);
  text-align: center;
}
.tz-stat-card__value {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--tz-navy);
}
.tz-faq-list { display: grid; gap: 0.8rem; }
.tz-faq-item {
  border: 1px solid rgba(221,229,238,0.95);
  border-radius: 1rem;
  background: var(--tz-white);
  box-shadow: 0 12px 30px rgba(15,39,68,0.05);
  overflow: hidden;
}
.tz-faq-item__button {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.1rem;
  border: 0;
  background: transparent;
  font: inherit;
  text-align: left;
  color: var(--tz-navy);
  cursor: pointer;
}
.tz-faq-item__icon { font-size: 1.3rem; color: var(--tz-gold); }
.tz-faq-item__panel { padding: 0 1.1rem 1rem; color: var(--tz-muted); }
.tz-cta-panel--premium {
  flex-direction: column;
  align-items: flex-start;
  background: linear-gradient(120deg, rgba(201,164,92,0.16), rgba(248,250,252,0.95));
  padding: 1.8rem;
}
.fade-up, .fade-right {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-right { transform: translateX(18px); }
.fade-up.visible, .fade-right.visible { opacity: 1; transform: translate(0, 0); }

@media (max-width: 960px) {
  .tz-hero-grid, .tz-grid-2, .tz-grid-3, .tz-card-grid-3, .tz-card-grid-2, .tz-framework-shell, .tz-service-hero, .tz-footer-grid, .tz-form-grid, .tz-two-column { grid-template-columns: 1fr; }
  .tz-cta-panel { flex-direction: column; align-items: flex-start; }
  .tz-layout { grid-template-columns: 1fr; }
  .tz-service-sidebar { position: static; }
  .tz-clients-hero__wrap { grid-template-columns: 1fr; }
  .tz-clients-hero__media { min-height: 320px; }
}

@media (max-width: 900px) {
  .tz-grid-4, .tz-client-logo-wall, .tz-timeline { grid-template-columns: 1fr 1fr; }
  .tz-highlight-card { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .tz-client-logo-wall, .tz-grid-4, .tz-timeline { grid-template-columns: 1fr; }
  .tz-timeline__line { display: none; }
  .tz-clients-hero { padding: 3.4rem 0 3rem; }
  .tz-cta-panel--premium { padding: 1.2rem; }
}

@media (max-width: 760px) {
  .tz-topbar { display: none; }
  .tz-nav-links { display: none; }
  .mobile-nav-toggle { display: inline-flex; }
  .tz-hero { padding-top: 3.2rem; }
  .tz-section { padding: 3.3rem 0; }
  .mobile-menu-grid { grid-template-columns: 1fr; }
  .tz-nav-shell { min-height: 4.8rem; }
  .tz-trust-strip { gap: 0.55rem; }
  .tz-trust-pill { font-size: 0.86rem; }
  .tz-hero-metrics { grid-template-columns: 1fr; }
  .tz-actions { width: 100%; }
  .tz-actions .tz-btn { width: 100%; }
}

/* =========================================================
   TZ NEW NAV (navbar_bootstrap.html)
   The current navbar uses `.tz-nav*` + `#tzMobileMenu`.
   Add missing styling so the nav is not unstyled.
========================================================= */

.tz-nav {
  position: sticky;
  top: 0;
  z-index: 60;
  width: 100%;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(221, 229, 238, 0.9);
  backdrop-filter: blur(16px);
}

.tz-nav .container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
}

.tz-nav-brand {
  display: inline-flex;
  align-items: center;
}

.tz-nav-brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  object-fit: contain;
}

.tz-nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.tz-nav-links {
  display: flex;
  align-items: center;
  gap: 10px;
}

.tz-nav-link {
  display: inline-flex;
  align-items: center;
  padding: 10px 12px;
  border-radius: 999px;
  font-weight: 700;
  color: var(--tz-navy);
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.tz-nav-link:hover {
  background: rgba(201, 164, 92, 0.12);
  color: var(--tz-navy);
  transform: translateY(-1px);
}

.tz-nav-link.active {
  background: rgba(201, 164, 92, 0.18);
}

.tz-nav-link--ghost {
  color: var(--tz-navy);
  border: 1px solid rgba(15, 39, 68, 0.12);
}

.tz-nav-link--ghost:hover {
  border-color: rgba(201, 164, 92, 0.35);
  background: rgba(201, 164, 92, 0.12);
}

.tz-nav-link--cta {
  background: linear-gradient(90deg, var(--tz-gold) 0%, var(--tz-gold-2) 100%);
  color: var(--tz-navy);
  border: 1px solid rgba(199, 150, 63, 0.2);
  box-shadow: 0 10px 26px rgba(199, 150, 63, 0.16);
  padding: 10px 16px;
}

.tz-nav-link--cta:hover {
  filter: brightness(0.98);
}

/* Desktop Services dropdown mega panel */
.tz-nav-dropdown {
  position: relative;
}

.tz-nav-mega {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  min-width: 560px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: 16px;
  box-shadow: var(--tz-shadow-strong);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.tz-nav-dropdown.open .tz-nav-mega,
.tz-nav-dropdown:hover .tz-nav-mega,
.tz-nav-dropdown:focus-within .tz-nav-mega {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  display: block;
}

.tz-nav-mega-inner {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 18px;
  align-items: start;
}

.tz-nav-mega-col {
  display: grid;
  gap: 8px;
}

.tz-nav-mega-item {
  display: block;
  padding: 10px 12px;
  border-radius: 12px;
  font-weight: 700;
  color: var(--tz-text);
}

.tz-nav-mega-item:hover {
  background: rgba(201, 164, 92, 0.12);
  color: var(--tz-navy);
}

.tz-nav-mega-aside {
  padding: 14px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(15, 39, 68, 0.04), rgba(201, 164, 92, 0.08));
}

.tz-nav-mega-badge {
  display: inline-block;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(201, 164, 92, 0.12);
  color: var(--tz-gold);
  font-weight: 800;
  font-size: 0.85rem;
  margin-bottom: 10px;
}

.tz-nav-mega-aside-title {
  font-weight: 900;
  color: var(--tz-navy);
  margin-bottom: 6px;
}

.tz-nav-mega-aside-sub {
  color: var(--tz-muted);
  font-weight: 600;
  line-height: 1.5;
}

.tz-nav-caret {
  font-size: 0.75rem;
  margin-left: 6px;
}

/* Mobile menu (tz-nav.js toggles #tzMobileMenu.open) */
.mobile-nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--tz-border);
  color: var(--tz-navy);
  border-radius: 0.9rem;
  padding: 10px 14px;
  font-weight: 800;
}

.tz-mobile-menu {
  display: none;
}

.tz-mobile-menu.open {
  display: block;
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(7, 24, 46, 0.18);
}

.tz-mobile-menu.open .container {
  margin: 0 auto;
  width: min(420px, calc(100% - 28px));
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: 18px;
  padding: 18px;
  position: relative;
  top: 76px;
}

.tz-mobile-nav {
  display: grid;
  gap: 10px;
}

.tz-mobile-link {
  display: block;
  padding: 12px 12px;
  border-radius: 12px;
  font-weight: 800;
  color: var(--tz-navy);
}

.tz-mobile-link:hover {
  background: rgba(201, 164, 92, 0.12);
}

.tz-mobile-link--ghost {
  border: 1px solid rgba(15, 39, 68, 0.12);
}

.tz-mobile-link--cta {
  background: linear-gradient(90deg, var(--tz-gold) 0%, var(--tz-gold-2) 100%);
  color: var(--tz-navy);
  border: 1px solid rgba(199, 150, 63, 0.2);
}

.tz-nav-accordion {
  margin-top: 4px;
}

.tz-accordion-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 12px;
  border-radius: 12px;
  border: 1px solid rgba(226, 232, 240, 0.95);
  background: rgba(248, 250, 252, 0.9);
  font-weight: 900;
}

.tz-accordion-panel {
  margin-top: 8px;
  display: grid;
  gap: 6px;
}

.tz-mobile-sub-link {
  display: block;
  padding: 10px 12px;
  border-radius: 12px;
  font-weight: 800;
  color: var(--tz-text);
  background: rgba(37, 99, 235, 0.04);
}

.tz-mobile-sub-link:hover {
  background: rgba(201, 164, 92, 0.12);
  color: var(--tz-navy);
}

@media (max-width: 900px) {
  .tz-nav-links,
  .tz-nav-actions {
    display: none;
  }

  .mobile-nav-toggle {
    display: inline-flex;
  }
}


h1,
h2,
h3{
  font-family:"Cormorant Garamond", serif;
  line-height: 1.1;
  font-weight:600;
  letter-spacing:-0.03em;
}

.tg-floating-card{
    position:absolute;
    bottom:40px;
    left:-50px;

    width:320px;

    background:#fff;

    padding:30px;

    border-radius:24px;

    box-shadow:0 30px 80px rgba(0,0,0,.12);
}

.tg-floating-card span{
    color:#c7963f;
    font-size:.8rem;
    text-transform:uppercase;
    letter-spacing:.12em;
}

.tg-floating-card h4{
    margin:12px 0;
    color:#111;
}

.tg-floating-card p{
    color:#64748b;
}

/* =========================================
   HOME PAGE - TRUSTGEN REFERENCE DESIGN
========================================= */

/* Home components referenced by app/templates/home.html */
.tg-home-products,
.tg-home-services,
.tg-home-book-demo,
.tg-home-customers {
  position: relative;
}

/* Ensure visible defaults (fix for “blank/white” sections when markup classes are used) */
.tg-home-products .tg-product-card,
.tg-home-services .tg-service-card {
  background: #fff;
  border: 1px solid #ECECEC;
}

.tg-home-book-demo .tg-glass-card {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 24px;
}

.tg-home-book-demo .tg-form label {
  color: #ffffff;
}

.tg-home-book-demo .tg-form input,
.tg-home-book-demo .tg-form textarea {
  color: #0b1f3a;
}


/* Step 2 - Products */
.tg-home-products .tg-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(320px,1fr));
  gap:35px;
}

.tg-product-card {
  background:#fff;
  border:1px solid #ECECEC;
  padding:50px;
  min-height:360px;
  display:flex;
  flex-direction:column;
  transition:.4s ease;
  transform:translateZ(0);
}

.tg-product-card:hover {
  transform:translateY(-10px);
  box-shadow:0 35px 90px rgba(0,0,0,.08);
}


.tg-product-card__lines {
  height: 2px;
  width: 100%;
  background: linear-gradient(90deg, var(--tz-gold) 0%, rgba(184,134,45,0.15) 100%);
  margin-bottom: 22px;
}

.tg-product-card__icon {
  width: 60px;
  height: 60px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(183,134,45,0.08);
  border: 1px solid rgba(183,134,45,0.20);
  color: var(--tz-gold);
  margin-bottom: 22px;
}

.tg-product-card__icon svg {
  width: 26px;
  height: 26px;
}

.tg-product-card__title {
  margin: 0;
  font-size: 1.45rem;
  font-weight: 650;
  color: var(--tz-navy);
  font-family: inherit;
}

.tg-product-card__desc {
  margin: 14px 0 0;
  color: var(--tz-muted);
  line-height: 1.75;
  flex: 1;
}

.tg-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 26px;
  color: var(--tz-navy);
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  width: fit-content;
  position: relative;
}

.tg-link span {
  display: inline-flex;
  transition: transform .35s ease;
}

.tg-product-card:hover .tg-link span {
  transform: translateX(4px);
}

.tg-home-products .tg-animate-stagger [data-animate] {
  animation: none;
}

.tg-home-products .tg-card-grid {
  padding-top: 14px;
}

/* Step 3 - Services */
.tg-home-services {
  background: #FAFAFA;
}

.tg-home-services .tg-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(320px,1fr));
  gap:35px;
}

.tg-service-card {
  background:#fff;
  padding:45px;
  border:1px solid #ECECEC;
  min-height:320px;
  display:flex;
  flex-direction:column;
  transition:.4s ease;
}

.tg-service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 70px rgba(0,0,0,.08);
}


.tg-service-card__num {
  color: rgba(7,24,46,0.25);
  font-weight: 900;
  font-size: 1.1rem;
  letter-spacing: 0.12em;
}

.tg-service-card__icon {
  width: 60px;
  height: 60px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(183,134,45,0.08);
  border: 1px solid rgba(183,134,45,0.20);
  color: var(--tz-gold);
  margin-top: 18px;
}

.tg-service-card__icon svg {
  width: 26px;
  height: 26px;
}

.tg-service-card__title {
  margin: 18px 0 0;
  color: var(--tz-navy);
  font-size: 1.35rem;
  font-weight: 650;
}

.tg-service-card__desc {
  margin: 14px 0 0;
  color: var(--tz-muted);
  line-height: 1.75;
  flex: 1;
}

.tg-btn--ghost {
  margin-top: 26px;
  display: inline-flex;
  width: fit-content;
  padding: 12px 0;
  color: var(--tz-navy);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
}

/* Step 5 - Customer infinite logo slider (spec-matching selectors) */
.tg-home-customers,
.home-customers{
    background:#fff;
    padding:120px 0;
}

.customer-container{
    max-width:1450px;
    margin:auto;
    padding:0 40px;
}

.customer-heading{
    max-width:700px;
    margin-bottom:70px;
}

.customer-slider{
    overflow:hidden;
    width:100%;
    margin:60px 0;
}

.customer-track{
    display:flex;
    align-items:center;
    gap:80px;
    width:max-content;
    animation:logoScroll 30s linear infinite;
}

.customer-track:hover{
    animation-play-state:paused;
}

.customer-logo{
    flex-shrink:0;
    height:60px;
    display:flex;
    align-items:center;
    justify-content:center;
}

.customer-logo img{
    height:42px;
    width:auto;
    filter:grayscale(100%);
    opacity:.6;
    transition:.3s;
}

.customer-logo img:hover{
    filter:none;
    opacity:1;
    transform:scale(1.05);
}

.customer-trust{
    margin-top:60px;
    display:flex;
    align-items:center;
    gap:30px;
}

.customer-trust::before{
    content:"";
    width:100px;
    height:1px;
    background:#B8862D;
}

@keyframes logoScroll{
    from{
        transform:translateX(0);
    }
    to{
        transform:translateX(-50%);
    }
}


/* Step 5 - Book demo */
.tg-home-book-demo {
  background: #fff;
  overflow: hidden;
}

.tg-home-book-demo .tg-book-demo__inner {
  display: grid;
  grid-template-columns: 1fr 1fr; /* Desktop + Tablet */
  gap: 42px;
  align-items: start;
  width: 100%;
  max-width: 100%;
}

.tg-home-book-demo .tg-glass-card {
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 24px;
  padding: 45px;
  box-shadow: 0 30px 80px rgba(0,0,0,.30);
  min-width: 0;
}


.tg-home-book-demo .tg-form-grid {
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.tg-home-book-demo .tg-form label {
  display:block;
  margin-bottom: 8px;
  color: var(--tz-white);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.tg-home-book-demo .tg-form input,
.tg-home-book-demo .tg-form textarea {
  height: 56px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.92);
  padding: 0 16px;
  width: 100%;
  outline: none;
}

.tg-home-book-demo .tg-form textarea {
  min-height: 120px;
  height: auto;
  padding-top: 14px;
  padding-bottom: 14px;
  resize: vertical;
}

.tg-home-book-demo .tg-book-demo__btn {
  margin-top: 22px;
  height: 56px;
  width: 100%;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, #b37412 0%, #ca951e 100%);
  color: #ffffff;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Step 6 - Footer redesign (Premium Enterprise Light Footer) */
.tz-footer{
  position: relative;
  color: var(--tz-text);
  padding: 78px 0 30px;
  background: linear-gradient(180deg, #ffffff 0%, #F8FAFC 45%, #EEF5FF 100%);
  border-top: 1px solid rgba(15, 39, 68, 0.10);
  overflow: hidden;
}

.tz-footer::before{
  content: "";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:
    radial-gradient(circle at 12% 0%, rgba(37, 99, 235, 0.10), transparent 38%),
    radial-gradient(circle at 85% 10%, rgba(201, 164, 92, 0.14), transparent 40%);
  opacity: 1;
}

.tz-footer-shell{ max-width: 1400px; }

.tz-footer-divider{
  height: 1px;
  width: 100%;
  background: rgba(15, 39, 68, 0.08);
  margin-bottom: 34px;
}

.tz-footer-top{ position:relative; z-index:1; }

.tz-footer-grid{
  display:grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr 1.05fr;
  gap: 34px;
  align-items:start;
}

.tz-footer-col{ min-width:0; }

.tz-footer-logo{
  width: 240px;
  height: auto;
  display:block;
  object-fit: contain;
}

.tz-footer-heading{
  margin: 0 0 14px;
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--tz-navy);
  letter-spacing: -0.01em;
}

.tz-footer-tagline{
  margin: 0 0 10px;
  font-size: 1rem;
  color: var(--tz-navy);
  font-weight: 900;
}

.tz-footer-copy{
  margin: 0;
  color: var(--tz-muted);
  font-size: 0.98rem;
  line-height: 1.75;
  max-width: 34rem;
}

.tz-footer-actions{
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.tz-footer-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  font-weight: 900;
  letter-spacing: -0.01em;
  border: 1px solid rgba(15, 39, 68, 0.12);
  background: #ffffff;
  color: var(--tz-navy);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.tz-footer-btn--primary{
  border-color: rgba(199, 150, 63, 0.28);
  background: linear-gradient(135deg, var(--tz-gold) 0%, var(--tz-gold-2) 100%);
  color: #0b1f3a;
  box-shadow: 0 14px 30px rgba(199, 150, 63, 0.18);
}

.tz-footer-btn--primary:hover{ transform: translateY(-2px); box-shadow: 0 18px 42px rgba(199, 150, 63, 0.24); }
.tz-footer-btn--secondary:hover{ transform: translateY(-2px); box-shadow: 0 14px 30px rgba(15, 39, 68, 0.08); border-color: rgba(37, 99, 235, 0.22); }

.tz-footer-social{ display:flex; flex-wrap: wrap; gap: 12px; margin-top: 18px; }

.tz-social-btn{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display:grid;
  place-items:center;
  border: 1px solid rgba(15, 39, 68, 0.10);
  background: rgba(255,255,255,0.7);
  box-shadow: 0 12px 28px rgba(15, 39, 68, 0.06);
  color: var(--tz-navy);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  font-weight: 900;
}

.tz-social-btn:hover{ transform: translateY(-3px); box-shadow: 0 18px 44px rgba(15, 39, 68, 0.10); border-color: rgba(37, 99, 235, 0.22); }

.tz-social-btn--in{ color: #0A66C2; }
.tz-social-btn--yt{ color: #FF0000; }
.tz-social-btn--fb{ color: #1877F2; }
.tz-social-btn--x{ color: #111827; }

.tz-footer-list{ list-style:none; padding:0; margin:0; display:grid; gap: 12px; }
.tz-footer-link{
  display:inline-flex;
  align-items:center;
  color: var(--tz-text);
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.55;
  position: relative;
  padding-bottom: 4px;
  transition: color 0.2s ease;
}

.tz-footer-link::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  height:1px;
  background: rgba(37, 99, 235, 0.30);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.tz-footer-link:hover{ color: var(--tz-navy); }
.tz-footer-link:hover::after{ transform: scaleX(1); }

.tz-footer-link:focus-visible{ outline: 3px solid rgba(37, 99, 235, 0.35); outline-offset: 3px; border-radius: 10px; }

.tz-footer-contact{ list-style:none; padding:0; margin:0; display:grid; gap: 14px; }
.tz-footer-contact-item{ display:flex; align-items:flex-start; gap: 12px; }
.tz-footer-contact-icon{ width: 22px; text-align:center; font-size: 1.05rem; margin-top: 2px; }
.tz-footer-contact-text{ color: var(--tz-muted); line-height: 1.7; font-size: 0.98rem; }
.tz-contact-line{ display:block; }
.tz-footer-contact-link{ color: var(--tz-navy); font-weight: 800; text-decoration: none; border-bottom: 1px solid rgba(37, 99, 235, 0.25); }
.tz-footer-contact-link:hover{ border-color: rgba(37, 99, 235, 0.45); }

.tz-footer-directions{ display:inline-flex; margin-top: 16px; font-weight: 900; color: var(--tz-navy); font-size: 0.92rem; text-decoration: none; border-bottom: 1px solid rgba(37, 99, 235, 0.25); transition: border-color 0.2s ease, transform 0.2s ease; }
.tz-footer-directions:hover{ transform: translateY(-1px); border-color: rgba(37, 99, 235, 0.45); }
.tz-footer-directions:focus-visible{ outline: 3px solid rgba(37, 99, 235, 0.35); outline-offset: 3px; border-radius: 10px; }

.tz-footer-bottom{ margin-top: 26px; padding-top: 18px; border-top: 1px solid rgba(15, 39, 68, 0.10); display:flex; justify-content: space-between; align-items:center; gap: 16px; flex-wrap: wrap; }
.tz-footer-bottom-left{ color: var(--tz-muted); font-weight: 800; }
.tz-footer-bottom-links{ display:flex; gap: 20px; flex-wrap: wrap; }
.tz-footer-bottom-link{ color: var(--tz-muted); font-weight: 800; position: relative; padding-bottom: 3px; transition: color 0.2s ease; }
.tz-footer-bottom-link::after{ content:""; position:absolute; left:0; right:0; bottom:0; height:1px; background: rgba(37, 99, 235, 0.30); transform: scaleX(0); transform-origin: left; transition: transform 0.25s ease; }
.tz-footer-bottom-link:hover{ color: var(--tz-navy); }
.tz-footer-bottom-link:hover::after{ transform: scaleX(1); }

@media (max-width: 1024px){
  .tz-footer-grid{ grid-template-columns: 1fr 1fr; gap: 28px; }
}

@media (max-width: 640px){
  .tz-footer{ padding: 56px 0 24px; }
  .tz-footer-grid{ grid-template-columns: 1fr; gap: 22px; }
  .tz-footer-logo{ width: 200px; margin: 0 auto; }
  .tz-footer-col--brand{ text-align:center; }
  .tz-footer-actions{ justify-content:center; }
  .tz-footer-social{ justify-content:center; }
  .tz-footer-bottom{ flex-direction: column; align-items: flex-start; }
}


/* Step 7 - Animations */







/* Step 7 - Animations */
.fade-up{
  /* Avoid blank pages if JS fails: default visible */
  opacity:1;
  transform:none;
  transition:
    opacity .8s ease,
    transform .8s ease;
}


/* Static pages must be visible even if JS fails */
.static-page,
.static-page-content {
  opacity: 1 !important;
  visibility: visible !important;
  display: block !important;
  height: auto !important;
  overflow: visible !important;
}

/* Only apply hiding/animating when JS explicitly enables it. */
body[data-animations="enabled"] .fade-up{
  opacity:0;
  transform:translateY(40px);
}

body[data-animations="enabled"] .fade-up.visible{
  opacity:1;
  transform:none;
}

/* Fallback if AOS is present but doesn't run yet */
body[data-animations="enabled"]:not([data-aos-enabled="true"]) .fade-up{
  transition:none;
}


/* Step 8 - Responsive fixes */
@media (max-width: 1024px) {
  .tg-home-products .tg-card-grid,
  .tg-home-services .tg-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tz-footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tg-home-book-demo .tg-book-demo__inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .tg-home-products .tg-card-grid,
  .tg-home-services .tg-card-grid {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  .tz-footer-grid {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}

@media (max-width: 1024px) {
  .tg-home-book-demo .tg-book-demo__inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .tg-home-book-demo .tg-book-demo__inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 576px) {
  .tg-home-book-demo .tg-book-demo__inner {
    grid-template-columns: 1fr; /* Mobile */
  }
  .tg-home-book-demo .tg-form-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 390px) {
  .tg-home-book-demo .tg-glass-card {
    padding: 32px;
  }
}


.tz-site-header {

  background: #ffffff;
  border-bottom: 1px solid #ececec;
  box-shadow: 0 7px 24px rgba(7, 20, 41, 0.07);
  backdrop-filter: none;
}

.tz-site-header.is-scrolled {
  background: #ffffff;
  border-color: #e8e8e8;
  box-shadow: 0 10px 30px rgba(7, 20, 41, 0.08);
}

.tz-nav-shell {
  min-height: 4.75rem;
  width: min(100% - 3rem, 88rem);
}

.tz-nav-brand img {
  height: auto;
  max-height: 5.35rem;
  object-fit: contain;
}

.tz-nav-links {
  gap: 1.35rem;
}

.tz-nav-link {
  padding: 0;
  border-radius: 0;
  color: var(--home-ink);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.tz-nav-link:hover {
  background: transparent;
  color: var(--home-gold);
  transform: none;
}

.tz-nav-link--cta {
  margin-left: 1.85rem;
  min-width: 14.4rem;
  min-height: 2.75rem;
  padding: 0 1.35rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  background: linear-gradient(90deg, #b37412 0%, #ca951e 100%);
  border: 0;
  color: #ffffff;
  border-radius: 0;
  box-shadow: none;
  text-transform: uppercase;
  font-size: 0.73rem;
  letter-spacing: 0.12em;
}

.tz-nav-link--cta:hover {
  background: linear-gradient(90deg, #9f630e 0%, #bb8417 100%);
  color: #ffffff;
}

.tz-nav-submenu {
  border-radius: 0;
  box-shadow: 0 24px 60px rgba(7, 20, 41, 0.12);
}

.home-hero {
  position: relative;
  min-height: 30.2rem;
  overflow: hidden;
  background: #ffffff;
}

.home-hero::after {
  content: "";
  position: absolute;
  inset: 0 39% 0 0;
  background: linear-gradient(90deg, #ffffff 0%, #ffffff 71%, rgba(255,255,255,0.92) 84%, rgba(255,255,255,0) 100%);
  pointer-events: none;
  z-index: 1;
}

.home-hero__media {
  position: absolute;
  top: 0;
  right: 0;
  width: 55.5%;
  height: 100%;
  z-index: 0;
}

.home-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.home-hero__inner {
  position: relative;
  z-index: 2;
  width: min(100% - 3rem, 88rem);
  min-height: 30.2rem;
  display: flex;
  align-items: center;
}

.home-hero__copy {
  width: min(48rem, 58%);
  padding: 3.25rem 0 2.8rem;
}

.home-kicker {
  margin: 0 0 1.05rem;
  color: var(--home-gold);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  line-height: 1.4;
  text-transform: uppercase;
}

.home-hero h1 {
  margin: 0;
  max-width: 46rem;
  color: var(--home-ink);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(3rem, 4.55vw, 4.15rem);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.home-hero h1 span {
  color: var(--home-gold);
}

.home-hero__text {
  max-width: 39.5rem;
  margin: 1.45rem 0 0;
  color: var(--home-muted);
  font-size: 1.05rem;
  line-height: 1.65;
}

.home-hero__actions {
  display: flex;
  align-items: center;
  gap: 2.25rem;
  margin-top: 2.55rem;
}

.home-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.05rem;
  color: var(--home-ink);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1;
  text-transform: uppercase;
}

.home-btn--primary {
  min-width: 14.9rem;
  gap: 1.15rem;
  padding: 0 1.35rem;
  background: linear-gradient(90deg, #b37412 0%, #ca951e 100%);
  color: #ffffff;
}

.home-btn--primary:hover {
  color: #ffffff;
  background: linear-gradient(90deg, #9f630e 0%, #bb8417 100%);
}

.home-btn--link {
  position: relative;
  min-width: 9.25rem;
  justify-content: flex-start;
}

.home-btn--link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0.55rem;
  width: 4.5rem;
  height: 1px;
  background: var(--home-gold);
}

.home-proof {
  background: #ffffff;
  border-bottom: 1px solid #ededed;
  padding: 2rem 0 2.25rem;
  overflow: hidden;
}


.home-proof__grid {
  width: min(100% - 3rem, 78.5rem);
  display: grid;
  grid-template-columns: 1.22fr repeat(4, 1fr);
  gap: 0;
  align-items: center;
}

.home-proof__label,
.home-proof__item {
  min-height: 3.45rem;
  border-right: 1px solid #dddddd;
}

.home-proof__label {
  color: var(--home-ink);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1.55;
  text-transform: uppercase;
}

.home-proof__item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.1rem;
  padding: 0 1.15rem;
}

.home-proof__item:last-child {
  border-right: 0;
}

.home-proof__item svg {
  width: 1.7rem;
  height: 1.7rem;
  flex: 0 0 auto;
  color: var(--home-gold);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.35;
}

.home-proof__item strong {
  display: block;
  color: var(--home-ink);
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1.1;
}

.home-proof__item span {
  display: block;
  margin-top: 0.22rem;
  color: #404b58;
  font-size: 0.78rem;
  line-height: 1.35;
}

.home-services {
  background: #ffffff;
  padding: 1.7rem 0 4.7rem;
  overflow: hidden;
}


.home-services .container {
  width: min(100% - 3rem, 78.5rem);
}

.home-section-head {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 4rem;
  align-items: end;
  margin-bottom: 1.6rem;
}

.home-section-head h2 {
  max-width: 29rem;
  margin: 0;
  color: var(--home-ink);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 3vw, 2.45rem);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.home-section-head > p {
  max-width: 36rem;
  margin: 0 0 0.6rem;
  color: var(--home-muted);
  font-size: 0.88rem;
  line-height: 1.55;
}

.home-service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.9rem;
}

.home-service-card {
  min-height: 11.45rem;
  display: grid;
  grid-template-columns: 4.7rem 1fr;
  gap: 1.8rem;
  padding: 1.7rem 1.95rem 1.45rem 1.2rem;
  border: 1px solid #e4e4e4;
  background: #ffffff;
  color: var(--home-ink);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.home-service-card:hover {
  color: var(--home-ink);
  border-color: rgba(183, 124, 22, 0.4);
  box-shadow: 0 18px 40px rgba(7, 20, 41, 0.07);
  transform: translateY(-2px);
}

.home-service-card__icon {
  width: 4.65rem;
  height: 4.65rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #061429;
}

.home-service-card__icon svg {
  width: 2.15rem;
  height: 2.15rem;
  color: #d39a2a;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.45;
}

.home-service-card__body {
  display: block;
}

.home-service-card__body > strong {
  position: relative;
  display: block;
  padding-bottom: 0.75rem;
  color: var(--home-ink);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.27rem;
  font-weight: 700;
  line-height: 1.1;
}

.home-service-card__body > strong::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0.28rem;
  width: 1.9rem;
  height: 1px;
  background: var(--home-gold);
}

.home-service-card__body > span {
  display: block;
  color: var(--home-muted);
  font-size: 0.86rem;
  line-height: 1.5;
}

.home-service-card__body em {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.25rem;
  color: var(--home-gold);
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

@media (max-width: 1120px) {
  .tz-nav-links {
    gap: 0.9rem;
  }

  .tz-nav-link--cta {
    margin-left: 0.7rem;
    min-width: 12.5rem;
  }

  .home-hero__copy {
    width: min(43rem, 62%);
  }

  .home-hero__media {
    width: 54%;
  }

  .home-service-grid {
    gap: 1rem;
  }

  .home-service-card {
    grid-template-columns: 4rem 1fr;
    gap: 1.2rem;
    padding-right: 1.2rem;
  }

  .home-service-card__icon {
    width: 4rem;
    height: 4rem;
  }
}

@media (max-width: 960px) {
  .home-hero {
    min-height: auto;
    display: grid;
  }

  .home-hero::after {
    inset: 0;
    background: linear-gradient(90deg, rgba(255,255,255,0.98), rgba(255,255,255,0.84));
  }

  .home-hero__media {
    width: 100%;
  }

  .home-hero__inner {
    min-height: 36rem;
  }

  .home-hero__copy {
    width: min(42rem, 90%);
  }

  .home-proof__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem 0;
  }

  .home-proof__label {
    grid-column: 1 / -1;
    border-right: 0;
  }

  .home-proof__item:nth-child(3),
  .home-proof__item:nth-child(5) {
    border-right: 0;
  }

  .home-section-head,
  .home-service-grid {
    grid-template-columns: 1fr;
  }

  .home-section-head {
    gap: 1rem;
  }
}

@media (max-width:760px) {
  .mobile-nav-toggle {
    border-radius: 0;
    font-size: 1.15rem;
  }

  .tz-nav-brand img {
    width: 8.9rem;
    max-height: 2.85rem;
  }

  .home-hero__inner,
  .home-proof__grid,
  .home-services .container {
    width: min(100% - 2rem, 78.5rem);
  }

  .home-hero__inner {
    min-height: 34rem;
  }

  .home-hero h1 {
    font-size: 2.72rem;
    line-height: 1.02;
  }

  .home-hero__text {
    font-size: 0.98rem;
  }

  .home-hero__actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 1.2rem;
  }

  .home-btn--primary {
    width: 100%;
  }

  .home-proof__grid {
    grid-template-columns: 1fr;
  }

  .home-proof__item {
    justify-content: flex-start;
    border-right: 0;
    border-top: 1px solid #e5e5e5;
    padding: 1rem 0 0;
  }

  .home-service-card {
    grid-template-columns: 1fr;
  }
}

