:root {
	--ink: #071f4f;
	--muted: #4b5d7a;
	--paper: #f5f8ff;
	--white: #ffffff;
	--line: #d8e1f2;
	--green: #c8102e;
	--green-dark: #8f0b22;
	--blue: #012169;
	--yellow: #ffffff;
	--coral: #c8102e;
	--shadow: 0 22px 60px rgba(1, 33, 105, 0.14);
	--radius: 8px;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--paper);
	color: var(--ink);
	font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	line-height: 1.6;
}

body.nav-open {
	overflow: hidden;
}

a {
	color: inherit;
	text-decoration-thickness: 0.08em;
	text-underline-offset: 0.18em;
}

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

button,
input,
select {
	font: inherit;
}

.screen-reader-text,
.skip-link {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
}

.skip-link:focus {
	z-index: 20;
	top: 1rem;
	left: 1rem;
	width: auto;
	height: auto;
	padding: 0.75rem 1rem;
	clip: auto;
	background: var(--ink);
	color: var(--white);
}

.shell {
	width: min(1140px, calc(100% - 40px));
	margin-inline: auto;
}

.site-header {
	position: sticky;
	z-index: 10;
	top: 0;
	background: rgba(248, 250, 247, 0.9);
	border-bottom: 1px solid rgba(217, 226, 223, 0.85);
	backdrop-filter: blur(16px);
}

.nav-shell {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 78px;
	gap: 1.5rem;
}

.brand {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	text-decoration: none;
}

.brand-mark {
	display: grid;
	width: 48px;
	height: 48px;
	place-items: center;
	border-radius: var(--radius);
	background: var(--ink);
	color: var(--white);
	font-weight: 900;
	letter-spacing: 0;
}

.brand strong,
.brand small {
	display: block;
}

.brand strong {
	font-size: 1rem;
	line-height: 1.15;
}

.brand small {
	color: var(--muted);
	font-size: 0.76rem;
}

