/*
 * TherapyBuilt — sales.css
 * Loaded only on the front page / sales template.
 *
 * Fonts: Cormorant Garamond (display) + DM Sans (body)
 * via Google Fonts — loaded in front-page.php
 */

/* ============================================================
   Reset + tokens
   ============================================================ */

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

:root {
	--sage:          #5a7a5e;
	--sage-dark:     #3f5941;
	--sage-light:    #d4e5d6;
	--sage-pale:     #eef4ef;
	--terra:         #b0714e;
	--terra-light:   #f0ddd3;
	--off-white:     #faf8f5;
	--warm-white:    #fff;
	--ink:           #1e211e;
	--ink-mid:       #3d4039;
	--ink-muted:     #6b7069;
	--border:        #e4e0d8;
	--font-display:  'Cormorant Garamond', Georgia, serif;
	--font-body:     'DM Sans', system-ui, sans-serif;
	--max:           1080px;
	--nav-h:         64px;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
	font-family: var(--font-body);
	background: var(--off-white);
	color: var(--ink-mid);
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}

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

/* ============================================================
   Utility
   ============================================================ */

.tb-container {
	max-width: var(--max);
	margin: 0 auto;
	padding: 0 24px;
}

.tb-eyebrow {
	display: inline-block;
	font-family: var(--font-body);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--sage);
	margin-bottom: 16px;
}

.tb-section {
	padding: 112px 0;
}

/* ============================================================
   Shared section typography helpers
   ============================================================ */

.tb-section-headline {
	font-family: var(--font-display);
	font-size: clamp(28px, 3.5vw, 44px);
	font-weight: 600;
	color: var(--ink);
	line-height: 1.2;
	letter-spacing: -0.02em;
	margin-bottom: 16px;
}

.tb-section-sub {
	font-size: 16px;
	color: var(--ink-muted);
	line-height: 1.7;
}

/* ============================================================
   Section backgrounds
   ============================================================ */

.tb-section--sage-pale {
	background: var(--sage-pale);
	border-top: 1px solid var(--sage-light);
	border-bottom: 1px solid var(--sage-light);
}

.tb-section--warm {
	background: var(--off-white);
}

.tb-section--white {
	background: var(--warm-white);
	border-top: 1px solid var(--border);
	border-bottom: 1px solid var(--border);
}

.tb-section--sage {
	background: var(--sage);
}

.tb-section--ink {
	background: var(--ink);
}

/* Fade-in on scroll */
.tb-reveal {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity 0.6s ease, transform 0.6s ease;
}

.tb-reveal.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.tb-reveal-delay-1 { transition-delay: 0.1s; }
.tb-reveal-delay-2 { transition-delay: 0.2s; }
.tb-reveal-delay-3 { transition-delay: 0.3s; }
.tb-reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================================
   Nav
   ============================================================ */

.tb-nav {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
	height: var(--nav-h);
	display: flex;
	align-items: center;
	background: rgba(250,248,245,0.92);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border-bottom: 1px solid transparent;
	transition: border-color 0.2s, box-shadow 0.2s;
}

.tb-nav.is-scrolled {
	border-bottom-color: var(--border);
	box-shadow: 0 1px 16px rgba(0,0,0,0.05);
}

.tb-nav__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	max-width: var(--max);
	margin: 0 auto;
	padding: 0 24px;
}

.tb-nav__logo {
	display: flex;
	flex-direction: column;
	text-decoration: none;
	gap: 1px;
}

.tb-nav__logo-name {
	font-family: var(--font-display);
	font-size: 22px;
	font-weight: 600;
	color: var(--ink);
	line-height: 1;
	letter-spacing: -0.01em;
}

.tb-nav__logo-img {
	width: auto;
	display: block;
	height: 36px; /* default (medium) */
}

/* Customizer Size Variants */
.tb-nav__logo-img--thumbnail { height: 28px; }
.tb-nav__logo-img--medium    { height: 36px; }
.tb-nav__logo-img--large     { height: 46px; }
.tb-nav__logo-img--full      { height: 56px; }



.tb-nav__links {
	display: flex;
	align-items: center;
	gap: 32px;
	list-style: none;
}

.tb-nav__links a {
	font-size: 13px;
	font-weight: 500;
	color: var(--ink-muted);
	text-decoration: none;
	transition: color 0.15s;
}

.tb-nav__links a:hover { color: var(--ink); }

.tb-nav__links .tb-nav__demo-link {
	color: var(--sage);
	font-weight: 600;
	border: 1.5px solid var(--sage-light);
	padding: 5px 12px;
	border-radius: 20px;
	transition: background 0.15s, border-color 0.15s;
}

.tb-nav__links .tb-nav__demo-link:hover {
	background: var(--sage-pale);
	border-color: var(--sage);
	color: var(--sage-dark);
}

.tb-nav__cta {
	display: inline-flex;
	align-items: center;
	padding: 9px 20px;
	background: var(--sage);
	color: #fff !important;
	font-size: 13px;
	font-weight: 600;
	border-radius: 6px;
	text-decoration: none;
	transition: background 0.15s;
}

.tb-nav__cta:hover { background: var(--sage-dark); }

/* ============================================================
   Hero
   ============================================================ */

.tb-hero {
	padding-top: calc(var(--nav-h) + 80px);
	padding-bottom: 80px;
	background: var(--off-white);
	position: relative;
	overflow: hidden;
}

.tb-hero__proof {
	display: flex;
	align-items: center;
	gap: 5px;
	margin-top: 28px;
	font-size: 13px;
	color: var(--ink-muted);
	font-weight: 500;
	flex-wrap: wrap;
}

/* When WP admin bar is present it pushes the fixed nav down 32px (desktop) */
.admin-bar .tb-nav {
	top: 32px;
}

@media screen and (max-width: 782px) {
	.admin-bar .tb-nav {
		top: 46px;
	}
}

/* Subtle texture */
.tb-hero::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image: radial-gradient(circle at 70% 40%, rgba(90,122,94,0.06) 0%, transparent 60%),
	                  radial-gradient(circle at 20% 80%, rgba(176,113,78,0.05) 0%, transparent 50%);
	pointer-events: none;
}

.tb-browser-mockup{
    position:relative;
    z-index:2;
}

.tb-browser-mockup:before{
    content:"";
    position:absolute;
    inset:-60px -120px -60px -120px;
    background:radial-gradient(circle at center, rgba(0,0,0,.08), transparent 70%);
    z-index:-1;
}

