/* 
 * TaxBridge Custom Stylesheet
 * Responsive, clean, and pixel-perfect design
 */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Outfit:wght@400;500;600;700;800;900&display=swap');

:root {
  /* Colors */
  --tb-dark: #0A1C30;
  --tb-navy-light: #162C4E;
  --tb-green: #10B981;
  --tb-green-hover: #059669;
  --tb-green-light: #E6F7F0;
  --tb-blue: #2563EB;
  --tb-blue-hover: #1D4ED8;
  --tb-blue-light: #EFF6FF;
  --tb-gray-bg: #F8FAFC;
  --tb-gray-card: #F1F5F9;
  --tb-text-dark: #0F172A;
  --tb-text-muted: #64748B;
  --tb-text-white: #FFFFFF;
  --tb-border: #E2E8F0;

  /* Fonts */
  --tb-font-title: 'Outfit', sans-serif;
  --tb-font-body: 'Inter', sans-serif;
}

/* Reset and Globals */
body {
  font-family: var(--tb-font-body);
  color: var(--tb-text-dark);
  background-color: var(--tb-text-white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--tb-font-title);
  color: var(--tb-dark);
  font-weight: 700;
}

a {
  text-decoration: none;
  transition: all 0.3s ease;
}

.herobgOverly {
    padding: 100px 0;
}

.herobg {
    width: 100%;
}

/* Custom Utilities */
.text-tb-dark { color: var(--tb-dark); }
.text-tb-green { color: var(--tb-green); }
.text-tb-blue { color: var(--tb-blue); }
.text-tb-muted { color: var(--tb-text-muted); }

.bg-tb-dark { background-color: var(--tb-dark); }
.bg-tb-light { background-color: var(--tb-gray-bg); }
.bg-tb-green-light { background-color: var(--tb-green-light); }
.bg-tb-gradient {
  background: linear-gradient(135deg, #F0FDF4 0%, #EFF6FF 50%, #FFFFFF 100%);
}
.bg-tb-blue { background-color: var(--tb-blue); }

/* Buttons */
.btn-tb-green {
  background-color: var(--tb-green);
  color: var(--tb-text-white);
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 8px;
  border: none;
  transition: all 0.3s ease;
}
.btn-tb-green:hover {
  background-color: var(--tb-green-hover);
  color: var(--tb-text-white);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.2);
}