.primary-nav {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.primary-nav .menu {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.primary-nav a {
	color: var(--ink);
	font-size: 0.92rem;
	font-weight: 750;
	text-decoration: none;
}

.nav-link:hover,
.primary-nav .menu a:hover {
	color: var(--green);
}

.nav-toggle {
	display: none;
	width: 44px;
	height: 44px;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: var(--white);
}

.nav-toggle span:not(.screen-reader-text) {
	display: block;
	width: 18px;
	height: 2px;
	margin: 4px auto;
	background: var(--ink);
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 0.85rem 1.15rem;
	border: 0;
	border-radius: var(--radius);
	background: var(--green);
	color: var(--white);
	font-weight: 850;
	text-decoration: none;
	box-shadow: 0 10px 24px rgba(200, 16, 46, 0.24);
	cursor: pointer;
}

.button:hover {
	background: var(--green-dark);
}

.button-light {
	background: var(--white);
	color: var(--ink);
	box-shadow: none;
}

.button-light:hover {
	background: #eef3ff;
}

.button-small {
	min-height: 40px;
	padding: 0.55rem 0.85rem;
	font-size: 0.86rem;
}

.hero {
	position: relative;
	isolation: isolate;
	min-height: 690px;
	padding: 7rem 0 4rem;
	color: var(--white);
	overflow: hidden;
}

.hero-media,
.hero-media::after,
.hero-media img {
	position: absolute;
	inset: 0;
	z-index: -2;
}

.hero-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero-media::after {
	z-index: -1;
	content: "";
	background:
		linear-gradient(90deg, rgba(7, 19, 24, 0.88), rgba(7, 19, 24, 0.64) 48%, rgba(7, 19, 24, 0.16)),
		linear-gradient(0deg, rgba(7, 19, 24, 0.72), transparent 58%);
}

.hero-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 390px;
	align-items: end;
	gap: 3rem;
}

.hero-copy {
	max-width: 760px;
}

.eyebrow {
	margin: 0 0 0.8rem;
	color: var(--green);
	font-size: 0.78rem;
	font-weight: 900;
	letter-spacing: 0;
	text-transform: uppercase;
}

.hero .eyebrow,
.cta-section .eyebrow {
	color: var(--yellow);
}

h1,
h2,
h3 {
	margin: 0;
	line-height: 1.05;
	letter-spacing: 0;
}

h1 {
	max-width: 820px;
	font-size: clamp(3rem, 8vw, 5.8rem);
}

h2 {
	font-size: clamp(2rem, 4vw, 3.4rem);
}

h3 {
	font-size: 1.25rem;
}

.hero-text {
	max-width: 640px;
	margin: 1.3rem 0 0;
	color: rgba(255, 255, 255, 0.86);
	font-size: 1.16rem;
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.85rem;
	margin-top: 1.8rem;
}

.trust-strip {
	display: flex;
	flex-wrap: wrap;
	gap: 0.6rem;
	margin-top: 2rem;
}

.trust-strip span {
	padding: 0.55rem 0.7rem;
	border: 1px solid rgba(255, 255, 255, 0.28);
	border-radius: var(--radius);
	background: rgba(255, 255, 255, 0.1);
	font-size: 0.9rem;
	font-weight: 750;
}

.hero-panel,
.tool-card,
.service-card {
	border: 1px solid rgba(217, 226, 223, 0.82);
	border-radius: var(--radius);
	background: var(--white);
	color: var(--ink);
	box-shadow: var(--shadow);
}

.hero-panel {
	padding: 1.15rem;
}

.hero-panel h2 {
	font-size: 1.25rem;
}

.quick-choices {
	display: grid;
	gap: 0.55rem;
	margin-top: 1rem;
}

.quick-choices button {
	width: 100%;
	padding: 0.78rem 0.85rem;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: #f7faff;
	color: var(--ink);
	text-align: left;
	font-weight: 800;
	cursor: pointer;
}

.quick-choices button.is-active,
.quick-choices button:hover {
	border-color: var(--green);
	background: #e7f4ee;
}

.quick-result {
	margin-top: 1rem;
	padding: 0.95rem;
	border-radius: var(--radius);
	background: var(--ink);
	color: var(--white);
}

.quick-result p {
	margin: 0.35rem 0 0;
	color: rgba(255, 255, 255, 0.82);
}

.notice-band {
	background: var(--yellow);
	color: #2a2304;
}

.notice-grid {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 1rem;
	padding: 1rem 0;
}

.notice-grid p {
	margin: 0;
}

.content-section {
	padding: 5.5rem 0;
}

.section-head {
	max-width: 760px;
	margin-bottom: 2rem;
}

.section-head p:not(.eyebrow),
.split-grid > div > p,
.official-grid p,
.cta-grid p {
	color: var(--muted);
	font-size: 1.05rem;
}

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

.service-card {
	display: flex;
	min-height: 100%;
	flex-direction: column;
	padding: 1.2rem;
	box-shadow: 0 16px 40px rgba(16, 32, 40, 0.08);
}

.card-icon {
	display: inline-flex;
	width: 42px;
	height: 42px;
	align-items: center;
	justify-content: center;
	margin-bottom: 1rem;
	border-radius: var(--radius);
	background: #e8eefc;
	color: var(--green-dark);
	font-weight: 900;
}

.service-card p {
	color: var(--muted);
}

.service-card ul {
	margin: 0.4rem 0 1.2rem;
	padding-left: 1.15rem;
}

.service-card li {
	margin: 0.45rem 0;
}

.service-card a {
	margin-top: auto;
	color: var(--green);
	font-weight: 850;
}

.split-section {
	background: #eef3ff;
}

.split-grid,
.official-grid,
.cta-grid {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
	gap: 3rem;
	align-items: start;
}

.timeline {
	display: grid;
	gap: 0.8rem;
	margin-top: 1.8rem;
}

.timeline div {
	display: flex;
	gap: 0.85rem;
	align-items: center;
}

.timeline span {
	display: grid;
	width: 34px;
	height: 34px;
	flex: 0 0 34px;
	place-items: center;
	border-radius: 50%;
	background: var(--ink);
	color: var(--white);
	font-weight: 900;
}

.timeline p {
	margin: 0;
	color: var(--muted);
}

.tool-stack {
	display: grid;
	gap: 1rem;
}

.tool-card {
	padding: 1.2rem;
	box-shadow: 0 16px 42px rgba(16, 32, 40, 0.1);
}

.tool-card label {
	display: grid;
	gap: 0.38rem;
	margin-top: 1rem;
	color: var(--muted);
	font-weight: 750;
}

.tool-card input[type="number"],
.tool-card select {
	width: 100%;
	min-height: 46px;
	padding: 0.65rem 0.75rem;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: var(--white);
	color: var(--ink);
}

.check-row {
	display: flex !important;
	grid-template-columns: none !important;
	flex-direction: row;
	align-items: flex-start;
	gap: 0.65rem !important;
}

.check-row input {
	width: 18px;
	height: 18px;
	margin-top: 0.2rem;
}

.tool-result {
	margin-top: 1rem;
	padding: 0.85rem;
	border-radius: var(--radius);
	background: #e8eefc;
	color: var(--green-dark);
	font-weight: 800;
}

.tool-result.is-warning {
	background: #fff0d1;
	color: #6c4b00;
}

.fee-output {
	margin-top: 1rem;
	color: var(--blue);
	font-size: 3rem;
	font-weight: 950;
	line-height: 1;
}

.contrast-section {
	background: var(--ink);
	color: var(--white);
}

.contrast-section .section-head p:not(.eyebrow) {
	color: rgba(255, 255, 255, 0.72);
}

.faq-list {
	display: grid;
	gap: 0.8rem;
}

.faq-list article {
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: var(--radius);
	background: rgba(255, 255, 255, 0.06);
}

.faq-list button {
	width: 100%;
	padding: 1rem 1.1rem;
	border: 0;
	background: transparent;
	color: var(--white);
	text-align: left;
	font-weight: 850;
	cursor: pointer;
}

.faq-list button::after {
	float: right;
	content: "+";
}

.faq-list button[aria-expanded="true"]::after {
	content: "-";
}

.faq-list article > div {
	display: none;
	padding: 0 1.1rem 1rem;
	color: rgba(255, 255, 255, 0.76);
}

.faq-list article.is-open > div {
	display: block;
}

.faq-list p {
	margin: 0;
}

.link-list {
	display: grid;
	gap: 0.85rem;
}

.link-list a {
	display: grid;
	gap: 0.2rem;
	padding: 1rem 1.05rem;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: var(--white);
	text-decoration: none;
	box-shadow: 0 12px 32px rgba(16, 32, 40, 0.06);
}

.link-list a:hover {
	border-color: var(--green);
	transform: translateY(-1px);
}

.link-list span {
	font-weight: 850;
}

.link-list small {
	color: var(--muted);
}

.cta-section {
	padding: 4.5rem 0;
	background: var(--green-dark);
	color: var(--white);
}

.cta-grid {
	align-items: center;
}

.cta-grid p {
	color: rgba(255, 255, 255, 0.78);
}

.site-footer {
	padding: 4rem 0 1.2rem;
	background: #071318;
	color: var(--white);
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1.2fr;
	gap: 2rem;
}

.brand-footer .brand-mark {
	background: var(--white);
	color: var(--ink);
}

.site-footer p,
.site-footer small {
	color: rgba(255, 255, 255, 0.68);
}

.site-footer h2 {
	margin-bottom: 0.8rem;
	font-size: 1rem;
}

.site-footer a:not(.brand) {
	display: block;
	margin: 0.45rem 0;
	color: rgba(255, 255, 255, 0.84);
}

.footer-bottom {
	margin-top: 2rem;
	padding-top: 1rem;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom p {
	margin: 0;
	font-size: 0.9rem;
}

.page-hero {
	padding: 7rem 0 3rem;
	background: var(--ink);
	color: var(--white);
}

.page-hero.compact h1 {
	font-size: clamp(2.4rem, 5vw, 4rem);
}

.guide-hero {
	padding: 7rem 0 4rem;
	background:
		linear-gradient(90deg, rgba(7, 19, 24, 0.92), rgba(7, 19, 24, 0.72)),
		url("../../../../uploads/2026/01/DVLA-driving-licence.webp");
	background-position: center;
	background-size: cover;
	color: var(--white);
}

.guide-hero-grid,
.guides-toolbar-grid,
.planner-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 390px;
	gap: 2rem;
	align-items: end;
}

.guide-hero h1 {
	max-width: 800px;
	font-size: clamp(3rem, 7vw, 5rem);
}

.guide-hero p:not(.eyebrow) {
	max-width: 680px;
	color: rgba(255, 255, 255, 0.82);
	font-size: 1.12rem;
}

.guide-hero-v2 {
	padding-bottom: 5rem;
}

.guide-stats {
	display: flex;
	flex-wrap: wrap;
	gap: 0.7rem;
	margin-top: 1.5rem;
}

.guide-stats span {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	padding: 0.55rem 0.7rem;
	border: 1px solid rgba(255, 255, 255, 0.24);
	border-radius: var(--radius);
	background: rgba(255, 255, 255, 0.1);
	color: rgba(255, 255, 255, 0.82);
	font-size: 0.9rem;
	font-weight: 750;
}

.guide-stats strong {
	color: var(--yellow);
}

.guide-index,
.planner-card {
	padding: 1.2rem;
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: var(--radius);
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(12px);
}

.guide-index strong {
	display: block;
	margin-bottom: 0.65rem;
	font-size: 1.05rem;
}

.guide-index ul {
	margin: 0;
	padding-left: 1.1rem;
	color: rgba(255, 255, 255, 0.8);
}

.guide-index li {
	margin: 0.45rem 0;
}

.guide-finder {
	background: rgba(255, 255, 255, 0.14);
}

.finder-options {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.5rem;
	margin-top: 0.85rem;
}

.finder-options button {
	min-height: 46px;
	padding: 0.65rem;
	border: 1px solid rgba(255, 255, 255, 0.25);
	border-radius: var(--radius);
	background: rgba(255, 255, 255, 0.12);
	color: var(--white);
	font-weight: 850;
	cursor: pointer;
}

.finder-options button.is-active,
.finder-options button:hover {
	border-color: var(--yellow);
	background: rgba(244, 197, 66, 0.2);
}

.finder-result {
	margin-top: 0.85rem;
	padding: 0.9rem;
	border-radius: var(--radius);
	background: var(--white);
	color: var(--ink);
}

.finder-result span {
	font-weight: 900;
}

.finder-result p {
	margin: 0.35rem 0 0;
	color: var(--muted);
}

.journey-section {
	padding: 3rem 0;
	background: var(--white);
	border-bottom: 1px solid var(--line);
}

.journey-header {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 2rem;
	margin-bottom: 1.2rem;
}

.journey-header h2 {
	font-size: clamp(1.8rem, 3vw, 2.7rem);
}

.journey-header p:not(.eyebrow) {
	max-width: 410px;
	margin: 0;
	color: var(--muted);
}

.journey-steps {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 0.55rem;
}

.journey-steps button {
	min-height: 58px;
	padding: 0.7rem;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: #f7faff;
	color: var(--ink);
	font-weight: 900;
	cursor: pointer;
}

.journey-steps button.is-active,
.journey-steps button:hover {
	border-color: var(--green);
	background: var(--green);
	color: var(--white);
}

.journey-detail {
	margin-top: 0.85rem;
	padding: 1rem;
	border-radius: var(--radius);
	background: var(--ink);
	color: var(--white);
}

.journey-detail p {
	margin: 0.3rem 0 0;
	color: rgba(255, 255, 255, 0.76);
}

.guides-toolbar {
	position: sticky;
	z-index: 8;
	top: 78px;
	padding: 1rem 0;
	border-bottom: 1px solid var(--line);
	background: rgba(248, 250, 247, 0.94);
	backdrop-filter: blur(14px);
}

.guides-toolbar-grid {
	align-items: center;
}

.guides-toolbar label {
	display: grid;
	gap: 0.35rem;
	color: var(--muted);
	font-size: 0.88rem;
	font-weight: 850;
}

.guides-toolbar input,
.planner-card select {
	width: 100%;
	min-height: 48px;
	padding: 0.7rem 0.8rem;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: var(--white);
	color: var(--ink);
}

.guide-filters {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	gap: 0.45rem;
}

.guide-filters button {
	min-height: 40px;
	padding: 0.5rem 0.75rem;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: var(--white);
	color: var(--ink);
	font-weight: 850;
	cursor: pointer;
}

.guide-filters button.is-active,
.guide-filters button:hover {
	border-color: var(--green);
	background: #e8eefc;
	color: var(--green-dark);
}

.guides-section {
	padding-top: 3.5rem;
}

.guides-head {
	margin-bottom: 1.5rem;
}

.guide-cards {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 1rem;
}

.guide-card {
	display: flex;
	min-height: 100%;
	flex-direction: column;
	padding: 1.15rem;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: var(--white);
	box-shadow: 0 14px 34px rgba(16, 32, 40, 0.07);
}

.guide-card-v2 {
	position: relative;
	overflow: hidden;
}

.guide-card-v2::before {
	position: absolute;
	inset: 0 0 auto;
	height: 4px;
	background: linear-gradient(90deg, var(--green), var(--blue), var(--coral));
	content: "";
}

.guide-card-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
	margin-bottom: 0.8rem;
}

