/* =============================================================
   WBA — Junior Domestic Transfer Request
   Accent: WBA Red (page default). Hero + anchor nav + buttons are a
   verbatim implementation of the HEADER/HERO CONSISTENCY RULE
   (page-wheelchair-hoops.css ← page-aussie-hoops.css), accent-swapped only.
   ============================================================= */

.tr-page {
	--tr-accent: #C1272D;
	--tr-accent-rgb: 193, 39, 45;
	--tr-anchor-top: 96px; /* height of the sticky site nav */
}

/* -------------------------------------------------------------
   [hidden] GUARD — must come first and stay.
   Several blocks below set display:block / display:flex, which
   out-ranks the browser's built-in [hidden] { display: none }.
   Without this, every conditional block, the success/error banners
   and the Restricted-Transfer flag render on page load.
   ------------------------------------------------------------- */
.tr-page [hidden] { display: none !important; }

/* -------------------------------------------------------------
   WRAPPERS
   ------------------------------------------------------------- */
.tr-wrap {
	max-width: 1240px;
	margin: 0 auto;
	padding: 0 var(--gutter-d);
}
.tr-wrap--narrow { max-width: 880px; }

.tr-section { padding: 110px 0; background: var(--wba-white); }
.tr-section--cream { background: var(--wba-cream, #F8F8F6); }

.tr-page section[id] { scroll-margin-top: calc(var(--tr-anchor-top) + 64px); }

/* -------------------------------------------------------------
   TYPE
   ------------------------------------------------------------- */
.tr-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 0.625rem;
	font-weight: 700;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--wba-muted);
	margin-bottom: 18px;
}
.tr-eyebrow--light { color: rgba(255,255,255,0.55); }
.tr-eyebrow .wba-icon,
.tr-eyebrow svg { width: 14px; height: 14px; color: var(--tr-accent); }

.tr-h2 {
	font-size: clamp(2rem, 4vw, 3.1rem);
	font-weight: 800;
	line-height: 1.05;
	letter-spacing: -0.02em;
	margin: 0 0 20px;
	color: var(--wba-dark);
}
.tr-h2 em { font-style: italic; font-weight: 300; }
.tr-h2--light { color: var(--wba-white); }

.tr-lede {
	font-size: 1.02rem;
	line-height: 1.7;
	color: #555;
	max-width: 620px;
	margin: 0;
}
.tr-head { margin-bottom: 56px; }

/* -------------------------------------------------------------
   BUTTONS — exact .ah-btn spec
   ------------------------------------------------------------- */
.tr-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 15px 28px;
	font-family: inherit;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: lowercase;
	text-decoration: none;
	border-radius: 4px;
	border: 1px solid transparent;
	cursor: pointer;
	transition: background 0.2s, color 0.2s, transform 0.2s, border-color 0.2s;
}
.tr-btn--primary {
	background: var(--tr-accent);
	color: var(--wba-white);
	border-color: var(--tr-accent);
}
.tr-btn--primary:hover,
.tr-btn--primary:focus-visible {
	background: var(--wba-dark);
	border-color: var(--wba-dark);
	color: var(--wba-white);
	transform: translateY(-2px);
}
.tr-btn--ghost {
	background: transparent;
	color: var(--wba-white);
	border-color: rgba(255,255,255,0.55);
}
.tr-btn--ghost:hover,
.tr-btn--ghost:focus-visible {
	background: var(--wba-white);
	color: var(--wba-dark);
	border-color: var(--wba-white);
	transform: translateY(-2px);
}
.tr-btn--outline {
	background: transparent;
	color: var(--wba-dark);
	border-color: var(--wba-border);
}
.tr-btn--outline:hover,
.tr-btn--outline:focus-visible {
	border-color: var(--wba-dark);
	transform: translateY(-2px);
}
.tr-btn--wide { width: 100%; padding: 19px 28px; font-size: 0.85rem; }
.tr-btn:disabled { opacity: 0.55; cursor: not-allowed; transform: none; }

/* -------------------------------------------------------------
   HERO
   ------------------------------------------------------------- */