.tb-hero__headline {
    grid-column: 1 / -1;
    max-width: 900px;
    margin-bottom: 24px;
}

.tb-hero__inner {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 56px;
}

.tb-hero__credential {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: var(--sage-pale);
	border: 1px solid var(--sage-light);
	border-radius: 20px;
	padding: 5px 14px 5px 8px;
	font-size: 12px;
	font-weight: 600;
	color: var(--sage-dark);
	margin-bottom: 8px;
    white-space: nowrap;
}

.tb-hero__credential-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--sage);
	flex-shrink: 0;
}

.tb-hero__headline {
	font-family: var(--font-display);
	font-size: clamp(46px, 6vw, 74px);
	font-weight: 600;
	color: var(--ink);
	line-height: 1.05;
	letter-spacing: -0.025em;
	margin-bottom: 24px;
}

.tb-hero__headline em {
	font-style: italic;
	color: var(--sage);
}

.tb-hero__sub {
	font-size: 17px;
	color: var(--ink-mid);
	line-height: 1.7;
	max-width: 480px;
	margin-bottom: 40px;
}

.tb-hero__actions {
	display: flex;
	align-items: center;
	gap: 16px;
	flex-wrap: wrap;
}

.tb-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 13px 26px;
	font-family: var(--font-body);
	font-size: 14px;
	font-weight: 600;
	border-radius: 7px;
	text-decoration: none;
	transition: all 0.15s;
	cursor: pointer;
	border: none;
	line-height: 1;
}

/* Ensure SVG icons always inherit button text color — prevents blue browser-default stroke */
.tb-btn svg,
.tb-btn svg * {
	color: inherit;
	stroke: currentColor;
}

.tb-btn--primary {
	background: var(--sage-dark);
	color: #fff;
	letter-spacing: 0.01em;
}

.tb-btn--primary:hover {
	background: #2e4331;
	transform: translateY(-1px);
	box-shadow: 0 4px 16px rgba(42,67,46,0.35);
}

.tb-btn--ghost {
	background: transparent;
	color: var(--ink-mid);
	border: 1.5px solid var(--border);
}

.tb-btn--ghost:hover {
	border-color: var(--sage);
	color: var(--sage);
}

.tb-hero__card {
	background: var(--warm-white);
	border: 1px solid var(--border);
	border-radius: 14px;
	overflow: hidden;
	box-shadow: 0 8px 40px rgba(0,0,0,0.08), 0 1px 3px rgba(0,0,0,0.04);
}

.tb-hero__card-header {
	background: var(--sage);
	padding: 16px 20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.tb-hero__card-title {
	font-family: var(--font-display);
	font-size: 18px;
	font-weight: 600;
	color: #fff;
}

.tb-hero__card-badge {
	background: rgba(255,255,255,0.2);
	color: #fff;
	font-size: 11px;
	font-weight: 600;
	padding: 3px 10px;
	border-radius: 20px;
}

.tb-hero__card-body { padding: 20px; }

.tb-profile-row {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 12px 0;
	border-bottom: 1px solid #f3f3f0;
}

.tb-profile-row:last-child { border-bottom: none; }

.tb-profile-avatar {
	width: 42px;
	height: 42px;
	border-radius: 50%;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--font-display);
	font-size: 16px;
	font-weight: 600;
	color: #fff;
}

.tb-profile-info { flex: 1; min-width: 0; }

.tb-profile-name {
	font-size: 13px;
	font-weight: 600;
	color: var(--ink);
	margin-bottom: 2px;
}

.tb-profile-creds {
	font-size: 11px;
	color: var(--ink-muted);
}

.tb-profile-status {
	display: flex;
	align-items: center;
	gap: 5px;
	font-size: 11px;
	font-weight: 600;
	white-space: nowrap;
}

