:root {
}

#taxbridge-homepage,
#taxbridge-homepage * {
	box-sizing: border-box;
}

#taxbridge-homepage {
	font-family: Inter, Arial, Helvetica, sans-serif;
	color: var(--navy);
	background: #fff;
	margin: 0;
	padding: 0;
}

#taxbridge-homepage .tb-container {
	max-width: 1180px;
	margin: 0 auto;
	padding: 0 24px;
}

#taxbridge-homepage h1,
#taxbridge-homepage h2,
#taxbridge-homepage h3,
#taxbridge-homepage h4 {
	margin: 0 0 14px;
	color: var(--navy);
	line-height: 1.15;
	letter-spacing: -.02em;
	font-weight: 800;
}

#taxbridge-homepage h1 {
	font-size: 56px;
}

#taxbridge-homepage h2 {
	font-size: 46px;
}

#taxbridge-homepage h3 {
	font-size: 22px;
}

#taxbridge-homepage h4 {
	font-size: 20px;
}

#taxbridge-homepage p {
	margin: 0 0 16px;
	font-size: 18px;
	line-height: 1.7;
	color: var(--text);
}

#taxbridge-homepage .tb-section {
	padding: 46px 0;
}

#taxbridge-homepage .tb-hero {
	padding: 34px 0 28px;
}

#taxbridge-homepage .tb-grid-2 {
	display: grid;
	grid-template-columns: 1.05fr .95fr;
	gap: 42px;
	align-items: center;
}

#taxbridge-homepage .tb-subtext {
	font-size: 21px;
	color: #5B6A84;
}

#taxbridge-homepage .tb-btn-row {
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
	margin-top: 24px;
}

#taxbridge-homepage .tb-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	font-weight: 700;
	font-size: 16px;
	padding: 14px 22px;
	border-radius: 999px;
	transition: all .25s ease;
}

#taxbridge-homepage .tb-btn-primary {
	background: var(--teal);
	color: #fff;
	box-shadow: 0 8px 20px rgba(31,166,166,0.24);
}

#taxbridge-homepage .tb-btn-primary:hover {
	background: var(--teal-dark);
	transform: translateY(-2px);
}

#taxbridge-homepage .tb-btn-secondary {
	background: #EDF3F7;
	color: var(--navy);
}

#taxbridge-homepage .tb-btn-secondary:hover {
	background: #E2EBF2;
	transform: translateY(-2px);
}

#taxbridge-homepage .tb-image-card {
	border-radius: 30px;
	overflow: hidden;
	box-shadow: var(--shadow);
	background: #fff;
}

#taxbridge-homepage .tb-image-card img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
}

#taxbridge-homepage .tb-panel {
	background: var(--soft-blue);
	border-radius: 58px;
	padding: 56px 0;
	margin: 20px 0;
}

#taxbridge-homepage .tb-panel .tb-subline,
#taxbridge-homepage .tb-soft .tb-subline,
#taxbridge-homepage .tb-section .tb-subline {
	color: var(--teal);
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 26px;
}

#taxbridge-homepage .tb-card-grid-4 {
	display: grid;
	grid-template-columns: repeat(4,1fr);
	gap: 18px;
	margin-top: 28px;
}

#taxbridge-homepage .tb-service-card {
	background: #fff;
	border-radius: 24px;
	padding: 28px 20px 24px;
	text-align: center;
	box-shadow: var(--shadow-soft);
	min-height: 290px;
}

#taxbridge-homepage .tb-service-card .tb-icon-wrap {
	width: 76px;
	height: 76px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 18px;
}

#taxbridge-homepage .tb-service-card p {
	font-size: 16px;
	line-height: 1.6;
	margin: 0;
}

#taxbridge-homepage .tb-check-list {
	list-style: none;
	margin: 18px 0 0;
	padding: 0;
}

#taxbridge-homepage .tb-check-list li {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	margin-bottom: 16px;
	font-size: 20px;
	font-weight: 700;
	color: var(--navy);
	line-height: 1.45;
}

#taxbridge-homepage .tb-check {
	width: 25px;
	min-width: 25px;
	margin-top: 4px;
}

#taxbridge-homepage .tb-soft {
	background: var(--soft-blue-2);
	border-radius: 48px;
	padding: 52px 0;
	margin: 20px 0;
}

#taxbridge-homepage .tb-why-grid {
	display: grid;
	grid-template-columns: repeat(3,1fr);
	gap: 18px;
	margin-top: 26px;
}

#taxbridge-homepage .tb-why-card {
	background: #fff;
	border-radius: 24px;
	padding: 24px;
	box-shadow: var(--shadow-soft);
	height: 100%;
}

#taxbridge-homepage .tb-why-top {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	margin-bottom: 12px;
}

#taxbridge-homepage .tb-why-icon {
	width: 54px;
	min-width: 54px;
	height: 54px;
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #EFF8F8;
}

#taxbridge-homepage .tb-why-card p {
	font-size: 16px;
	margin: 0;
	line-height: 1.6;
}