.btn-tb-blue {
  background-color: var(--tb-blue);
  color: var(--tb-text-white);
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 8px;
  border: none;
  transition: all 0.3s ease;
}
.btn-tb-blue:hover {
  background-color: var(--tb-blue-hover);
  color: var(--tb-text-white);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

.btn-tb-outline-blue {
  background-color: var(--tb-blue-light);
  color: var(--tb-blue);
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 8px;
  border: 1px solid rgba(37, 99, 235, 0.2);
  transition: all 0.3s ease;
}
.btn-tb-outline-blue:hover {
  background-color: var(--tb-blue);
  color: var(--tb-text-white);
  transform: translateY(-2px);
}

.btn-tb-light {
  background-color: var(--tb-gray-card);
  color: var(--tb-dark);
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 8px;
  border: 1px solid var(--tb-border);
  transition: all 0.3s ease;
}
.btn-tb-light:hover {
  background-color: var(--tb-border);
  transform: translateY(-2px);
}

/* Header Top Bar */
.tb-topbar {
  background-color: var(--tb-dark);
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.tb-topbar-link {
  color: rgba(255, 255, 255, 0.8);
  margin-right: 20px;
}
.tb-topbar-link:hover {
  color: var(--tb-green);
}
.tb-topbar-link i {
  color: var(--tb-green);
  margin-right: 6px;
}
.tb-lang-select {
  display: flex;
  align-items: center;
  gap: 10px;
}
.tb-lang-item {
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
}
.tb-lang-item.active {
  color: #F59E0B;
  font-weight: 600;
}

/* Main Navbar */
.tb-navbar {
  padding: 16px 0;
  background-color: var(--tb-text-white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}
.tb-navbar-brand {
  display: flex;
  align-items: center;
  padding: 0;
}
.tb-logo-img {
  height: 38px;
  width: auto;
  object-fit: contain;
}
.tb-nav-link {
  color: var(--tb-dark);
  font-weight: 500;
  font-size: 15px;
  padding: 8px 16px !important;
}
.tb-nav-link:hover {
  color: var(--tb-green);
}
.tb-nav-btn-login {
  color: var(--tb-dark);
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 6px;
  background-color: var(--tb-gray-card);
  margin-right: 12px;
}
.tb-nav-btn-login:hover {
  background-color: var(--tb-border);
  color: var(--tb-dark);
}
.tb-nav-btn-signup {
  background-color: var(--tb-blue);
  color: var(--tb-text-white);
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 6px;
}
.tb-nav-btn-signup:hover {
  background-color: var(--tb-blue-hover);
  color: var(--tb-text-white);
}

/* Hero Section */
.tb-hero {
  padding: 0;
  position: relative;
  overflow: hidden;
  min-height: 380px;
  display: flex;
  align-items: center;
  background-color: #ffffff;
}
.tb-hero-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: flex-end;
  z-index: 1;
}
.tb-hero-bg-img {
  height: 100%;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}
/* White gradient overlay fading left-to-right */
.tb-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgb(243 242 242 / 85%) 0%, rgba(255, 255, 255, 0.98) 40%, rgba(255, 255, 255, 0.8) 55%, rgba(255, 255, 255, 0) 80%);
  z-index: 2;
  pointer-events: none;
}
.tb-hero-container {
  position: relative;
  z-index: 3;
  padding: 35px 0;
}
.tb-hero-badge {
  display: inline-flex;
  align-items: center;
  background-color: #E6F3E6;
  color: #2E9E4F;
  font-family: var(--tb-font-body);
  font-weight: 600;
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 5px;
  margin-bottom: 12px;
}
.tb-hero-title {
  font-family: var(--tb-font-title);
  font-size: 60px;
  line-height: 1.15;
  margin-bottom: 12px;
  font-weight: 800;
  color: #0A1C30;
  letter-spacing: -1px;
}
.tb-hero-title span {
  color: #2B62B2;
  font-style: normal;
}
.tb-hero-desc {
  font-family: var(--tb-font-body);
  font-size: 14px;
  line-height: 1.5;
  color: #4B5563;
  margin-bottom: 20px;
  max-width: 364px;
  text-align: start;
}
.tb-hero-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}
.btn-tb-hero-green {
  background-color: #21A657;
  color: #FFFFFF;
  font-weight: 600;
  font-size: 14px;
  padding: 10px 24px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: var(--tb-font-body);
}
.btn-tb-hero-green:hover {
  background-color: #1A8A48;
}
.btn-tb-join-lawyer {
  background-color: #EAEAEA;
  color: #3F6EA3;
  font-weight: 600;
  font-size: 14px;
  padding: 10px 24px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: var(--tb-font-body);
}
.btn-tb-join-lawyer:hover {
  background-color: #DDE2E8;
}

/* How It Works Section */
.tb-works-sec {
  padding: 40px 0 20px 0;
  background-color: var(--tb-text-white);
}
.tb-section-header {
  text-align: center;
  margin-bottom: 30px;
}
.tb-section-subtitle {
  color: var(--tb-blue);
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 12px;
}
.tb-section-title {
  font-size: 36px;
  margin-bottom: 16px;
}
.tb-section-title span {
  color: var(--tb-blue);
}
.tb-section-title span.green {
  color: var(--tb-green);
}
.tb-works-steps-wrapper {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin-top: 25px;
  flex-wrap: nowrap;
  gap: 8px;
}
.tb-works-step {
  flex: 1;
  text-align: center;
  max-width: 165px;
}
.tb-works-icon-container {
  width: 78px;
  height: 78px;
  background-color: #EBF1F9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px auto;
  transition: all 0.3s ease;
}
.tb-works-icon-container:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}
.tb-works-svg-icon {
  width: 34px;
  height: auto;
}
.tb-works-arrow {
  position: relative;
  width: 120px;
  height: 3px;
  border-top: 3px dashed #94A3B8;
  align-self: flex-start;
  margin-top: 37.5px;
  flex-shrink: 0;
}
.tb-works-arrow::after {
  content: '';
  position: absolute;
  right: 0;
  top: -5.5px;
  width: 8px;
  height: 8px;
  border-top: 3px solid #94A3B8;
  border-right: 3px solid #94A3B8;
  transform: rotate(45deg);
}
.tb-works-step-title {
  font-family: var(--tb-font-title);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.20;
  margin-bottom: 8px;
  color: #0A1C30;
}
.tb-works-step-desc {
  font-family: var(--tb-font-body);
  font-size: 9.5px;
  color: #4B5563;
  line-height: 1.2;
}
.tb-title-blue {
  color: #2B62B2 !important;
}
.tb-title-green {
  color: #21A657 !important;
}