.guide-card.is-hidden {
	display: none;
}

.guide-tag {
	width: fit-content;
	padding: 0.28rem 0.55rem;
	border-radius: var(--radius);
	background: #e8eefc;
	color: var(--green-dark);
	font-size: 0.76rem;
	font-weight: 900;
}

.guide-cost {
	color: var(--blue);
	font-size: 0.86rem;
	font-weight: 950;
}

.guide-card h2 {
	font-size: 1.2rem;
	line-height: 1.15;
}

.guide-card p {
	color: var(--muted);
}

.guide-meta {
	margin: 0 0 0.5rem;
	color: var(--coral);
	font-size: 0.86rem;
	font-weight: 900;
}

.guide-card ul {
	margin: 0.2rem 0 1.2rem;
	padding-left: 1.1rem;
}

.guide-card li {
	margin: 0.35rem 0;
}

.guide-card a {
	margin-top: auto;
	color: var(--green);
	font-weight: 850;
}

.checklist-toggle {
	width: 100%;
	min-height: 42px;
	margin: 0 0 0.75rem;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: #f7faff;
	color: var(--ink);
	font-weight: 900;
	cursor: pointer;
}

.checklist-toggle:hover {
	border-color: var(--green);
	background: #e8eefc;
}

.guide-checklist {
	display: none;
	gap: 0.55rem;
	margin-bottom: 0.85rem;
	padding: 0.75rem;
	border-radius: var(--radius);
	background: #f7faff;
}