.tr-hero {
	position: relative;
	height: 58vh;
	min-height: 480px;
	display: flex;
	align-items: center;
	background: var(--wba-dark) center / cover no-repeat;
	overflow: hidden;
}
.tr-hero__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(105deg,
		rgba(26,26,26,0.92) 0%,
		rgba(26,26,26,0.72) 55%,
		rgba(26,26,26,0.40) 100%);
}
.tr-hero__glow {
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at 78% 50%,
		rgba(var(--tr-accent-rgb), 0.38) 0%,
		rgba(var(--tr-accent-rgb), 0) 62%);
}
.tr-hero__inner {
	position: relative;
	z-index: 2;
	width: 100%;
	max-width: 1240px;
	margin: 0 auto;
	padding: 0 var(--gutter-d);
}
.tr-hero__eyebrow {
	display: inline-block;
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	padding: 9px 18px;
	border-radius: 999px;
	color: var(--wba-white);
	background: rgba(var(--tr-accent-rgb), 0.22);
	border: 1px solid rgba(var(--tr-accent-rgb), 0.6);
	margin-bottom: 22px;
}
.tr-hero__title {
	font-size: clamp(2.6rem, 6.4vw, 5rem);
	font-weight: 800;
	line-height: 0.98;
	letter-spacing: -0.03em;
	color: var(--wba-white);
	margin: 0 0 20px;
}
.tr-hero__title em { font-style: italic; font-weight: 300; }
.tr-hero__lede {
	max-width: 600px;
	margin: 0 0 36px;
	font-size: 1.02rem;
	line-height: 1.65;
	color: rgba(255,255,255,0.86);
}
.tr-hero__cta { display: flex; gap: 14px; flex-wrap: wrap; }

/* No background photo: the 105deg overlay has nothing to sit over, so it
   reads as flat black. Lift the accent glow and add a soft second light
   source to keep some depth. */
.tr-hero--flat .tr-hero__overlay {
	background: linear-gradient(105deg,
		rgba(10,10,10,0.55) 0%,
		rgba(26,26,26,0.10) 60%,
		rgba(26,26,26,0) 100%);
}
.tr-hero--flat .tr-hero__glow {
	background:
		radial-gradient(circle at 78% 50%, rgba(var(--tr-accent-rgb), 0.46) 0%, rgba(var(--tr-accent-rgb), 0) 60%),
		radial-gradient(circle at 8% 92%, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0) 45%);
}

/* -------------------------------------------------------------
   ANCHOR NAV
   ------------------------------------------------------------- */
.tr-anchor {
	position: sticky;
	top: var(--tr-anchor-top);
	z-index: 40;
	background: var(--wba-white);
	border-top: 3px solid var(--tr-accent);
	border-bottom: 1px solid var(--wba-border);
}
.tr-anchor__inner {
	max-width: 1240px;
	margin: 0 auto;
	padding: 0 var(--gutter-d);
	display: flex;
	align-items: center;
	gap: 26px;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
}
.tr-anchor__inner::-webkit-scrollbar { display: none; }
.tr-anchor__inner a {
	position: relative;
	flex-shrink: 0;
	padding: 18px 2px;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: lowercase;
	color: var(--wba-dark);
	text-decoration: none;
	white-space: nowrap;
}
.tr-anchor__inner a::after {
	content: "";
	position: absolute;
	left: 0; right: 0; bottom: 12px;
	height: 2px;
	background: var(--tr-accent);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.22s ease;
}
.tr-anchor__inner a:hover::after,
.tr-anchor__inner a:focus-visible::after { transform: scaleX(1); }
.tr-anchor__cta {
	margin-left: auto;
	background: var(--tr-accent);
	color: var(--wba-white) !important;
	border-radius: 4px;
	padding: 11px 20px !important;
	transition: background 0.2s;
}
.tr-anchor__cta::after { display: none; }
.tr-anchor__cta:hover { background: var(--wba-dark); }

/* -------------------------------------------------------------
   BEFORE YOU START — gates
   ------------------------------------------------------------- */