.tb-profile-status--open { color: #1a7730; }
.tb-profile-status--closed { color: #999; }

.tb-profile-status-dot {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	flex-shrink: 0;
}

.tb-profile-status--open .tb-profile-status-dot { background: #1a7730; }
.tb-profile-status--closed .tb-profile-status-dot { background: #ccc; }

/* ============================================================
   Problem section — "Why it's different"
   ============================================================ */

.tb-problem__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 2px;
	border-radius: 12px;
	overflow: hidden;
	margin-top: 48px;
	border: 1px solid var(--border);
}

.tb-problem__col {
	padding: 40px;
	background: var(--warm-white);
}

.tb-problem__col--wrong {
	background: #fdf8f6;
}

.tb-problem__col-label {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	margin-bottom: 24px;
}

.tb-problem__col--wrong .tb-problem__col-label { color: #c0392b; }
.tb-problem__col--right .tb-problem__col-label { color: var(--sage); }

.tb-problem__list {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.tb-problem__item {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	font-size: 14px;
	color: var(--ink-mid);
	line-height: 1.5;
}

.tb-problem__icon {
	width: 20px;
	height: 20px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 11px;
	flex-shrink: 0;
	margin-top: 1px;
}

.tb-problem__col--wrong .tb-problem__icon {
	background: #fde8e6;
	color: #c0392b;
}

.tb-problem__col--right .tb-problem__icon {
	background: var(--sage-pale);
	color: var(--sage-dark);
}

/* ============================================================
   How it works
   ============================================================ */

.tb-steps {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2px;
	margin-top: 48px;
	border-radius: 12px;
	overflow: hidden;
	border: 1px solid var(--border);
}

.tb-step {
	padding: 40px 36px;
	background: var(--warm-white);
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.tb-step__num {
	font-family: var(--font-display);
	font-size: 56px;
	font-weight: 600;
	color: var(--sage);
	line-height: 1;
	opacity: 0.35;
}

.tb-step__title {
	font-family: var(--font-display);
	font-size: 22px;
	font-weight: 600;
	color: var(--ink);
	line-height: 1.2;
}

.tb-step__body {
	font-size: 14px;
	color: var(--ink-muted);
	line-height: 1.7;
}

/* ============================================================
   What's included
   ============================================================ */

.tb-includes__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 12px;
	margin-top: 48px;
}

.tb-include-card {
	background: var(--warm-white);
	border: 1px solid var(--border);
	border-radius: 10px;
	padding: 24px;
	display: flex;
	flex-direction: column;
	gap: 10px;
	transition: border-color 0.15s, box-shadow 0.15s;
}

.tb-include-card:hover {
	border-color: var(--sage-light);
	box-shadow: 0 4px 16px rgba(90,122,94,0.08);
}

.tb-include-card__icon {
	width: 36px;
	height: 36px;
	background: var(--sage-pale);
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.tb-include-card__icon svg {
	width: 18px;
	height: 18px;
	color: var(--sage);
}

.tb-include-card__title {
	font-size: 14px;
	font-weight: 700;
	color: var(--ink);
}

.tb-include-card__desc,
.tb-include-card__body {
	font-size: 13px;
	color: var(--ink-muted);
	line-height: 1.6;
}

/* ============================================================
   Pricing
   ============================================================ */
/* Pricing grid variants */
.tb-pricing__grid--two {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 24px;
}

.tb-pricing__grid.tb-pricing__grid--centered {
    display: grid;
    grid-template-columns: 1fr !important;
    max-width: 680px;
    margin: 24px auto 0;
}

/* Premium card two-column feature list */
.tb-pricing-card--premium .tb-pricing-card__premium-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 32px;
    width: 100%;
}

/* Responsive: stack everything on mobile */
@media (max-width: 768px) {
    .tb-pricing__grid--two {
        grid-template-columns: 1fr;
    }
    .tb-pricing-card--premium .tb-pricing-card__premium-cols {
        grid-template-columns: 1fr;
    }
}
.tb-pricing__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 48px;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}
.tb-pricing-card {
    background: var(--warm-white);
    border: 1.5px solid var(--border);
    border-radius: 14px;
    padding: 36px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.tb-pricing-card--featured {
    background: #f4f8f4;
    border-color: var(--sage);
    border-width: 2px;
    box-shadow: 0 4px 24px rgba(90,122,94,0.14);
    position: relative;
}
.tb-pricing-card__badge {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--sage-dark);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: 20px;
    white-space: nowrap;
}
.tb-pricing-card__label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ink-muted);
}
.tb-pricing-card--featured .tb-pricing-card__label {
    color: var(--sage);
}
.tb-pricing-card__price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    flex-wrap: wrap;
}
.tb-pricing-card__amount {
    font-family: var(--font-display);
    font-size: 52px;
    font-weight: 600;
    color: var(--ink);
    line-height: 1;
}
.tb-pricing-card__currency {
    font-family: var(--font-display);
    font-size: 24px;
    color: var(--ink-muted);
    margin-bottom: 4px;
}
.tb-pricing-card__period {
    font-size: 13px;
    color: var(--ink-muted);
    margin-left: 4px;
}
.tb-pricing-card__price-note {
    font-size: 13px;
    color: var(--ink-muted);
    margin-left: 6px;
    align-self: flex-end;
    padding-bottom: 6px;
}
.tb-pricing-card__price-note span {
    font-size: 11px;
}
.tb-pricing-card__desc {
    font-size: 14px;
    color: var(--ink-muted);
    line-height: 1.6;
}
.tb-pricing-card__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}
.tb-pricing-card__list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: var(--ink-mid);
    line-height: 1.5;
}
.tb-pricing-card__list li::before {
    content: '';
    width: 16px;
    height: 16px;
    background: var(--sage-pale);
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 1px;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 8l3.5 3.5L13 5' stroke='%235a7a5e' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.tb-pricing-card__addon {
    font-size: 12px;
    color: var(--ink-muted);
    border-top: 1px solid var(--border);
    padding-top: 14px;
    font-style: italic;
}
.tb-pricing__addon-note {
    max-width: 760px;
    margin: 24px auto 0;
    background: var(--warm-white);
    border: 1.5px solid var(--border);
    border-radius: 10px;
    padding: 18px 24px;
    font-size: 13px;
    color: var(--ink-muted);
    line-height: 1.6;
}
.tb-pricing__addon-note strong {
    color: var(--ink);
}
.tb-pricing__note {
    text-align: center;
    margin-top: 24px;
    font-size: 13px;
    color: var(--ink-muted);
}
.tb-pricing__note a {
    color: var(--sage-dark);
    text-decoration: underline;
}

/* ============================================================
   About / MSW section
   ============================================================ */

.tb-hero__inner {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
}

/* Credential pill - auto width, not stretched */
.tb-hero__credential {
    align-self: flex-start;
    margin-bottom: 8px;
}

/* Headline full width above the split */
.tb-hero__headline {
    margin-bottom: 40px;
}

/* Two-col row: content left, mockup right */
.tb-hero__split {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 56px;
    align-items: start;
}

/* Content and mockup are the two grid children */
.tb-hero__content {
    /* left column */
}

.tb-hero__inner > div:last-child {
    margin-top: -48px;
}

.tb-about__visual {
	position: relative;
}