.guide-checklist.is-open {
	display: grid;
}

.guide-checklist label {
	display: flex;
	align-items: flex-start;
	gap: 0.55rem;
	color: var(--muted);
	font-size: 0.92rem;
}

.guide-checklist input {
	width: 17px;
	height: 17px;
	margin-top: 0.18rem;
}

.guide-empty {
	display: none;
	grid-column: 1 / -1;
	padding: 1rem;
	border: 1px dashed var(--line);
	border-radius: var(--radius);
	background: var(--white);
	color: var(--muted);
	text-align: center;
}

.guide-empty.is-visible {
	display: block;
}

.guide-planner-section {
	background: #eef3ff;
}

.planner-grid {
	align-items: center;
}

.planner-grid > div > p {
	color: var(--muted);
}

.planner-card {
	background: var(--white);
	color: var(--ink);
	box-shadow: var(--shadow);
}

.planner-card label {
	display: grid;
	gap: 0.4rem;
	color: var(--muted);
	font-weight: 850;
}

.planner-result {
	margin-top: 1rem;
	padding: 0.9rem;
	border-radius: var(--radius);
	background: var(--ink);
	color: var(--white);
	font-weight: 850;
}

.contact-hero {
	padding: 7rem 0 4rem;
	background:
		linear-gradient(90deg, rgba(7, 19, 24, 0.92), rgba(7, 19, 24, 0.64)),
		url("../../../../uploads/2026/01/banner-info-page-company-about.jpg");
	background-position: center;
	background-size: cover;
	color: var(--white);
}

.contact-hero-grid,
.contact-picker-grid,
.contact-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 390px;
	gap: 2rem;
	align-items: end;
}

.contact-hero h1 {
	max-width: 820px;
	font-size: clamp(3rem, 7vw, 5rem);
}

.contact-hero p:not(.eyebrow) {
	max-width: 680px;
	color: rgba(255, 255, 255, 0.82);
	font-size: 1.12rem;
}

.contact-status {
	display: flex;
	flex-wrap: wrap;
	gap: 0.7rem;
	margin-top: 1.5rem;
}

.contact-status span {
	padding: 0.55rem 0.7rem;
	border: 1px solid rgba(255, 255, 255, 0.24);
	border-radius: var(--radius);
	background: rgba(255, 255, 255, 0.1);
	color: rgba(255, 255, 255, 0.82);
	font-size: 0.9rem;
	font-weight: 750;
}

.contact-status strong {
	color: var(--yellow);
}

.contact-route-card,
.contact-form-panel,
.contact-info-card,
.contact-topic-result,
.contact-help-grid article {
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: var(--white);
	box-shadow: var(--shadow);
}

.contact-route-card {
	padding: 1.2rem;
	color: var(--ink);
}

.contact-route-card p {
	color: var(--muted);
}

.contact-route-card a {
	color: var(--green);
	font-weight: 850;
}

.contact-picker-section {
	padding: 2rem 0;
	background: var(--white);
	border-bottom: 1px solid var(--line);
}

.contact-picker-grid {
	grid-template-columns: 300px minmax(0, 1fr) 390px;
	align-items: center;
}

.contact-picker-grid h2 {
	font-size: clamp(1.6rem, 3vw, 2.4rem);
}

.contact-topic-buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}

.contact-topic-buttons button {
	min-height: 42px;
	padding: 0.55rem 0.75rem;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: #f7faff;
	color: var(--ink);
	font-weight: 850;
	cursor: pointer;
}

.contact-topic-buttons button.is-active,
.contact-topic-buttons button:hover {
	border-color: var(--green);
	background: #e8eefc;
	color: var(--green-dark);
}

.contact-topic-result {
	padding: 0.9rem;
	box-shadow: 0 12px 30px rgba(16, 32, 40, 0.06);
}

.contact-topic-result p {
	margin: 0.35rem 0 0;
	color: var(--muted);
	font-size: 0.94rem;
}

.contact-grid {
	align-items: start;
}

.contact-form-panel {
	padding: 1.3rem;
}

.contact-form {
	display: grid;
	gap: 1rem;
	margin-top: 1rem;
}

.contact-form label {
	display: grid;
	gap: 0.4rem;
	color: var(--muted);
	font-weight: 850;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form select,
.contact-form textarea {
	width: 100%;
	padding: 0.75rem 0.8rem;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: #fbfdfc;
	color: var(--ink);
}

.contact-form textarea {
	resize: vertical;
}

.contact-check {
	margin-top: 0;
}

.contact-form-result {
	display: none;
	padding: 0.9rem;
	border-radius: var(--radius);
	background: #e8eefc;
	color: var(--green-dark);
	font-weight: 850;
}

.contact-form-result.is-visible {
	display: block;
}

.contact-info-stack {
	display: grid;
	gap: 1rem;
}

.contact-info-card {
	padding: 1.1rem;
	box-shadow: 0 14px 34px rgba(16, 32, 40, 0.08);
}

.contact-info-card h3 {
	margin-bottom: 0.75rem;
}

.contact-info-card a {
	display: block;
	margin: 0.5rem 0;
	color: var(--green);
	font-weight: 850;
}

.contact-info-card ul {
	margin: 0;
	padding-left: 1.1rem;
	color: var(--muted);
}

.contact-info-card li {
	margin: 0.4rem 0;
}

.contact-cards-section {
	padding-top: 1rem;
}

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

.contact-help-grid article {
	padding: 1.15rem;
	box-shadow: 0 14px 34px rgba(16, 32, 40, 0.07);
}

.contact-help-grid p {
	color: var(--muted);
}

.contact-pro-hero {
	padding: 6rem 0 4rem;
	background:
		linear-gradient(90deg, rgba(7, 19, 24, 0.9), rgba(7, 19, 24, 0.66)),
		url("../../../../uploads/2026/01/banner-info-page-company-about.jpg");
	background-position: center;
	background-size: cover;
	color: var(--white);
}

.contact-pro-hero-grid,
.contact-pro-main-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 410px;
	gap: 2rem;
	align-items: center;
}