.tr-gates {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 22px;
}
.tr-gate {
	position: relative;
	background: var(--wba-white);
	border: 1px solid var(--wba-border);
	border-radius: 13px;
	padding: 34px 30px;
	overflow: hidden;
	transition: transform 0.25s, box-shadow 0.25s;
}
.tr-gate:hover { transform: translateY(-3px); box-shadow: 0 18px 40px rgba(26,26,26,0.07); }
.tr-gate h3 {
	font-size: 1.15rem;
	font-weight: 800;
	margin: 0 0 12px;
	color: var(--wba-dark);
	position: relative;
	z-index: 1;
}
.tr-gate p { margin: 0; font-size: 0.9rem; line-height: 1.7; color: #5a5a5a; position: relative; z-index: 1; }

.tr-note {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	margin: 34px 0 0;
	padding: 22px 26px;
	border-left: 3px solid var(--tr-accent);
	background: var(--wba-cream, #F8F8F6);
	font-size: 0.92rem;
	line-height: 1.7;
	color: #444;
}
.tr-note svg { width: 18px; height: 18px; flex-shrink: 0; color: var(--tr-accent); margin-top: 2px; }

/* -------------------------------------------------------------
   RESTRICTED — dark section
   ------------------------------------------------------------- */
.tr-restricted {
	background: var(--wba-dark);
	padding: 110px 0;
	position: relative;
	overflow: hidden;
}
.tr-restricted::before {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at 12% 20%, rgba(var(--tr-accent-rgb), 0.28) 0%, rgba(var(--tr-accent-rgb), 0) 55%);
	pointer-events: none;
}
.tr-restricted__grid {
	position: relative;
	display: grid;
	grid-template-columns: 6fr 6fr;
	gap: 70px;
	align-items: start;
}
.tr-restricted__copy p {
	color: rgba(255,255,255,0.72);
	font-size: 0.98rem;
	line-height: 1.75;
	margin: 0 0 16px;
	max-width: 520px;
}
.tr-restricted__copy strong { color: var(--wba-white); }
.tr-restricted__foot {
	margin-top: 26px !important;
	padding-top: 22px;
	border-top: 1px solid rgba(255,255,255,0.14);
	font-size: 0.88rem !important;
	color: rgba(255,255,255,0.5) !important;
	font-style: italic;
}
.tr-criterion {
	position: relative;
	background: rgba(255,255,255,0.045);
	border: 1px solid rgba(255,255,255,0.12);
	border-left: 3px solid var(--tr-accent);
	border-radius: 13px;
	padding: 30px 32px 30px 30px;
	margin-bottom: 18px;
}
.tr-criterion__key {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px; height: 34px;
	border-radius: 50%;
	background: var(--tr-accent);
	color: var(--wba-white);
	font-size: 0.8rem;
	font-weight: 800;
	text-transform: uppercase;
	margin-bottom: 16px;
}
.tr-criterion h3 { color: var(--wba-white); font-size: 1.05rem; font-weight: 800; margin: 0 0 10px; }
.tr-criterion p { color: rgba(255,255,255,0.7); font-size: 0.9rem; line-height: 1.7; margin: 0; }
.tr-criterion p em { color: rgba(255,255,255,0.92); }
.tr-criterion__note {
	font-size: 0.78rem;
	letter-spacing: 0.1em;
	text-transform: lowercase;
	color: rgba(255,255,255,0.45);
	margin: 0;
}

/* -------------------------------------------------------------
   TIMELINE
   ------------------------------------------------------------- */
.tr-steps { list-style: none; margin: 0; padding: 0; }
.tr-step {
	display: grid;
	grid-template-columns: 130px 1fr;
	gap: 30px;
	align-items: start;
	padding: 30px 0;
	border-top: 1px solid var(--wba-border);
}
.tr-step:last-child { border-bottom: 1px solid var(--wba-border); }
.tr-step__num {
	font-size: 3.6rem;
	font-weight: 800;
	line-height: 0.85;
	letter-spacing: -0.04em;
	color: var(--wba-border);
}
.tr-step h3 { font-size: 1.12rem; font-weight: 800; margin: 0 0 8px; color: var(--wba-dark); }
.tr-step p { margin: 0; font-size: 0.93rem; line-height: 1.7; color: #5a5a5a; max-width: 640px; }
.tr-step:hover .tr-step__num { color: var(--tr-accent); transition: color 0.25s; }

/* -------------------------------------------------------------
   PREPARE
   ------------------------------------------------------------- */
.tr-prepare {
	display: grid;
	grid-template-columns: 5fr 7fr;
	gap: 64px;
	align-items: start;
}
.tr-prepare__hint {
	margin-top: 24px;
	padding: 18px 22px;
	background: var(--wba-cream, #F8F8F6);
	border-radius: 10px;
	font-size: 0.88rem;
	line-height: 1.7;
	color: #4a4a4a;
}
.tr-checklist { list-style: none; margin: 0; padding: 0; }
.tr-checklist li {
	position: relative;
	padding: 20px 0 20px 38px;
	border-bottom: 1px solid var(--wba-border);
	font-size: 0.94rem;
	line-height: 1.65;
	color: #5a5a5a;
}
.tr-checklist li:first-child { border-top: 1px solid var(--wba-border); }
.tr-checklist li::before {
	content: "";
	position: absolute;
	left: 4px; top: 26px;
	width: 9px; height: 9px;
	border-radius: 2px;
	background: var(--tr-accent);
}
.tr-checklist strong { color: var(--wba-dark); font-weight: 700; }

/* -------------------------------------------------------------
   FORM
   ------------------------------------------------------------- */
.tr-form {
	background: var(--wba-white);
	border: 1px solid var(--wba-border);
	border-radius: 14px;
	padding: 48px 46px 42px;
}

.form__honeypot {
	position: absolute !important;
	left: -10000px !important;
	top: auto !important;
	width: 1px !important;
	height: 1px !important;
	overflow: hidden !important;
}

.form__success,
.form__error {
	padding: 22px 26px;
	border-radius: 10px;
	margin-bottom: 32px;
	font-size: 0.92rem;
	line-height: 1.7;
}
.form__success { background: #EEF7EF; border-left: 3px solid #2E7D32; color: #1F4F22; }
.form__error { background: #FBEEEE; border-left: 3px solid var(--tr-accent); color: #7A1D21; }
.form__success strong,
.form__error strong { display: block; margin-bottom: 4px; font-size: 1rem; }
.form__error a { color: inherit; }

.tr-criterion__link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin-top: 14px;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: lowercase;
	color: var(--wba-white);
	text-decoration: none;
	border-bottom: 1px solid rgba(var(--tr-accent-rgb), 0.8);
	padding-bottom: 3px;
	transition: border-color 0.2s, color 0.2s;
}
.tr-criterion__link::after { content: "\2193"; font-weight: 400; }
.tr-criterion__link:hover { color: rgba(255,255,255,0.75); border-color: var(--wba-white); }

/* -------------------------------------------------------------
   POINTS TABLE — clause 6.2
   ------------------------------------------------------------- */
.tr-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 0.92rem;
	line-height: 1.65;
}
.tr-table thead th {
	text-align: left;
	padding: 0 20px 14px 0;
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--wba-muted);
	border-bottom: 2px solid var(--wba-dark);
	white-space: nowrap;
}
.tr-table tbody th,
.tr-table tbody td {
	padding: 22px 20px 22px 0;
	border-bottom: 1px solid var(--wba-border);
	vertical-align: top;
	text-align: left;
	color: #5a5a5a;
}
.tr-table tbody th {
	font-weight: 800;
	color: var(--wba-dark);
	white-space: nowrap;
	width: 1%;
}
.tr-table__points {
	font-weight: 800;
	color: var(--tr-accent);
	white-space: nowrap;
	width: 1%;
}
.tr-table tbody td strong { color: var(--wba-dark); font-weight: 700; }
.tr-table__muted th,
.tr-table__muted td { color: var(--wba-muted); }
.tr-table__muted .tr-table__points { color: var(--wba-muted); }
.tr-table tbody tr:last-child th,
.tr-table tbody tr:last-child td { border-bottom: 0; }

.tr-points__foot {
	margin: 26px 0 0;
	padding-top: 22px;
	border-top: 1px solid var(--wba-border);
	font-size: 0.86rem;
	line-height: 1.7;
	color: var(--wba-muted);
}
.tr-points__foot strong { color: var(--wba-dark); }

.tr-noscript {
	padding: 20px 24px;
	margin-bottom: 30px;
	border-left: 3px solid var(--wba-orange, #F7931E);
	background: var(--wba-cream, #F8F8F6);
	font-size: 0.88rem;
	line-height: 1.7;
	color: #4a4a4a;
}
.tr-noscript strong { display: block; margin-bottom: 3px; color: var(--wba-dark); }
.tr-noscript a { color: var(--tr-accent); }

.tr-fs {
	border: 0;
	border-top: 1px solid var(--wba-border);
	margin: 0 0 8px;
	padding: 34px 0 26px;
}
.tr-fs:first-of-type { border-top: 0; padding-top: 0; }
.tr-fs legend {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 1.15rem;
	font-weight: 800;
	letter-spacing: -0.01em;
	color: var(--wba-dark);
	padding: 0;
	margin-bottom: 8px;
}
.tr-fs__num {
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	color: var(--tr-accent);
}
.tr-fs__intro {
	font-size: 0.88rem;
	line-height: 1.7;
	color: #666;
	margin: 0 0 24px;
	max-width: 620px;
}

.tr-grid { display: grid; gap: 20px; }
.tr-grid--2 { grid-template-columns: 1fr 1fr; }

.tr-field { margin-bottom: 20px; }
.tr-grid .tr-field { margin-bottom: 0; }

.tr-field label,
.tr-label {
	display: block;
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.02em;
	color: var(--wba-dark);
	margin-bottom: 9px;
	line-height: 1.5;
}
.tr-req { color: var(--tr-accent); }
.tr-optional {
	font-weight: 500;
	font-style: italic;
	color: var(--wba-muted);
	letter-spacing: 0;
}

.tr-field input[type="text"],
.tr-field input[type="email"],
.tr-field input[type="tel"],
.tr-field input[type="date"],
.tr-field select,
.tr-field textarea {
	width: 100%;
	box-sizing: border-box;
	font-family: inherit;
	font-size: 0.92rem;
	color: var(--wba-dark);
	background: var(--wba-white);
	border: 1px solid var(--wba-border);
	border-radius: 4px;
	padding: 13px 15px;
	transition: border-color 0.2s, box-shadow 0.2s;
}
.tr-field textarea { resize: vertical; line-height: 1.6; }
.tr-field input:focus,
.tr-field select:focus,
.tr-field textarea:focus {
	outline: none;
	border-color: var(--tr-accent);
	box-shadow: 0 0 0 3px rgba(var(--tr-accent-rgb), 0.12);
}
.tr-field input.is-invalid,
.tr-field select.is-invalid,
.tr-field textarea.is-invalid { border-color: var(--tr-accent); background: #FDF6F6; }

.tr-help {
	margin: 8px 0 0;
	font-size: 0.79rem;
	line-height: 1.6;
	color: var(--wba-muted);
}
.tr-help a { color: var(--tr-accent); }

.tr-file {
	display: block;
	margin-top: 12px;
	font-size: 0.82rem;
}
.tr-file input[type="file"] { display: block; margin-top: 8px; font-size: 0.82rem; }

/* Checkboxes */
.tr-checks {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 10px 20px;
}
/* Specificity note: these must out-rank `.tr-field label` (0,1,1),
   because checkbox labels sit inside .tr-field. Hence .tr-form prefix. */
.tr-form .tr-check {
	display: flex;
	align-items: flex-start;
	gap: 11px;
	font-size: 0.88rem;
	font-weight: 500;
	line-height: 1.6;
	color: #4a4a4a;
	cursor: pointer;
	margin-bottom: 0;
}
.tr-check input[type="checkbox"] {
	flex-shrink: 0;
	width: 17px; height: 17px;
	margin: 2px 0 0;
	accent-color: var(--tr-accent);
	cursor: pointer;
}
.tr-form .tr-check--block {
	display: flex;
	padding: 16px 18px;
	border: 1px solid var(--wba-border);
	border-radius: 8px;
	margin-bottom: 12px;
	background: var(--wba-white);
	transition: border-color 0.2s, background 0.2s;
}
.tr-form .tr-check--block:hover { border-color: #cfcfc9; }
.tr-form .tr-check--block:has(input:checked) {
	border-color: rgba(var(--tr-accent-rgb), 0.45);
	background: rgba(var(--tr-accent-rgb), 0.03);
}
.tr-check--block input.is-invalid { outline: 2px solid var(--tr-accent); outline-offset: 3px; }

/* Conditional blocks */
.tr-conditional {
	border-left: 3px solid rgba(var(--tr-accent-rgb), 0.35);
	background: var(--wba-cream, #F8F8F6);
	border-radius: 0 8px 8px 0;
	padding: 24px 26px 8px;
	margin: 4px 0 24px;
}
.tr-conditional__label {
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--tr-accent);
	margin: 0 0 16px;
}

/* Restricted-transfer live flag */
.tr-flag {
	display: flex;
	gap: 14px;
	align-items: flex-start;
	margin-top: 8px;
	padding: 20px 24px;
	background: var(--wba-dark);
	border-radius: 10px;
}
.tr-flag p { margin: 0; font-size: 0.87rem; line-height: 1.7; color: rgba(255,255,255,0.75); }
.tr-flag strong { color: var(--wba-white); }
.tr-flag__mark svg { width: 20px; height: 20px; color: var(--wba-orange, #F7931E); }

.tr-form__foot {
	margin: 20px 0 0;
	font-size: 0.8rem;
	line-height: 1.7;
	color: var(--wba-muted);
	text-align: center;
}
.tr-form__foot a { color: var(--tr-accent); }

/* -------------------------------------------------------------
   FAQ
   ------------------------------------------------------------- */
.tr-faqs { border-top: 1px solid var(--wba-border); }
.tr-faq { border-bottom: 1px solid var(--wba-border); }
.tr-faq summary {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding: 24px 0;
	font-size: 0.98rem;
	font-weight: 700;
	color: var(--wba-dark);
	cursor: pointer;
	list-style: none;
	transition: color 0.2s;
}
.tr-faq summary::-webkit-details-marker { display: none; }
.tr-faq summary:hover { color: var(--tr-accent); }
.tr-faq__mark {
	position: relative;
	flex-shrink: 0;
	width: 14px; height: 14px;
}
.tr-faq__mark::before,
.tr-faq__mark::after {
	content: "";
	position: absolute;
	background: var(--tr-accent);
	transition: transform 0.25s;
}
.tr-faq__mark::before { top: 6px; left: 0; width: 14px; height: 2px; }
.tr-faq__mark::after { top: 0; left: 6px; width: 2px; height: 14px; }
.tr-faq[open] .tr-faq__mark::after { transform: rotate(90deg); }
.tr-faq__a { padding: 0 0 26px; max-width: 720px; }
.tr-faq__a p { margin: 0; font-size: 0.92rem; line-height: 1.75; color: #5a5a5a; }
.tr-faq__a a { color: var(--tr-accent); }

/* -------------------------------------------------------------
   CONTACT
   ------------------------------------------------------------- */
.tr-contact { padding: 90px 0; background: var(--wba-cream, #F8F8F6); border-top: 1px solid var(--wba-border); }
.tr-contact__inner {
	display: grid;
	grid-template-columns: 7fr 5fr;
	gap: 50px;
	align-items: center;
}
.tr-contact p { font-size: 0.96rem; line-height: 1.7; color: #555; margin: 0; max-width: 560px; }
.tr-contact__actions { display: flex; gap: 14px; justify-content: flex-end; flex-wrap: wrap; }

/* -------------------------------------------------------------
   RESPONSIVE
   ------------------------------------------------------------- */
@media (max-width: 1024px) {
	.tr-restricted__grid,
	.tr-prepare,
	.tr-contact__inner { grid-template-columns: 1fr; gap: 44px; }
	.tr-contact__actions { justify-content: flex-start; }
	.tr-gates { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
	.tr-anchor { top: 88px; }
}

@media (max-width: 700px) {
	.tr-hero { min-height: 440px; }
	.tr-hero__inner { padding: 0 var(--gutter-m); }
	.tr-hero__cta { flex-direction: column; align-items: stretch; }
	.tr-hero__cta .tr-btn { width: 100%; }

	.tr-wrap { padding: 0 var(--gutter-m); }
	.tr-section, .tr-restricted { padding: 64px 0; }
	.tr-contact { padding: 56px 0; }
	.tr-head { margin-bottom: 36px; }

	.tr-anchor__inner { gap: 20px; padding: 0 var(--gutter-m); }
	.tr-anchor__cta { margin-left: 0; }

	.tr-gates { grid-template-columns: 1fr; }
	.tr-grid--2 { grid-template-columns: 1fr; }
	.tr-checks { grid-template-columns: 1fr; }

	.tr-step { grid-template-columns: 1fr; gap: 10px; padding: 24px 0; }
	.tr-step__num { font-size: 2.4rem; }

	.tr-form { padding: 32px 22px 28px; border-radius: 12px; }
	.tr-conditional { padding: 20px 18px 4px; }

	/* Points table → stacked cards. No horizontal scroll on a
	   three-column table at 375px. */
	.tr-table thead { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
	.tr-table,
	.tr-table tbody,
	.tr-table tr,
	.tr-table th,
	.tr-table td { display: block; width: auto; }
	.tr-table tr {
		border: 1px solid var(--wba-border);
		border-left: 3px solid var(--tr-accent);
		border-radius: 0 10px 10px 0;
		padding: 20px 22px;
		margin-bottom: 14px;
	}
	.tr-table tbody th,
	.tr-table tbody td { border-bottom: 0; padding: 0; }
	.tr-table tbody th { font-size: 1.05rem; margin-bottom: 2px; }
	.tr-table__points { margin-bottom: 12px; }
	.tr-table td[data-label="Who it covers"] { font-size: 0.88rem; }
	.tr-table__muted tr,
	tr.tr-table__muted { border-left-color: var(--wba-border); }
}

/* -------------------------------------------------------------
   MOTION
   ------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
	.tr-btn, .tr-gate, .tr-faq__mark::before, .tr-faq__mark::after,
	.tr-anchor__inner a::after { transition: none !important; }
	.tr-btn:hover, .tr-gate:hover { transform: none !important; }
}