.tb-about__credential-block {
	background: var(--warm-white);
	border: 1px solid var(--border);
	border-radius: 12px;
	padding: 32px;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.tb-about__cred-row {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 14px 0;
	border-bottom: 1px solid var(--border);
}

.tb-about__cred-row:last-child { border-bottom: none; padding-bottom: 0; }
.tb-about__cred-row:first-child { padding-top: 0; }

.tb-about__cred-icon {
	width: 40px;
	height: 40px;
	border-radius: 8px;
	background: var(--sage-pale);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	font-size: 18px;
}

.tb-about__cred-label {
	font-size: 11px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.07em;
	color: var(--ink-muted);
	margin-bottom: 2px;
}

.tb-about__cred-value {
	font-size: 14px;
	font-weight: 600;
	color: var(--ink);
}

.tb-about__headline {
	font-family: var(--font-display);
	font-size: clamp(30px, 3.5vw, 44px);
	font-weight: 600;
	color: var(--ink);
	line-height: 1.2;
	letter-spacing: -0.01em;
	margin-bottom: 20px;
}

.tb-about__body {
	font-size: 16px;
	color: var(--ink-muted);
	line-height: 1.8;
	margin-bottom: 16px;
}

/* ============================================================
   CTA Banner
   ============================================================ */

.tb-cta-banner {
	background: var(--sage);
	padding: 80px 24px;
	text-align: center;
}

.tb-cta-banner__headline {
	font-family: var(--font-display);
	font-size: clamp(32px, 4vw, 52px);
	font-weight: 600;
	color: #fff;
	line-height: 1.15;
	letter-spacing: -0.01em;
	margin-bottom: 16px;
}

.tb-cta-banner__sub {
	font-size: 16px;
	color: rgba(255,255,255,0.75);
	margin-bottom: 36px;
	max-width: 480px;
	margin-left: auto;
	margin-right: auto;
}

.tb-btn--white {
	background: #fff;
	color: var(--sage-dark);
}

.tb-btn--white:hover {
	background: var(--sage-pale);
	transform: translateY(-1px);
	box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

.tb-btn--outline-white {
	background: transparent;
	color: #fff !important;
	border: 1.5px solid rgba(255,255,255,0.4);
}

.tb-btn--outline-white:hover {
	border-color: rgba(255,255,255,0.8);
	background: rgba(255,255,255,0.08);
}

/* Also fix ghost button on dark bg — used for "Explore the Demo" in contact area */
.tb-section--ink .tb-btn--ghost {
	color: rgba(255,255,255,0.85) !important;
	border-color: rgba(255,255,255,0.25) !important;
}

.tb-section--ink .tb-btn--ghost:hover {
	color: #fff !important;
	border-color: rgba(255,255,255,0.6) !important;
	background: rgba(255,255,255,0.06);
}

/* Testimonials split layout */
.tb-testimonials-grid{
	display:grid;
	grid-template-columns: 1.1fr .9fr;
	gap: 24px;
	align-items: start;
}

@media (max-width: 860px){
	.tb-testimonials-grid{
		grid-template-columns: 1fr;
	}
}

/* Proof card (matches calm card aesthetic) */
.tb-proof{
	background: rgba(255,255,255,.55);
	border: 1px solid rgba(17,24,39,.08);
	border-radius: 16px;
	padding: 22px 22px 20px;
	box-shadow: 0 10px 30px rgba(17,24,39,.06);
	backdrop-filter: blur(6px);
}

.tb-proof__eyebrow{
	font-size: 12px;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: rgba(17,24,39,.55);
	margin-bottom: 8px;
}

.tb-proof__title{
	margin: 0 0 14px;
	font-size: 18px;
	line-height: 1.25;
	letter-spacing: -0.01em;
}

.tb-proof__list{
	list-style: none;
	padding: 0;
	margin: 0 0 16px;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.tb-proof__list li{
	display: grid;
	grid-template-columns: 10px 1fr;
	gap: 10px;
	color: rgba(17,24,39,.78);
	font-size: 14.5px;
	line-height: 1.55;
}

.tb-proof__dot{
	width: 8px;
	height: 8px;
	border-radius: 999px;
	background: var(--sage);
	margin-top: 7px;
	box-shadow: 0 0 0 4px rgba(107,142,115,.16);
}

.tb-proof__note{
	display:flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
	padding-top: 14px;
	border-top: 1px solid rgba(17,24,39,.08);
	color: rgba(17,24,39,.72);
	font-size: 13.5px;
	line-height: 1.45;
}

.tb-proof__badge{
	display:inline-flex;
	align-items:center;
	border: 1px solid rgba(17,24,39,.10);
	border-radius: 999px;
	padding: 6px 10px;
	font-size: 12px;
	background: rgba(255,255,255,.65);
}

/* ============================================================
   Footer
   ============================================================ */

.tb-footer {
	background: var(--ink);
	padding: 56px 0 32px;
}

.tb-footer__inner {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr 0.8fr;
	gap: 48px;
	margin-bottom: 48px;
}

.tb-footer__brand-name {
	font-family: var(--font-display);
	font-size: 26px;
	font-weight: 600;
	color: #fff;
	margin-bottom: 8px;
}

.tb-footer__brand-tag {
	font-size: 12px;
	color: rgba(255,255,255,0.45);
	line-height: 1.6;
	max-width: 240px;
}

.tb-footer__col-title {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: rgba(255,255,255,0.4);
	margin-bottom: 16px;
}

.tb-footer__links {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.tb-footer__links a {
	font-size: 13px;
	color: rgba(255,255,255,0.6);
	text-decoration: none;
	transition: color 0.15s;
}

.tb-footer__links a:hover { color: #fff; }

.tb-footer__bottom {
	border-top: 1px solid rgba(255,255,255,0.08);
	padding-top: 24px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-size: 12px;
	color: rgba(255,255,255,0.3);
}

.tb-footer__bottom a {
	color: rgba(255,255,255,0.4);
	text-decoration: none;
}

.tb-footer__bottom a:hover { color: rgba(255,255,255,0.7); }

/* ============================================================
   Demo callout
   ============================================================ */

.tb-demo-callout {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 64px;
	align-items: center;
}

.tb-browser-mockup {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border);
    transform: scale(1.05);
    box-shadow: 0 30px 80px rgba(0,0,0,0.18);
}

.tb-browser-mockup__bar {
	background: #f0efed;
	padding: 10px 14px;
	display: flex;
	align-items: center;
	gap: 12px;
	border-bottom: 1px solid var(--border);
}

.tb-browser-mockup__dots {
	display: flex;
	gap: 5px;
	flex-shrink: 0;
}

.tb-browser-mockup__dots span {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: #ddd;
	display: block;
}

.tb-browser-mockup__dots span:nth-child(1) { background: #ff6058; }
.tb-browser-mockup__dots span:nth-child(2) { background: #ffc130; }
.tb-browser-mockup__dots span:nth-child(3) { background: #27c93f; }

.tb-browser-mockup__url {
	flex: 1;
	background: #e8e7e4;
	border-radius: 4px;
	padding: 4px 10px;
	font-size: 11px;
	color: #888;
	font-family: var(--font-body);
	text-align: center;
}

.tb-browser-mockup__screen {
	background: var(--warm-white);
}

/* ============================================================
   Contact form
   ============================================================ */

.tb-contact-form {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.tb-form-row { display: flex; flex-direction: column; }

.tb-form-row--split {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}

.tb-form-field {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.tb-form-label {
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.07em;
	color: var(--ink-muted);
	display: flex;
	align-items: center;
	gap: 6px;
}

.tb-form-label__optional {
	font-weight: 400;
	text-transform: none;
	letter-spacing: 0;
	font-size: 11px;
	color: #aaa;
}

.tb-form-input {
	width: 100%;
	padding: 11px 14px;
	border: 1.5px solid var(--border);
	border-radius: 7px;
	font-family: var(--font-body);
	font-size: 14px;
	color: var(--ink);
	background: var(--warm-white);
	outline: none;
	transition: border-color 0.15s, box-shadow 0.15s;
	-webkit-appearance: none;
	appearance: none;
}

.tb-form-input:focus {
	border-color: var(--sage);
	box-shadow: 0 0 0 3px rgba(90,122,94,0.1);
}

.tb-form-textarea {
	resize: vertical;
	min-height: 120px;
	line-height: 1.6;
}

.tb-form-select {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b7069' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 14px center;
	padding-right: 36px;
	cursor: pointer;
}

.tb-form-footer {
	display: flex;
	align-items: center;
	gap: 16px;
	padding-top: 4px;
}

.tb-form-note {
	font-size: 12px;
	color: var(--ink-muted);
}

.tb-form-error {
	padding: 12px 16px;
	background: #fdf0ef;
	border: 1px solid #f5c6c3;
	border-radius: 7px;
	font-size: 13px;
	color: #a93226;
}

.tb-form-success {
	text-align: center;
	padding: 48px 32px;
	background: var(--warm-white);
	border: 1px solid var(--border);
	border-radius: 12px;
}

.tb-form-success__icon {
	width: 56px;
	height: 56px;
	background: var(--sage-pale);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 16px;
	color: var(--sage);
}

.tb-form-success__title {
	font-family: var(--font-display);
	font-size: 28px;
	font-weight: 600;
	color: var(--ink);
	margin-bottom: 8px;
}

.tb-form-success__body {
	font-size: 15px;
	color: var(--ink-muted);
}

/* ============================================================
   Pricing note
   ============================================================ */

.tb-pricing__note {
	margin-top: 32px;
	font-size: 14px;
	color: var(--ink-muted);
	text-align: center;
}

.tb-pricing__note a {
	color: var(--sage-dark);
	text-decoration: underline;
	text-underline-offset: 2px;
}

.tb-pricing__note a:hover { color: var(--sage); }

/* ============================================================
   FAQ accordion
   ============================================================ */

.tb-faq__inner {
	display: grid;
	grid-template-columns: 1fr 1.5fr;
	gap: 80px;
	align-items: start;
}

.tb-faq__header { position: sticky; top: calc(var(--nav-h) + 32px); }

.tb-faq__list {
	display: flex;
	flex-direction: column;
}

.tb-faq__item {
	border-bottom: 1px solid var(--border);
}

.tb-faq__item:first-child { border-top: 1px solid var(--border); }

.tb-faq__question {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 22px 0;
	font-size: 16px;
	font-weight: 600;
	color: var(--ink);
	cursor: pointer;
	list-style: none;
	line-height: 1.4;
	transition: color 0.15s;
}

.tb-faq__question::-webkit-details-marker { display: none; }
.tb-faq__question::marker               { display: none; }

.tb-faq__question:hover { color: var(--sage-dark); }

.tb-faq__chevron {
	width: 20px;
	height: 20px;
	flex-shrink: 0;
	border-radius: 50%;
	background: var(--sage-pale);
	position: relative;
	transition: background 0.15s, transform 0.25s ease;
}

.tb-faq__chevron::before,
.tb-faq__chevron::after {
	content: '';
	position: absolute;
	background: var(--sage-dark);
	border-radius: 2px;
	top: 50%;
	left: 50%;
}

.tb-faq__chevron::before {
	width: 8px;
	height: 1.5px;
	transform: translate(-50%, -50%);
}

.tb-faq__chevron::after {
	width: 1.5px;
	height: 8px;
	transform: translate(-50%, -50%);
	transition: transform 0.25s ease, opacity 0.2s ease;
}

.tb-faq__item[open] .tb-faq__chevron {
	background: var(--sage-light);
	transform: rotate(45deg);
}

.tb-faq__answer {
	padding-bottom: 22px;
}

.tb-faq__answer p {
	font-size: 15px;
	color: var(--ink-muted);
	line-height: 1.75;
}

/* ============================================================
   CTA Strip — sage bg
   ============================================================ */

.tb-cta-strip {
	background: var(--sage-dark);
	padding: 56px 0;
}

.tb-cta-strip__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 40px;
	flex-wrap: wrap;
}

.tb-cta-strip__headline {
	font-family: var(--font-display);
	font-size: clamp(22px, 2.5vw, 30px);
	font-weight: 600;
	color: #fff;
	line-height: 1.2;
	letter-spacing: -0.01em;
	margin-bottom: 6px;
}

.tb-cta-strip__sub {
	font-size: 15px;
	color: rgba(255,255,255,0.65);
	line-height: 1.5;
}

.tb-cta-strip__actions {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-shrink: 0;
	flex-wrap: wrap;
}

/* ============================================================
   Testimonials
   ============================================================ */

.tb-testimonial {
	background: var(--warm-white);
	border: 1px solid var(--border);
	border-radius: 14px;
	padding: 44px 44px 40px;
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 24px;
	box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

/* Decorative opening quote mark — sits in the top-left corner as background art,
   clipped by overflow:hidden on the card, never overlapping stars */
.tb-testimonial::before {
	content: '\201C';
	position: absolute;
	top: -24px;
	left: 28px;
	font-family: var(--font-display);
	font-size: 140px;
	font-weight: 700;
	color: var(--sage-light);
	line-height: 1;
	pointer-events: none;
	user-select: none;
	z-index: 0;
	opacity: 0.55;
}

.tb-testimonial__stars,
.tb-testimonial__quote,
.tb-testimonial__author {
	position: relative;
	z-index: 1;
}

.tb-testimonial__stars {
	display: flex;
	align-items: center;
	gap: 3px;
}

.tb-testimonial__quote {
	font-family: var(--font-display);
	font-size: 22px;
	font-style: italic;
	font-weight: 500;
	color: var(--ink);
	line-height: 1.5;
	letter-spacing: -0.01em;
	padding-top: 20px; /* clear the decorative quote mark */
	position: relative;
}

.tb-testimonial__author {
	display: flex;
	align-items: center;
	gap: 14px;
	padding-top: 8px;
	border-top: 1px solid var(--border);
}

.tb-testimonial__avatar {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: var(--sage);
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--font-display);
	font-size: 18px;
	font-weight: 600;
	color: #fff;
	flex-shrink: 0;
}

.tb-testimonial__name {
	font-size: 14px;
	font-weight: 700;
	color: var(--ink);
	margin-bottom: 2px;
}

.tb-testimonial__practice {
	font-size: 12px;
	color: var(--ink-muted);
}

/* ============================================================
   Form error — dark bg variant (contact section)
   ============================================================ */

/* The default .tb-form-error works on light backgrounds.
   On the dark contact section we need a readable variant. */
.tb-contact__form-wrap .tb-form-error {
	background: rgba(220, 80, 60, 0.15);
	border-color: rgba(220, 80, 60, 0.35);
	color: #ffb3aa;
}

/* LinkedIn footer link */
.tb-footer__linkedin {
	display: inline-flex;
	align-items: center;
	gap: 6px;
}
/* ============================================================
   MOBILE NAV — hamburger + drawer
   ============================================================ */

/* Hide hamburger on desktop */
.tb-nav__hamburger { display: none; }

/* Hide drawer on desktop */
.tb-nav__drawer { display: none; }

/* Mobile — show hamburger, hide desktop nav and CTA */
@media (max-width: 860px) {

	.tb-nav__desktop    { display: none; }
	.tb-nav__cta--desktop { display: none; }

	.tb-nav__hamburger {
		display: flex;
		flex-direction: column;
		justify-content: center;
		gap: 5px;
		width: 40px;
		height: 40px;
		padding: 8px;
		background: none;
		border: 1.5px solid var(--border);
		border-radius: 7px;
		cursor: pointer;
		flex-shrink: 0;
		transition: border-color 0.15s;
	}

	.tb-nav__hamburger:hover {
		border-color: var(--sage);
	}

	.tb-nav__hamburger-bar {
		display: block;
		width: 100%;
		height: 1.5px;
		background: var(--ink);
		border-radius: 2px;
		transition: transform 0.25s ease, opacity 0.2s ease;
		transform-origin: center;
	}

	/* Animate to X when open */
	.tb-nav--open .tb-nav__hamburger-bar:nth-child(1) {
		transform: translateY(6.5px) rotate(45deg);
	}
	.tb-nav--open .tb-nav__hamburger-bar:nth-child(2) {
		opacity: 0;
		transform: scaleX(0);
	}
	.tb-nav--open .tb-nav__hamburger-bar:nth-child(3) {
		transform: translateY(-6.5px) rotate(-45deg);
	}

	/* Drawer */
	.tb-nav__drawer {
		display: block;
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background: rgba(250,248,245,0.98);
		backdrop-filter: blur(16px);
		-webkit-backdrop-filter: blur(16px);
		border-bottom: 1px solid var(--border);
		box-shadow: 0 8px 32px rgba(0,0,0,0.08);
		overflow: hidden;
		max-height: 0;
		transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
	}

	.tb-nav--open .tb-nav__drawer {
		max-height: 480px;
	}

	.tb-nav__drawer-links {
		list-style: none;
		padding: 8px 0;
		border-bottom: 1px solid var(--border);
	}

	.tb-nav__drawer-links li a {
		display: block;
		padding: 13px 24px;
		font-size: 15px;
		font-weight: 500;
		color: var(--ink-mid);
		text-decoration: none;
		transition: background 0.15s, color 0.15s;
	}

	.tb-nav__drawer-links li a:hover {
		background: var(--sage-pale);
		color: var(--sage-dark);
	}

	.tb-nav__drawer-cta {
		padding: 16px 24px 20px;
	}

	/* Prevent body scroll when drawer open */
	body.tb-nav-open {
		overflow: hidden;
	}
}

/* ============================================================
   RESPONSIVE — 900px (tablet)
   ============================================================ */

@media (max-width: 900px) {

	/* Hero */
	.tb-hero__split          { grid-template-columns: 1fr; gap: 32px; }
	.tb-hero__card           { display: none; }
	.tb-browser-mockup       { display: none; }

	/* Problem */
	.tb-problem__grid        { grid-template-columns: 1fr; }

	/* Steps */
	.tb-steps                { grid-template-columns: 1fr; }

	/* System cards */
	.tb-includes__grid       { grid-template-columns: 1fr 1fr; }

	/* Pricing */
	.tb-pricing__grid        { grid-template-columns: 1fr; max-width: 420px; }

	/* About */
	.tb-about__inner         { grid-template-columns: 1fr; gap: 40px; }

	/* FAQ */
	.tb-faq__inner           { grid-template-columns: 1fr; gap: 40px; }
	.tb-faq__header          { position: static; }

	/* CTA Strip */
	.tb-cta-strip__inner     { flex-direction: column; align-items: flex-start; gap: 28px; }

	/* Contact */
	.tb-contact__grid        { grid-template-columns: 1fr; gap: 48px; }

	/* Testimonial */
	.tb-testimonial          { padding: 36px 32px; }
	.tb-testimonial::before  { font-size: 80px; top: 8px; left: 24px; }

	/* Footer */
	.tb-footer__inner        { grid-template-columns: 1fr 1fr; gap: 40px; }

}

/* ============================================================
   RESPONSIVE — 600px (mobile)
   ============================================================ */

@media (max-width: 600px) {

	/* Global */
	.tb-section              { padding: 56px 0; }
	.tb-container            { padding: 0 20px; }
	.tb-btn                  { min-height: 48px; }

	/* Hero */
	.tb-hero {
		padding-top: calc(var(--nav-h) + 56px);
		padding-bottom: 64px;
	}
	.tb-hero__credential     { font-size: 11px; white-space: normal; text-align: center; justify-content: center; }
	.tb-hero__sub            { font-size: 15px; }
	.tb-hero__actions        { flex-direction: column; align-items: stretch; }
	.tb-hero__actions .tb-btn { justify-content: center; padding: 15px 24px; }

	/* System cards */
	.tb-includes__grid       { grid-template-columns: 1fr; }
	.tb-include-card         { padding: 24px 20px; }

	/* FAQ */
	.tb-faq__question        { font-size: 15px; padding: 18px 0; }

	/* CTA Strip */
	.tb-cta-strip            { padding: 40px 0; }
	.tb-cta-strip__actions   { width: 100%; }
	.tb-cta-strip__actions .tb-btn { flex: 1; justify-content: center; }

	/* Steps */
	.tb-steps                { border-radius: 0; }
	.tb-step                 { padding: 28px 24px; }

	/* Pricing */
	.tb-pricing-card         { padding: 28px 24px; }
	.tb-pricing-card--featured { margin-top: 16px; }
	.tb-pricing-card__amount { font-size: 44px; }

	/* Testimonial */
	.tb-testimonial          { padding: 28px 24px; }
	.tb-testimonial::before  { display: none; }
	.tb-testimonial__quote   { font-size: 18px; }

	/* Contact form */
	.tb-contact__form-wrap   { padding: 28px 20px; background: #fff !important; border: none !important; border-radius: 12px; }
	.tb-contact__grid        { gap: 32px; }
	.tb-form-row--split      { grid-template-columns: 1fr; }
	.tb-form-footer          { flex-direction: column; align-items: stretch; }
	.tb-form-footer .tb-btn  { width: 100%; justify-content: center; min-height: 52px; font-size: 15px; }
	.tb-form-note--light     { text-align: center; }

	/* On mobile, switch dark inputs to light inside white card */
	.tb-form-input--dark {
		background: var(--off-white) !important;
		border-color: var(--border) !important;
		color: var(--ink) !important;
	}
	.tb-form-input--dark::placeholder { color: var(--ink-muted) !important; opacity: 0.6; }
	.tb-form-input--dark:focus {
		border-color: var(--sage) !important;
		box-shadow: 0 0 0 3px rgba(90,122,94,0.1) !important;
	}
	.tb-form-input--dark.tb-form-select {
		background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b7069' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") !important;
	}
	.tb-form-label--light    { color: var(--ink-muted) !important; }
	.tb-form-required        { color: var(--terra) !important; }

	/* Hide optional fields on mobile for reduced friction */
	.tb-contact-field--optional-mobile { display: none; }

	/* Contact copy tightening */
	.tb-contact__trust       { margin-bottom: 24px; }
	.tb-contact__demo-link   { display: none; }

	/* Footer */
	.tb-footer__inner        { grid-template-columns: 1fr; gap: 32px; }

	/* 404 */
	.tb-404__actions         { flex-direction: column; align-items: stretch; }
	.tb-404__actions .tb-btn { justify-content: center; }

	/* Legal */
	.tb-legal-hero           { padding-top: calc(var(--nav-h) + 40px); }
	.tb-legal-body           { padding: 48px 0 64px; }

}

/* ============================================================
   RESPONSIVE — 400px (small phones)
   ============================================================ */

@media (max-width: 400px) {

	.tb-hero__headline       { font-size: 38px; }
	.tb-contact__headline    { font-size: 28px; }
	.tb-pricing-card__amount { font-size: 40px; }

}

/* ============================================================
   Footer — light variant
   ============================================================ */

.tb-footer--light {
	background: var(--off-white);
	border-top: 1px solid var(--border);
}

.tb-footer--light .tb-footer__brand-name { color: var(--ink); }
.tb-footer--light .tb-footer__brand-tag  { color: var(--ink-muted); }

.tb-footer--light .tb-footer__col-title {
	color: var(--ink-muted);
	opacity: 0.6;
}

.tb-footer--light .tb-footer__links a        { color: var(--ink-muted); }
.tb-footer--light .tb-footer__links a:hover  { color: var(--ink); }

.tb-footer--light .tb-footer__bottom {
	color: var(--ink-muted);
	border-top-color: var(--border);
	opacity: 0.7;
}

.tb-footer--light .tb-footer__bottom a        { color: var(--ink-muted); }
.tb-footer--light .tb-footer__bottom a:hover  { color: var(--ink); }

/* ============================================================
   Contact section — dark bg, two-column
   ============================================================ */

.tb-contact__grid {
	display: grid;
	grid-template-columns: 1fr 1.1fr;
	gap: 80px;
	align-items: start;
}

.tb-contact__copy { padding-top: 8px; }

.tb-eyebrow--on-dark { color: var(--sage-light); }

.tb-contact__headline {
	font-family: var(--font-display);
	font-size: clamp(30px, 3.5vw, 46px);
	font-weight: 600;
	color: #fff;
	line-height: 1.15;
	letter-spacing: -0.02em;
	margin-bottom: 18px;
}

.tb-contact__sub {
	font-size: 16px;
	color: rgba(255,255,255,0.6);
	line-height: 1.75;
	max-width: 400px;
	margin-bottom: 36px;
}

.tb-contact__trust {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-bottom: 40px;
}

.tb-contact__trust-item {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 14px;
	color: rgba(255,255,255,0.55);
}

.tb-contact__trust-item svg {
	color: var(--sage-light);
	flex-shrink: 0;
}

.tb-contact__demo-link {
	border-top: 1px solid rgba(255,255,255,0.1);
	padding-top: 28px;
}

.tb-contact__demo-anchor {
	display: inline-flex;
	align-items: flex-start;
	gap: 14px;
	text-decoration: none;
	transition: opacity 0.15s;
}

.tb-contact__demo-anchor:hover { opacity: 0.75; }

.tb-contact__demo-icon {
	width: 36px;
	height: 36px;
	background: rgba(255,255,255,0.08);
	border: 1px solid rgba(255,255,255,0.12);
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	color: rgba(255,255,255,0.55);
	margin-top: 2px;
}

/* Ensure SVG inside the demo icon inherits color, not browser default blue */
.tb-contact__demo-icon svg,
.tb-contact__demo-icon svg * {
	color: inherit;
	stroke: currentColor;
}

.tb-contact__demo-label {
	font-size: 11px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: rgba(255,255,255,0.35);
	display: block;
}

.tb-contact__demo-text {
	font-size: 14px;
	color: rgba(255,255,255,0.7);
	font-weight: 500;
}

/* Form card */
.tb-contact__form-wrap {
	background: rgba(255,255,255,0.05) !important;
	border: 1px solid rgba(255,255,255,0.1) !important;
	border-radius: 16px;
	padding: 40px;
}

/* Dark input variant */
.tb-form-label--light  { color: rgba(255,255,255,0.5); }
.tb-form-required      { color: #f4a89a; font-weight: 400; }
.tb-form-note--light   { color: rgba(255,255,255,0.35); }

.tb-form-input--dark {
	background: rgba(255,255,255,0.07) !important;
	border-color: rgba(255,255,255,0.14) !important;
	color: #fff !important;
}

.tb-form-input--dark::placeholder { color: rgba(255,255,255,0.3); }

.tb-form-input--dark:focus {
	border-color: var(--sage-light) !important;
	box-shadow: 0 0 0 3px rgba(90,122,94,0.25);
	background: rgba(255,255,255,0.1) !important;
	outline: none;
}

.tb-form-input--dark.tb-form-select {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.4)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") !important;
	background-repeat: no-repeat !important;
	background-position: right 14px center !important;
	padding-right: 36px;
}

.tb-form-input--dark option { background: #2a2e2a; color: #fff; }

/* Honeypot */
.tb-form-honeypot {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

/* Spinner */
.tb-spin { animation: tb-spin 0.8s linear infinite; }

@keyframes tb-spin {
	from { transform: rotate(0deg); }
	to   { transform: rotate(360deg); }
}

/* Success — dark bg */
.tb-form-success--dark {
	text-align: center;
	padding: 48px 32px;
	/* Override the base white bg — it's inside the dark contact section */
	background: transparent;
	border: none;
	border-radius: 0;
	box-shadow: none;
}
.tb-form-success--dark .tb-form-success__title {
	color: #fff;
	font-family: var(--font-display);
	font-size: 28px;
	font-weight: 600;
	margin-bottom: 12px;
}
.tb-form-success--dark .tb-form-success__body {
	color: rgba(255,255,255,0.65);
	font-size: 15px;
	line-height: 1.7;
}
.tb-form-success--dark .tb-form-success__icon  {
	width: 72px;
	height: 72px;
	background: rgba(90,122,94,0.25);
	border: 1px solid rgba(90,122,94,0.4);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 24px;
	color: var(--sage-light);
}

/* ============================================================
   Legal pages
   ============================================================ */

.tb-legal-hero {
	background: var(--off-white);
	border-bottom: 1px solid var(--border);
	padding: calc(var(--nav-h) + 64px) 0 56px;
}

.tb-legal-hero__inner { max-width: 720px; }

.tb-legal-back {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 12px;
	font-weight: 600;
	color: var(--ink-muted);
	text-decoration: none;
	margin-bottom: 24px;
	transition: color 0.15s;
}

.tb-legal-back:hover { color: var(--sage); }

.tb-legal-hero__title {
	font-family: var(--font-display);
	font-size: clamp(32px, 4vw, 52px);
	font-weight: 600;
	color: var(--ink);
	line-height: 1.15;
	letter-spacing: -0.02em;
	margin-bottom: 12px;
}

.tb-legal-hero__date {
	font-size: 13px;
	color: var(--ink-muted);
}

.tb-legal-body {
	padding: 72px 0 96px;
	background: var(--warm-white);
}

.tb-legal-content {
	max-width: 720px;
	font-size: 15px;
	line-height: 1.8;
	color: var(--ink-mid);
}

.tb-legal-content h2 {
	font-family: var(--font-display);
	font-size: 22px;
	font-weight: 600;
	color: var(--ink);
	margin: 48px 0 12px;
	letter-spacing: -0.01em;
}

.tb-legal-content h2:first-child { margin-top: 0; }
.tb-legal-content p              { margin-bottom: 16px; }

.tb-legal-content a {
	color: var(--sage-dark);
	text-decoration: underline;
	text-underline-offset: 2px;
}

.tb-legal-content a:hover { color: var(--sage); }
.tb-legal-content strong  { color: var(--ink); }

/* ============================================================
   404 page
   ============================================================ */

.tb-404 {
	min-height: calc(100vh - var(--nav-h) - 200px);
	display: flex;
	align-items: center;
	padding: calc(var(--nav-h) + 80px) 0 100px;
	background: var(--off-white);
}

.tb-404__inner   { max-width: 560px; }

.tb-404__num {
	font-family: var(--font-display);
	font-size: clamp(80px, 12vw, 140px);
	font-weight: 600;
	color: var(--sage-light);
	line-height: 1;
	margin-bottom: 8px;
	letter-spacing: -0.04em;
}

.tb-404__headline {
	font-family: var(--font-display);
	font-size: clamp(32px, 4.5vw, 52px);
	font-weight: 600;
	color: var(--ink);
	line-height: 1.1;
	letter-spacing: -0.02em;
	margin: 12px 0 20px;
}

.tb-404__headline em { font-style: italic; color: var(--sage); }

.tb-404__body {
	font-size: 16px;
	color: var(--ink-muted);
	line-height: 1.7;
	max-width: 420px;
	margin-bottom: 40px;
}

.tb-404__actions {
	display: flex;
	align-items: center;
	gap: 14px;
	flex-wrap: wrap;
}

/* ============================================================
   Pricing — amount range + badge fix
   ============================================================ */

/* Price range display (replaces currency + amount for tiered pricing) */
.tb-pricing-card__amount-range {
    font-family: var(--font-display);
    font-size: 40px;
    font-weight: 600;
    color: var(--ink);
    line-height: 1;
    letter-spacing: -0.02em;
}

/* ============================================================
   Care Plan section
   ============================================================ */

.tb-care-plan__grid {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 64px;
    align-items: start;
}

.tb-care-plan__card {
    background: var(--sage-pale);
    border: 1.5px solid var(--sage-light);
    border-radius: 14px;
    padding: 40px 36px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: sticky;
    top: calc(var(--nav-h) + 24px);
}

.tb-care-plan__price {
    font-family: var(--font-display);
    font-size: 64px;
    font-weight: 600;
    color: var(--ink);
    line-height: 1;
    letter-spacing: -0.03em;
}

.tb-care-plan__price span {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 500;
    color: var(--ink-muted);
    letter-spacing: 0;
}

.tb-care-plan__desc {
    font-size: 13px;
    color: var(--ink-muted);
    line-height: 1.6;
    border-bottom: 1px solid var(--sage-light);
    padding-bottom: 20px;
}

.tb-care-plan__reasons {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.tb-care-plan__reason {
    padding: 28px 0;
    border-bottom: 1px solid var(--border);
}

.tb-care-plan__reason:first-child { padding-top: 0; }

.tb-care-plan__reason:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.tb-care-plan__reason-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 8px;
}

.tb-care-plan__reason p {
    font-size: 14px;
    color: var(--ink-muted);
    line-height: 1.7;
}

@media (max-width: 860px) {
    .tb-care-plan__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .tb-care-plan__card {
        position: static;
    }
}

/* ============================================================
   Service area strip — local SEO signal, sits between page and footer
   ============================================================ */

.tb-service-area {
	background: var(--off-white);
	border-top: 1px solid var(--border);
	padding: 16px 0;
}

.tb-service-area p {
	font-size: 12px;
	color: var(--ink-muted);
	line-height: 1.6;
	text-align: center;
}

.tb-service-area strong {
	color: var(--ink-mid);
	font-weight: 600;
}