.contact-pro-copy h1 {
	max-width: 760px;
	font-size: clamp(2.9rem, 6vw, 5rem);
	line-height: 1.02;
}

.contact-pro-copy p:not(.eyebrow) {
	max-width: 680px;
	color: rgba(255, 255, 255, 0.84);
	font-size: 1.12rem;
}

.contact-pro-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.8rem;
	margin-top: 1.6rem;
}

.contact-pro-panel,
.contact-pro-form-card,
.contact-pro-mini,
.contact-router-result,
.contact-proof-grid article {
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: var(--white);
	color: var(--ink);
	box-shadow: var(--shadow);
}

.contact-pro-panel {
	padding: 1.2rem;
}

.contact-pro-panel > span {
	color: var(--green);
	font-size: 0.78rem;
	font-weight: 950;
	text-transform: uppercase;
}

.contact-pro-panel ul {
	margin: 0.9rem 0;
	padding-left: 1.1rem;
}

.contact-pro-panel li {
	margin: 0.45rem 0;
}

.contact-pro-warning {
	padding: 0.85rem;
	border-radius: var(--radius);
	background: #fff0d1;
	color: #604200;
	font-weight: 850;
}

.contact-pro-router {
	padding: 2.6rem 0;
	background: var(--white);
	border-bottom: 1px solid var(--line);
}

.contact-router-head {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 360px;
	gap: 1.5rem;
	align-items: end;
	margin-bottom: 1rem;
}

.contact-router-head h2 {
	font-size: clamp(1.9rem, 3vw, 2.8rem);
}

.contact-router-head p:not(.eyebrow) {
	margin: 0;
	color: var(--muted);
}

.contact-router-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 0.8rem;
}

.contact-router-grid button {
	min-height: 120px;
	padding: 1rem;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: #f7faff;
	color: var(--ink);
	text-align: left;
	cursor: pointer;
}

.contact-router-grid button strong,
.contact-router-grid button span {
	display: block;
}

.contact-router-grid button strong {
	font-size: 1rem;
}

.contact-router-grid button span {
	margin-top: 0.45rem;
	color: var(--muted);
	font-size: 0.88rem;
}

.contact-router-grid button.is-active,
.contact-router-grid button:hover {
	border-color: var(--green);
	background: #e8eefc;
}

.contact-router-result {
	margin-top: 0.9rem;
	padding: 1rem;
	box-shadow: 0 12px 30px rgba(16, 32, 40, 0.06);
}

.contact-router-result p {
	margin: 0.3rem 0 0;
	color: var(--muted);
}

.contact-pro-main {
	background: #eef3ff;
}

.contact-pro-main-grid {
	align-items: start;
}

.contact-pro-form-card {
	padding: 1.4rem;
}

.contact-pro-form-card h2 {
	font-size: clamp(1.9rem, 3vw, 2.8rem);
}

.contact-pro-form {
	display: grid;
	gap: 1rem;
	margin-top: 1rem;
}

.contact-form-row {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1rem;
}

.contact-pro-form label {
	display: grid;
	gap: 0.4rem;
	color: var(--muted);
	font-weight: 850;
}

.contact-pro-form input[type="text"],
.contact-pro-form input[type="email"],
.contact-pro-form select,
.contact-pro-form textarea {
	width: 100%;
	min-height: 48px;
	padding: 0.75rem 0.85rem;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: #fbfdfc;
	color: var(--ink);
}

.contact-pro-form textarea {
	min-height: 150px;
	resize: vertical;
}

.contact-consent {
	display: flex !important;
	grid-template-columns: none !important;
	flex-direction: row;
	align-items: flex-start;
	gap: 0.65rem !important;
}

.contact-consent input {
	width: 18px;
	height: 18px;
	margin-top: 0.2rem;
}

.contact-pro-side {
	display: grid;
	gap: 1rem;
}

.contact-pro-mini {
	padding: 1.1rem;
	box-shadow: 0 14px 34px rgba(16, 32, 40, 0.08);
}

.contact-pro-mini h3 {
	margin-bottom: 0.75rem;
}

.contact-pro-mini a {
	display: block;
	margin: 0.55rem 0;
	color: var(--green);
	font-weight: 850;
}

.contact-pro-mini ul {
	margin: 0;
	padding-left: 1.1rem;
	color: var(--muted);
}

.contact-pro-mini li {
	margin: 0.45rem 0;
}

.contact-pro-mini.danger {
	border-color: #f2d9bd;
	background: #fffaf1;
}

.contact-proof-section {
	padding: 3rem 0;
	background: var(--white);
}

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

.contact-proof-grid article {
	padding: 1.15rem;
	box-shadow: 0 14px 34px rgba(16, 32, 40, 0.07);
}

.contact-proof-grid strong {
	display: grid;
	width: 38px;
	height: 38px;
	place-items: center;
	margin-bottom: 0.8rem;
	border-radius: 50%;
	background: var(--green);
	color: var(--white);
}

.contact-proof-grid p {
	color: var(--muted);
}

.services-hero {
	padding: 6rem 0 4rem;
	background:
		linear-gradient(90deg, rgba(7, 19, 24, 0.9), rgba(7, 19, 24, 0.62)),
		url("../../../../uploads/2026/01/how-long-does-it-take-to-learn-to-drive-hero-1000-1.jpg");
	background-position: center;
	background-size: cover;
	color: var(--white);
}

.services-hero-grid,
.service-finder-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 410px;
	gap: 2rem;
	align-items: center;
}

.services-hero h1 {
	max-width: 850px;
	font-size: clamp(2.8rem, 6vw, 5rem);
}

.services-hero p:not(.eyebrow) {
	max-width: 700px;
	color: rgba(255, 255, 255, 0.84);
	font-size: 1.12rem;
}

.services-hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.8rem;
	margin-top: 1.6rem;
}

.services-hero-panel,
.service-choice-result,
.service-route-card,
.services-process-grid article {
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: var(--white);
	color: var(--ink);
	box-shadow: var(--shadow);
}

.services-hero-panel {
	padding: 1.2rem;
}

.services-hero-panel p {
	color: var(--muted);
}