#taxbridge-homepage .tb-cta {
	background: linear-gradient(135deg,#17335C 0%, #1E4E77 55%, #1FA6A6 100%);
	border-radius: 38px;
	padding: 40px 34px;
	color: #fff;
	box-shadow: var(--shadow);
}

#taxbridge-homepage .tb-cta h2,
#taxbridge-homepage .tb-cta p {
	color: #fff;
}

#taxbridge-homepage .tb-cta p {
	max-width: 760px;
	opacity: .96;
}

#taxbridge-homepage .tb-faq-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 18px;
	margin-top: 26px;
}

#taxbridge-homepage details {
	background: #fff;
	border-radius: 18px;
	box-shadow: var(--shadow-soft);
	padding: 18px 20px;
}

#taxbridge-homepage summary {
	cursor: pointer;
	list-style: none;
	font-weight: 800;
	color: var(--navy);
	font-size: 18px;
	position: relative;
	padding-right: 28px;
}

#taxbridge-homepage summary::-webkit-details-marker {
	display: none;
}

#taxbridge-homepage summary:after {
	content: "+";
	position: absolute;
	right: 0;
	top: 0;
	font-size: 24px;
	line-height: 1;
	color: var(--teal);
}

#taxbridge-homepage details[open] summary:after {
	content: "–";
}

#taxbridge-homepage details p {
	margin: 14px 0 0;
	font-size: 16px;
	line-height: 1.65;
}

#taxbridge-homepage .tb-footer {
	background: #102846;
	color: #DCE8F1;
	margin-top: 36px;
	border-radius: 44px 44px 0 0;
	overflow: hidden;
}

#taxbridge-homepage .tb-footer-inner {
	max-width: 1180px;
	margin: 0 auto;
	padding: 42px 24px 22px;
	display: grid;
	grid-template-columns: 1.2fr .9fr .9fr;
	gap: 28px;
}

#taxbridge-homepage .tb-footer h4 {
	color: #fff;
	font-size: 18px;
	margin-bottom: 12px;
}

#taxbridge-homepage .tb-footer p,
#taxbridge-homepage .tb-footer li,
#taxbridge-homepage .tb-footer a {
	color: #DCE8F1;
	font-size: 15px;
	line-height: 1.7;
	text-decoration: none;
	margin: 0;
}

#taxbridge-homepage .tb-footer ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

#taxbridge-homepage .tb-footer li {
	margin-bottom: 10px;
}

#taxbridge-homepage .tb-footer-bottom {
	max-width: 1180px;
	margin: 0 auto;
	padding: 16px 24px 22px;
	border-top: 1px solid rgba(255,255,255,0.12);
	display: flex;
	justify-content: space-between;
	gap: 12px;
	flex-wrap: wrap;
}

#taxbridge-homepage .tb-note {
	margin-top: 14px;
	font-size: 14px;
	color: #8FA2B8;
}

@media (max-width: 1100px) {
	#taxbridge-homepage .tb-card-grid-4 {
		grid-template-columns: repeat(2,1fr);
	}
	
	#taxbridge-homepage .tb-why-grid {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 860px) {
	#taxbridge-homepage h1 {
		font-size: 42px;
	}
	
	#taxbridge-homepage h2 {
		font-size: 34px;
	}
	
	#taxbridge-homepage .tb-grid-2,
	  #taxbridge-homepage .tb-faq-grid,
	  #taxbridge-homepage .tb-footer-inner {
		grid-template-columns: 1fr;
	}
	
	#taxbridge-homepage .tb-panel,
	  #taxbridge-homepage .tb-soft {
		border-radius: 28px;
	}
}

@media (max-width: 640px) {
	#taxbridge-homepage .tb-container {
		padding: 0 16px;
	}
	
	#taxbridge-homepage .tb-card-grid-4,
	  #taxbridge-homepage .tb-why-grid {
		grid-template-columns: 1fr;
	}
	
	#taxbridge-homepage p {
		font-size: 17px;
	}
	
	#taxbridge-homepage .tb-subtext {
		font-size: 19px;
	}
	
	#taxbridge-homepage .tb-check-list li {
		font-size: 18px;
	}
/* Hide page title / title area */
.page .entry-title,
.page-title,
.entry-title,
h1.entry-title,
.post-title,
.wp-block-post-title,
.entry-header,
.page-header,
header.entry-header,
.page .entry-header,
.page .page-header {
  display: none !important;
  margin: 0 !important;
  padding: 0 !important;
}
body.page-id-4 .entry-title,
body.page-id-4 .page-title,
body.page-id-4 h1.entry-title,
body.page-id-4 .entry-header,
body.page-id-4 .page-header,
body.page-id-4 .titlebar,
body.page-id-4 .page-title-bar,
body.page-id-4 .page-heading,
body.page-id-4 .page-title-wrapper,
body.page-id-4 .main-title,
body.page-id-4 .post-title {
  display: none !important;
  height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
}