@media (max-width: 991px) {
  .tb-works-steps-wrapper {
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
  }
  .tb-works-arrow {
    display: none;
  }
  .tb-works-step {
    flex: 0 0 45%;
    max-width: 220px;
  }
}
@media (max-width: 575px) {
  .tb-works-step {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

/* Find Right Lawyer Section */
.tb-find-lawyer-sec {
  background-color: #f0f3fa;
  padding: 12px;
}
.tb-find-lawyer-title {
  font-family: var(--tb-font-title);
  font-size: 40px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #0A1C30;
  letter-spacing: -1px;
}
.tb-find-lawyer-desc {
  font-family: var(--tb-font-body);
  font-size: 15px;
  line-height: 1.6;
  color: #4B5563;
  margin-bottom: 32px;
  max-width: 460px;
}
.tb-find-lawyer-graphic-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}
.tb-find-lawyer-graphic {
  max-width: 100%;
  height: auto;
}
.btn-tb-find-rfq {
  background-color: #21A657;
  color: #FFFFFF;
  font-family: var(--tb-font-body);
  font-weight: 600;
  font-size: 15px;
  padding: 12px 28px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn-tb-find-rfq:hover {
  background-color: #1A8A48;
  transform: translateY(-2px);
}
.btn-tb-find-how {
  background-color: #EAEAEA;
  color: #3F6EA3;
  font-family: var(--tb-font-body);
  font-weight: 600;
  font-size: 15px;
  padding: 12px 28px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-tb-find-how:hover {
  background-color: #DDE2E8;
  transform: translateY(-2px);
}
.btn-tb-find-how i {
  color: #3F6EA3;
  font-size: 15px;
}

/* Statistics Bar */
.tb-stats-bar {
  background-color: #2C66AE;
  color: var(--tb-text-white);
  padding: 40px 0;
}
.tb-stats-item {
  display: flex;
  align-items: center;
  gap: 8px;
}
.tb-stats-icon-img {
  height: 50px;
  width: auto;
  object-fit: contain;
}
.tb-stats-number {
  font-family: var(--tb-font-title);
  font-size: 24px;
  font-weight: 800;
  line-height: 1.1;
  color: #FFFFFF;
}
.tb-stats-label {
  font-family: var(--tb-font-body);
  font-size: 13px;
  font-weight: 600;
  color: #FFFFFF;
  margin-top: 2px;
}
.tb-stats-highlight {
  background-color: #1A4E8C;
  padding: 1px 4px;
  border-radius: 2px;
}

/* Dual Cards Section */
.tb-dual-sec {
  padding: 50px 0;
}
.tb-dual-card {
  background-color: #f6f8fc;
  border-radius: 20px;
  border: none;
  padding: 40px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s ease;
}
.tb-dual-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.04);
}
.tb-dual-card > .row {
  flex: 1;
  align-items: stretch;
}
.tb-dual-card .col-md-7 {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.tb-dual-card .col-md-7 button {
  margin-top: auto;
  align-self: flex-start;
}
.tb-dual-card .col-md-5 {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
}
.tb-dual-card-title {
  font-family: var(--tb-font-title);
  font-size: 20px;
  font-weight: 800;
  color: #0A1C30;
  margin-bottom: 12px;
}
.tb-dual-card-desc {
  font-family: var(--tb-font-body);
  font-size: 14px;
  color: #4B5563;
  margin-bottom: 24px;
  line-height: 1.5;
}
.mBox {
    position: relative;
}

.tb-lawyer-portrait-img {
    float: right;
    position: absolute;
       top: -48px;
    right: 0px;
    max-width: 250px;
    width: 100%;
}



.manageforEverythings {
    background: #eff2f8;
    padding: 20px 0;
}

.tb-dual-card-img {
  max-width: 100%;
  height: auto;
  max-height: 170px;
  object-fit: contain;
}
.btn-tb-outline-blog {
  background-color: #FFFFFF;
  color: #2C66AE;
  font-weight: 700;
  padding: 12px 32px;
  border-radius: 8px;
  border: 1px solid #2C66AE;
  transition: all 0.3s ease;
  font-size: 14px;
  font-family: var(--tb-font-body);
}
.btn-tb-outline-blog:hover {
  background-color: #2C66AE;
  color: #FFFFFF;
  transform: translateY(-2px);
}

/* App & Lawyer Section */
.tb-app-lawyer-sec {
  padding: 55px 0 0 0;
  background-color: #EFF2F8;
  border-top: 1px solid var(--tb-border);
  overflow: hidden;
}
.tb-app-lawyer-title {
  font-family: var(--tb-font-title);
  font-size: 25px;
  font-weight: 800;
  color: #0A1C30;
  margin-bottom: 10px;
  line-height: 1.25;
  margin-top: 25px;
}
.tb-check-item {
  position: relative;
  padding-left: 24px;
  font-family: var(--tb-font-body);
  font-size: 13px;
  font-weight: 500;
  color: #4B5563;
  line-height: 1.4;
}
.tb-check-item::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: #2C66AE;
  position: absolute;
  left: 0;
  top: 1px;
}
.tb-app-features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  margin-bottom: 28px;
}
.tb-lawyer-features-grid {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 28px;
}
.tb-store-badges {
  display: flex;
  gap: 12px;
}
.tb-store-btn {
  display: inline-flex;
  align-items: center;
  text-align: left;
  padding: 8px 16px;
  border-radius: 8px;
  background-color: #000;
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-decoration: none;
  transition: all 0.3s ease;
}
.tb-store-btn:hover {
  opacity: 0.8;
  transform: translateY(-2px);
  color: var(--tb-text-white);
}
.tb-store-btn-label {
  display: block;
  color: rgba(255, 255, 255, 0.6);
  font-size: 8px;
  text-transform: uppercase;
  line-height: 1;
}
.tb-store-btn-title {
  display: block;
  font-weight: 700;
  color: var(--tb-text-white);
  font-size: 13px;
  line-height: 1.1;
}
.tb-footer-store-btn {
  display: inline-flex;
  align-items: center;
  text-align: left;
  padding: 8px 16px;
  border-radius: 8px;
  background-color: var(--tb-dark);
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-decoration: none;
  width: fit-content;
  transition: all 0.3s ease;
}
.tb-footer-store-btn:hover {
  background-color: var(--tb-navy-light);
  transform: translateY(-2px);
  color: var(--tb-text-white);
}
.tb-footer-store-btn-label {
  display: block;
  color: rgba(255, 255, 255, 0.5);
  font-size: 7px;
  text-transform: uppercase;
  line-height: 1;
}
.tb-footer-store-btn-title {
  display: block;
  font-weight: 700;
  color: var(--tb-text-white);
  font-size: 11px;
  line-height: 1.1;
}
/* Custom Columns for App & Lawyer section */
.tb-col-left {
  width: 25%;
  padding-bottom: 50px;
}
.tb-col-mockup {
  width: 25%;
  padding-bottom: 0;
  margin-bottom: 0;
}
.tb-col-right {
  width: 23%;
  padding-bottom: 50px;
}
.tb-col-portrait {
  width: 27%;
  padding-bottom: 0;
  margin-bottom: 0;
}
.tb-mockup-img {
max-width: 370px;
    width: 100%
}
.btn-tb-join-lawyer-primary {
  background-color: #2C66AE;
  color: #FFFFFF;
  font-weight: 700;
  padding: 12px 36px;
  border-radius: 8px;
  border: none;
  transition: all 0.3s ease;
  font-family: var(--tb-font-body);
  font-size: 14px;
}
.btn-tb-join-lawyer-primary:hover {
  background-color: #1A4E8C;
  transform: translateY(-2px);
}