.services-score {
	display: flex;
	align-items: center;
	gap: 0.8rem;
	margin-top: 1rem;
	padding-top: 1rem;
	border-top: 1px solid var(--line);
}

.services-score span {
	color: var(--green);
	font-size: 3rem;
	font-weight: 950;
	line-height: 1;
}

.services-score small {
	color: var(--muted);
	font-weight: 850;
}

.service-finder {
	padding: 2.5rem 0;
	background: var(--white);
	border-bottom: 1px solid var(--line);
}

.service-finder-grid {
	grid-template-columns: 300px minmax(0, 1fr) 380px;
}

.service-finder h2 {
	font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.service-choice-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 0.55rem;
}

.service-choice-grid button {
	min-height: 42px;
	padding: 0.55rem 0.75rem;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: #f7faff;
	color: var(--ink);
	font-weight: 850;
	cursor: pointer;
}

.service-choice-grid button.is-active,
.service-choice-grid button:hover {
	border-color: var(--green);
	background: #e8eefc;
	color: var(--green-dark);
}

.service-choice-result {
	padding: 0.9rem;
	box-shadow: 0 12px 30px rgba(16, 32, 40, 0.06);
}

.service-choice-result p {
	margin: 0.35rem 0 0;
	color: var(--muted);
	font-size: 0.94rem;
}

.services-library {
	background: #eef3ff;
}

.services-library-head {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 360px;
	gap: 2rem;
	align-items: end;
	margin-bottom: 1.5rem;
}

.services-library-head h2 {
	font-size: clamp(2rem, 4vw, 3.2rem);
}

.services-library-head label {
	display: grid;
	gap: 0.4rem;
	color: var(--muted);
	font-weight: 850;
}

.services-library-head input {
	width: 100%;
	min-height: 48px;
	padding: 0.75rem 0.85rem;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: var(--white);
	color: var(--ink);
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 1rem;
}

.service-route-card {
	display: flex;
	min-height: 100%;
	flex-direction: column;
	padding: 1.15rem;
	box-shadow: 0 14px 34px rgba(16, 32, 40, 0.08);
}

.service-route-card.is-hidden {
	display: none;
}

.service-route-top {
	display: grid;
	gap: 0.45rem;
	margin-bottom: 0.8rem;
}

.service-route-top span {
	width: fit-content;
	padding: 0.28rem 0.55rem;
	border-radius: var(--radius);
	background: #e8eefc;
	color: var(--green-dark);
	font-size: 0.76rem;
	font-weight: 950;
}

.service-route-top small {
	color: var(--blue);
	font-weight: 850;
}

.service-route-card h3 {
	font-size: 1.18rem;
}

.service-route-card p {
	color: var(--muted);
}

.service-route-card button {
	min-height: 42px;
	margin: 0.2rem 0 0.8rem;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: #f7faff;
	color: var(--ink);
	font-weight: 850;
	cursor: pointer;
}

.service-route-card button:hover {
	border-color: var(--green);
	background: #e8eefc;
}

.service-detail {
	display: none;
	gap: 0.5rem;
	margin-bottom: 0.8rem;
	padding: 0.75rem;
	border-radius: var(--radius);
	background: #f7faff;
}

.service-detail.is-open {
	display: grid;
}

.service-detail label {
	display: flex;
	align-items: flex-start;
	gap: 0.55rem;
	color: var(--muted);
	font-size: 0.92rem;
}

.service-detail input {
	width: 17px;
	height: 17px;
	margin-top: 0.18rem;
}

.service-route-card a {
	margin-top: auto;
	color: var(--green);
	font-weight: 850;
}

.service-empty {
	display: none;
	grid-column: 1 / -1;
	padding: 1rem;
	border: 1px dashed var(--line);
	border-radius: var(--radius);
	background: var(--white);
	color: var(--muted);
	text-align: center;
}

.service-empty.is-visible {
	display: block;
}

.services-process {
	padding: 3rem 0;
	background: var(--white);
}

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

.services-process-grid article {
	padding: 1.15rem;
	box-shadow: 0 14px 34px rgba(16, 32, 40, 0.07);
}

.services-process-grid strong {
	display: grid;
	width: 38px;
	height: 38px;
	place-items: center;
	margin-bottom: 0.8rem;
	border-radius: 50%;
	background: var(--green);
	color: var(--white);
}

.services-process-grid p {
	color: var(--muted);
}

.about-hero {
	padding: 6rem 0 4rem;
	background:
		linear-gradient(90deg, rgba(7, 19, 24, 0.9), rgba(7, 19, 24, 0.62)),
		url("../../../../uploads/2026/01/block-2-info-page-company-about.jpg");
	background-position: center;
	background-size: cover;
	color: var(--white);
}

.about-hero-grid,
.about-mission-grid,
.about-compare-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 410px;
	gap: 2rem;
	align-items: center;
}

.about-hero h1 {
	max-width: 850px;
	font-size: clamp(2.8rem, 6vw, 5rem);
}

.about-hero p:not(.eyebrow) {
	max-width: 700px;
	color: rgba(255, 255, 255, 0.84);
	font-size: 1.12rem;
}

.about-hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.8rem;
	margin-top: 1.6rem;
}

.about-trust-card,
.about-stats article,
.about-principles-grid article,
.about-toggle-card,
.about-process-grid article {
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: var(--white);
	color: var(--ink);
	box-shadow: var(--shadow);
}

.about-trust-card {
	padding: 1.2rem;
}

.about-trust-card p {
	color: var(--muted);
}

.about-trust-meter span {
	display: block;
	margin-bottom: 0.45rem;
	color: var(--green);
	font-size: 0.82rem;
	font-weight: 950;
}

.about-trust-meter div {
	height: 10px;
	overflow: hidden;
	border-radius: 999px;
	background: #e8eefc;
}

.about-trust-meter i {
	display: block;
	width: 92%;
	height: 100%;
	background: linear-gradient(90deg, var(--green), var(--blue));
}

.about-mission-section {
	padding: 4rem 0;
	background: var(--white);
}

.about-mission-grid p:not(.eyebrow) {
	color: var(--muted);
	font-size: 1.06rem;
}

.about-stats {
	display: grid;
	gap: 0.8rem;
}

.about-stats article {
	padding: 1rem;
	box-shadow: 0 14px 34px rgba(16, 32, 40, 0.07);
}

.about-stats strong,
.about-stats span {
	display: block;
}

.about-stats strong {
	color: var(--green);
	font-size: 2.5rem;
	line-height: 1;
}

.about-stats span {
	margin-top: 0.35rem;
	color: var(--muted);
	font-weight: 850;
}

.about-principles-section {
	background: #eef3ff;
}

.about-principles-grid,
.about-process-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1rem;
}

.about-principles-grid article,
.about-process-grid article {
	padding: 1.15rem;
	box-shadow: 0 14px 34px rgba(16, 32, 40, 0.07);
}

.about-principles-grid p,
.about-process-grid p {
	color: var(--muted);
}

.about-compare-section {
	padding: 4.5rem 0;
	background: var(--ink);
	color: var(--white);
}

.about-compare-grid p:not(.eyebrow) {
	color: rgba(255, 255, 255, 0.74);
}

.about-toggle-card {
	padding: 1rem;
}

.about-toggle-buttons {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.5rem;
	margin-bottom: 0.8rem;
}

.about-toggle-buttons button {
	min-height: 42px;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: #f7faff;
	color: var(--ink);
	font-weight: 850;
	cursor: pointer;
}

.about-toggle-buttons button.is-active,
.about-toggle-buttons button:hover {
	border-color: var(--green);
	background: #e8eefc;
	color: var(--green-dark);
}

.about-toggle-result {
	padding: 0.9rem;
	border-radius: var(--radius);
	background: var(--ink);
	color: var(--white);
}

.about-toggle-result p {
	margin: 0.35rem 0 0;
	color: rgba(255, 255, 255, 0.75);
}

.about-process-section {
	background: var(--white);
}

.about-process-grid strong {
	display: grid;
	width: 38px;
	height: 38px;
	place-items: center;
	margin-bottom: 0.8rem;
	border-radius: 50%;
	background: var(--green);
	color: var(--white);
}

.no-test-hero {
	padding: 6rem 0 4rem;
	background:
		linear-gradient(90deg, rgba(7, 19, 24, 0.92), rgba(7, 19, 24, 0.58)),
		url("../../../../uploads/2026/01/DVLA-driving-licence.webp");
	background-position: center;
	background-size: cover;
	color: var(--white);
}

.no-test-hero-grid,
.no-test-checker-grid,
.no-test-truth-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 410px;
	gap: 2rem;
	align-items: center;
}

.no-test-hero h1 {
	max-width: 850px;
	font-size: clamp(2.8rem, 6vw, 5rem);
}

.no-test-hero p:not(.eyebrow) {
	max-width: 700px;
	color: rgba(255, 255, 255, 0.84);
	font-size: 1.12rem;
}

.no-test-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.8rem;
	margin-top: 1.6rem;
}

.no-test-warning,
.no-test-result,
.no-test-route-grid article,
.no-test-truth-card {
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: var(--white);
	color: var(--ink);
	box-shadow: var(--shadow);
}

.no-test-warning {
	padding: 1.2rem;
}

.no-test-warning p {
	color: var(--muted);
}

.no-test-checker {
	padding: 2.5rem 0;
	background: var(--white);
	border-bottom: 1px solid var(--line);
}

.no-test-checker-grid {
	grid-template-columns: 300px minmax(0, 1fr) 390px;
}

.no-test-checker h2 {
	font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.no-test-options {
	display: flex;
	flex-wrap: wrap;
	gap: 0.55rem;
}

.no-test-options button {
	min-height: 42px;
	padding: 0.55rem 0.75rem;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: #f7faff;
	color: var(--ink);
	font-weight: 850;
	cursor: pointer;
}

.no-test-options button.is-active,
.no-test-options button:hover {
	border-color: var(--green);
	background: #e8eefc;
	color: var(--green-dark);
}

.no-test-result {
	padding: 0.9rem;
	box-shadow: 0 12px 30px rgba(16, 32, 40, 0.06);
}

.no-test-result p {
	margin: 0.35rem 0 0;
	color: var(--muted);
	font-size: 0.94rem;
}

.no-test-routes-section {
	background: #eef3ff;
}

.no-test-route-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1rem;
}

.no-test-route-grid article {
	padding: 1.15rem;
	box-shadow: 0 14px 34px rgba(16, 32, 40, 0.07);
}

.no-test-route-grid span {
	display: grid;
	width: 42px;
	height: 42px;
	place-items: center;
	margin-bottom: 0.8rem;
	border-radius: var(--radius);
	background: #e8eefc;
	color: var(--green-dark);
	font-weight: 950;
}

.no-test-route-grid p,
.no-test-truth-grid p,
.no-test-truth-card li {
	color: var(--muted);
}

.no-test-route-grid a {
	color: var(--green);
	font-weight: 850;
}

.no-test-truth-section {
	background: var(--white);
}

.no-test-truth-card {
	padding: 1.15rem;
	box-shadow: 0 14px 34px rgba(16, 32, 40, 0.07);
}

.no-test-truth-card ul {
	margin: 0.8rem 0 0;
	padding-left: 1.1rem;
}

.booking-help-hero {
	padding: 6rem 0 4rem;
	background:
		linear-gradient(90deg, rgba(7, 19, 24, 0.9), rgba(7, 19, 24, 0.62)),
		url("../../../../uploads/2026/01/drivingtestexaminerincar-1024x683-1.webp");
	background-position: center;
	background-size: cover;
	color: var(--white);
}

.booking-help-hero-grid,
.booking-help-router-grid,
.booking-help-main-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 410px;
	gap: 2rem;
	align-items: center;
}

.booking-help-hero h1 {
	max-width: 850px;
	font-size: clamp(2.8rem, 6vw, 5rem);
}

.booking-help-hero p:not(.eyebrow) {
	max-width: 700px;
	color: rgba(255, 255, 255, 0.84);
	font-size: 1.12rem;
}

.booking-help-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.8rem;
	margin-top: 1.6rem;
}

.booking-help-notice,
.booking-help-result,
.booking-help-form-card {
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: var(--white);
	color: var(--ink);
	box-shadow: var(--shadow);
}