/* Trust Indicators Bar */
.tb-trust-bar {
  background-color: #FFFFFF;
  padding: 40px 0;
  border-top: 1px solid var(--tb-border);
  border-bottom: 1px solid var(--tb-border);
}
.tb-trust-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.tb-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  position: relative;
  padding: 0 20px;
}
.tb-trust-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 40px;
  background-color: #CBD5E1;
}
.tb-trust-icon-box {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 1px solid #CBD5E1;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #FFFFFF;
  flex-shrink: 0;
}
.tb-trust-icon-img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}
.tb-trust-content {
  display: flex;
  flex-direction: column;
}
.tb-trust-title {
  font-family: var(--tb-font-title);
  font-size: 13px;
  font-weight: 700;
  color: #0A1C30;
  margin-bottom: 4px;
  line-height: 1.2;
}
.tb-trust-desc {
  font-family: var(--tb-font-body);
  font-size: 10px;
  color: #64748B;
  margin-bottom: 0;
  line-height: 1.4;
}

/* Footer Styles */
.tb-footer {
  background-color: #06152B;
  color: #94A3B8;
  padding: 60px 0 30px 0;
}
.tb-footer-logo-img {
  height: 38px;
  width: auto;
}
.tb-footer-desc {
  font-size: 12px;
  line-height: 1.6;
  margin-bottom: 24px;
  color: #94A3B8;
}
.tb-footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}
.tb-footer-contact li {
  font-size: 12px;
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #94A3B8;
}
.tb-footer-contact li i {
  color: #10B981;
  margin-top: 3px;
  font-size: 14px;
}
.tb-footer-title {
  font-family: var(--tb-font-title);
  color: #FFFFFF;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: none;
}
.tb-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.tb-footer-links li {
  margin-bottom: 10px;
}
.tb-footer-links a {
  color: #94A3B8;
  font-size: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.tb-footer-links a:hover {
  color: #10B981;
  padding-left: 2px;
}
.tb-footer-subscribe-text {
  font-size: 12px;
  color: #94A3B8;
  line-height: 1.5;
}
.tb-newsletter-form {
  display: flex;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  background-color: #FFFFFF;
  height: 44px;
  position: relative;
  margin-bottom: 24px;
}
.tb-newsletter-input {
  flex: 1;
  border: none;
  padding: 0 16px;
  font-size: 13px;
  color: #0A1C30;
  outline: none;
  background-color: #FFFFFF;
  height: 100%;
  border-radius: 8px 0 0 8px;
}
.tb-newsletter-input::placeholder {
  color: #94A3B8;
  font-size: 13px;
  font-family: var(--tb-font-body);
}
.tb-newsletter-btn {
  width: 48px;
  background-color: #10B981;
  border: none;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
  height: 100%;
  font-size: 16px;
  border-radius: 0 8px 8px 0;
  cursor: pointer;
}
.tb-newsletter-btn:hover {
  background-color: #059669;
}
.tb-footer-divider {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin: 20px 0;
  opacity: 1;
}
.tb-footer-app-badges {
  display: flex;
  gap: 10px;
}
.tb-footer-app-btn {
  display: inline-flex;
  align-items: center;
  text-align: left;
  padding: 6px 12px;
  border-radius: 6px;
  background-color: #000000;
  border: 1px solid rgba(255, 255, 255, 0.15);
  text-decoration: none;
  transition: all 0.3s ease;
}
.tb-footer-app-btn:hover {
  opacity: 0.8;
  transform: translateY(-2px);
  color: #FFFFFF;
}
.tb-footer-app-label {
  display: block;
  color: rgba(255, 255, 255, 0.6);
  font-size: 7px;
  text-transform: uppercase;
  line-height: 1;
}
.tb-footer-app-title {
  display: block;
  font-weight: 700;
  color: #FFFFFF;
  font-size: 11px;
  line-height: 1.1;
}
.tb-footer-middle-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 0;
  margin-top: 40px;
}
.tb-footer-copy {
  font-size: 12px;
  color: #94A3B8;
}
.tb-footer-middle-links {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.2);
}
.tb-footer-middle-links a {
  color: #94A3B8;
  text-decoration: none;
  margin: 0 4px;
  transition: color 0.3s;
}
.tb-footer-middle-links a:hover {
  color: #10B981;
}
.tb-footer-accept-label {
  font-size: 12px;
  color: #94A3B8;
  font-weight: 600;
}
.tb-payment-badge-img {
  max-height: 28px;
  width: auto;
  object-fit: contain;
  vertical-align: middle;
}
.tb-footer-bottom-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 20px;
}
.tb-footer-social-label {
  font-size: 12px;
  color: #94A3B8;
  font-weight: 600;
}
.tb-social-links {
  display: flex;
  gap: 12px;
}
.tb-social-icon {
  width: 32px;
  height: 32px;
  background-color: #0A1C30;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94A3B8;
  font-size: 13px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.tb-social-icon:hover {
  background-color: #10B981;
  color: #FFFFFF;
  transform: translateY(-2px);
}
.tb-footer-security-wrapper {
  display: inline-flex;
  align-items: center;
}
.tb-footer-security-img {
  height: 36px;
  width: auto;
  object-fit: contain;
}
.tb-footer-security-text {
  font-size: 11px;
  color: #94A3B8;
  line-height: 1.4;
}

/* Responsiveness adjustments */
@media (max-width: 991px) {
  .tb-hero-title {
    font-size: 40px;
  }
  .tb-works-line {
    display: none;
  }
  .tb-works-step-card {
    margin-bottom: 30px;
  }
  .tb-find-lawyer-title {
    font-size: 32px;
  }
  .tb-payment-badge-wrapper {
    text-align: left;
    margin-top: 15px;
  }
  .tb-dual-card {
    margin-bottom: 24px;
  }
  .tb-col-left {
    width: 50%;
    padding-bottom: 30px;
  }
  .tb-col-mockup {
    width: 50%;
    padding-bottom: 0;
  }
  .tb-col-right {
    width: 60%;
    padding-bottom: 30px;
    margin-top: 40px;
  }
  .tb-col-portrait {
    width: 40%;
    padding-bottom: 0;
    margin-top: 40px;
  }
  .tb-trust-grid {
    flex-wrap: wrap;
    gap: 30px 0;
  }
  .tb-trust-item {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .tb-trust-item:nth-child(2n)::after {
    display: none;
  }
}

@media (max-width: 767px) {
  .tb-hero {
    padding: 60px 0;
  }
  .tb-hero-title {
    font-size: 32px;
  }
  .tb-hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .tb-hero-actions .btn {
    text-align: center;
  }
  .tb-stats-item {
    margin-bottom: 20px;
  }
  .tb-check-list {
    margin-bottom: 20px;
  }
  .tb-col-left, .tb-col-mockup, .tb-col-right, .tb-col-portrait {
    width: 100% !important;
    padding-bottom: 30px !important;
    text-align: center !important;
    margin-top: 20px;
  }
  .tb-mockup-img, .tb-lawyer-portrait-img {
    max-height: 300px;
    width: auto !important;
    margin: 0 auto !important;
  }
  .tb-trust-grid {
    flex-wrap: wrap;
    gap: 20px 0;
  }
  .tb-trust-item {
    flex: 0 0 100% !important;
    max-width: 100% !important;
    padding: 0 10px !important;
  }
  .tb-trust-item::after {
    display: none !important;
  }
}