.booking-help-notice {
	padding: 1.2rem;
}

.booking-help-notice p,
.booking-help-result p {
	color: var(--muted);
}

.booking-help-router {
	padding: 2.5rem 0;
	background: var(--white);
	border-bottom: 1px solid var(--line);
}

.booking-help-router-grid {
	grid-template-columns: 300px minmax(0, 1fr) 390px;
}

.booking-help-router h2 {
	font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.booking-help-options {
	display: flex;
	flex-wrap: wrap;
	gap: 0.55rem;
}

.booking-help-options button {
	min-height: 42px;
	padding: 0.55rem 0.75rem;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: #f7faff;
	color: var(--ink);
	font-weight: 850;
	cursor: pointer;
}

.booking-help-options button.is-active,
.booking-help-options button:hover {
	border-color: var(--green);
	background: #e8eefc;
	color: var(--green-dark);
}

.booking-help-result {
	padding: 0.9rem;
	box-shadow: 0 12px 30px rgba(16, 32, 40, 0.06);
}

.booking-help-result p {
	margin: 0.35rem 0 0;
	font-size: 0.94rem;
}

.booking-help-main {
	background: #eef3ff;
}

.booking-help-main-grid {
	align-items: start;
}

.booking-help-form-card {
	padding: 1.4rem;
}

.booking-help-form {
	display: grid;
	gap: 1rem;
	margin-top: 1rem;
}

.booking-help-form label {
	display: grid;
	gap: 0.4rem;
	color: var(--muted);
	font-weight: 850;
}

.booking-help-form input[type="text"],
.booking-help-form input[type="email"],
.booking-help-form select,
.booking-help-form textarea {
	width: 100%;
	min-height: 48px;
	padding: 0.75rem 0.85rem;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: #fbfdfc;
	color: var(--ink);
}

.booking-help-form textarea {
	min-height: 150px;
	resize: vertical;
}

.booking-help-side {
	display: grid;
	gap: 1rem;
}

.prose {
	max-width: 780px;
}

.prose > *:first-child {
	margin-top: 0;
}

@media (max-width: 980px) {
	.nav-toggle {
		display: inline-block;
	}

	.primary-nav {
		position: fixed;
		inset: 78px 0 auto 0;
		display: none;
		padding: 1rem 20px 1.4rem;
		border-bottom: 1px solid var(--line);
		background: var(--paper);
		box-shadow: var(--shadow);
	}

	.primary-nav.is-open {
		display: grid;
	}

	.primary-nav .menu {
		display: grid;
	}

	.hero {
		padding-top: 5.4rem;
	}

	.hero-grid,
	.split-grid,
	.official-grid,
	.cta-grid,
	.footer-grid,
	.guide-hero-grid,
	.guides-toolbar-grid,
	.planner-grid {
		grid-template-columns: 1fr;
	}

	.contact-hero-grid,
	.contact-picker-grid,
	.contact-grid {
		grid-template-columns: 1fr;
	}

	.contact-pro-hero-grid,
	.contact-pro-main-grid,
	.contact-router-head,
	.services-hero-grid,
	.service-finder-grid,
	.services-library-head,
	.about-hero-grid,
	.about-mission-grid,
	.about-compare-grid,
	.no-test-hero-grid,
	.no-test-checker-grid,
	.no-test-truth-grid,
	.booking-help-hero-grid,
	.booking-help-router-grid,
	.booking-help-main-grid {
		grid-template-columns: 1fr;
	}

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

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

	.hero-grid {
		align-items: stretch;
	}

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

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

	.guide-filters {
		justify-content: flex-start;
	}

	.contact-help-grid {
		grid-template-columns: 1fr;
	}

	.contact-proof-grid {
		grid-template-columns: 1fr;
	}

	.services-process-grid {
		grid-template-columns: 1fr;
	}

	.about-principles-grid,
	.about-process-grid,
	.no-test-route-grid {
		grid-template-columns: 1fr;
	}

	.journey-header {
		display: grid;
	}

	.journey-steps {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 640px) {
	.shell {
		width: min(100% - 28px, 1140px);
	}

	.nav-shell {
		min-height: 70px;
	}

	.brand small {
		display: none;
	}

	.primary-nav {
		top: 70px;
	}

	.hero {
		min-height: auto;
		padding: 4.5rem 0 2rem;
	}

	h1 {
		font-size: 3rem;
	}

	h2 {
		font-size: 2rem;
	}

	.hero-panel {
		margin-top: 1rem;
	}

	.notice-grid,
	.card-grid,
	.guide-cards {
		grid-template-columns: 1fr;
	}

	.guides-toolbar {
		top: 70px;
	}

	.finder-options,
	.journey-steps {
		grid-template-columns: 1fr;
	}

	.contact-pro-hero {
		padding: 4.5rem 0 2.5rem;
	}

	.contact-pro-copy h1 {
		font-size: 2.7rem;
	}

	.contact-pro-actions .button {
		width: 100%;
	}

	.contact-router-grid,
	.contact-form-row,
	.services-grid {
		grid-template-columns: 1fr;
	}

	.contact-router-grid button {
		min-height: 96px;
	}

	.services-hero {
		padding: 4.5rem 0 2.5rem;
	}

	.services-hero h1 {
		font-size: 2.7rem;
	}

	.services-hero-actions .button {
		width: 100%;
	}

	.about-hero {
		padding: 4.5rem 0 2.5rem;
	}

	.about-hero h1 {
		font-size: 2.7rem;
	}

	.about-hero-actions .button {
		width: 100%;
	}

	.about-toggle-buttons {
		grid-template-columns: 1fr;
	}

	.no-test-hero {
		padding: 4.5rem 0 2.5rem;
	}

	.no-test-hero h1 {
		font-size: 2.7rem;
	}

	.no-test-actions .button {
		width: 100%;
	}

	.booking-help-hero {
		padding: 4.5rem 0 2.5rem;
	}

	.booking-help-hero h1 {
		font-size: 2.7rem;
	}

	.booking-help-actions .button {
		width: 100%;
	}

	.content-section {
		padding: 4rem 0;
	}

	.hero-actions .button,
	.cta-grid .button {
		width: 100%;
	}

	.fee-output {
		font-size: 2.4rem;
	}
}
