:root {
	--ink: #08244d;
	--navy: #0b2f63;
	--blue: #1d6fb8;
	--sky: #dceeff;
	--gold: #d8a227;
	--green: #35795e;
	--paper: #f8fafc;
	--mist: #eef3f7;
	--line: #d7e2ed;
	--white: #ffffff;
	--shadow: 0 20px 50px rgba(8, 36, 77, 0.16);
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	color: var(--ink);
	background: var(--paper);
	font-family: "Inter", Arial, sans-serif;
	font-size: 16px;
	line-height: 1.6;
}

body.has-motion .animate-on-load .hero-copy,
body.has-motion .animate-on-load .hero-panel {
	animation: fadeUp 700ms ease both;
}

body.has-motion .animate-on-load .hero-panel {
	animation-delay: 140ms;
}

body.has-motion .reveal {
	opacity: 0;
	transform: translateY(28px);
	transition: opacity 700ms ease, transform 700ms ease;
}

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

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

a {
	color: inherit;
	text-decoration: none;
}

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

.skip-link {
	position: absolute;
	top: -40px;
	left: 16px;
	z-index: 20;
	padding: 10px 14px;
	background: var(--gold);
	color: var(--ink);
	border-radius: 4px;
}

.skip-link:focus {
	top: 16px;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 10;
	background: rgba(248, 250, 252, 0.94);
	border-bottom: 1px solid rgba(215, 226, 237, 0.9);
	backdrop-filter: blur(14px);
}

.header-inner {
	display: flex;
	align-items: center;
	gap: 24px;
	min-height: 76px;
}

.brand {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	font-weight: 800;
	letter-spacing: 0;
}

.brand-link {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	color: inherit;
}

.brand-mark {
	display: grid;
	place-items: center;
	width: 44px;
	height: 44px;
	color: var(--white);
	background: var(--navy);
	border-radius: 8px;
}

.brand-text {
	font-size: 1.1rem;
}

.brand .custom-logo-link {
	display: inline-flex;
	align-items: center;
}

.custom-logo {
	width: auto;
	max-height: 52px;
}

.primary-nav {
	margin-left: auto;
}

.primary-nav ul,
.footer-bottom ul {
	display: flex;
	align-items: center;
	gap: 24px;
	padding: 0;
	margin: 0;
	list-style: none;
}

.primary-nav a {
	color: #173963;
	font-weight: 700;
	font-size: 0.94rem;
}

.header-cta,
.button,
.footer-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	padding: 12px 18px;
	border: 1px solid transparent;
	border-radius: 7px;
	font-weight: 800;
	line-height: 1.1;
	text-align: center;
	transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.header-cta:hover,
.button:hover,
.footer-button:hover {
	transform: translateY(-2px);
	box-shadow: 0 12px 24px rgba(8, 36, 77, 0.16);
}

.header-cta,
.button-primary {
	color: var(--white);
	background: var(--navy);
}

.button-secondary {
	color: var(--ink);
	background: var(--white);
	border-color: var(--line);
}

.button-light {
	color: var(--navy);
	background: var(--white);
}

.count-inline {
	display: inline !important;
	margin: 0 !important;
	font-size: inherit !important;
	line-height: inherit !important;
}

.menu-toggle {
	display: none;
	width: 46px;
	height: 46px;
	padding: 0;
	margin-left: auto;
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: 7px;
}

.menu-toggle span {
	display: block;
	width: 20px;
	height: 2px;
	margin: 5px auto;
	background: var(--ink);
}

.hero {
	position: relative;
	overflow: hidden;
	padding: 72px 0 56px;
	background:
		linear-gradient(90deg, rgba(248, 250, 252, 0.96) 0%, rgba(248, 250, 252, 0.88) 46%, rgba(8, 36, 77, 0.1) 100%),
		radial-gradient(circle at 76% 20%, rgba(216, 162, 39, 0.25), transparent 28%),
		linear-gradient(135deg, var(--paper), var(--mist));
}

.hero::before {
	position: absolute;
	inset: -20%;
	content: "";
	background:
		linear-gradient(115deg, transparent 0 38%, rgba(255, 255, 255, 0.55) 46%, transparent 54% 100%),
		radial-gradient(circle at 78% 18%, rgba(216, 162, 39, 0.22), transparent 23%);
	opacity: 0.7;
	transform: translateX(-18%);
	pointer-events: none;
}

body.has-motion .hero::before {
	animation: heroSweep 8s ease-in-out infinite alternate;
}

.hero-grid {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(440px, 1.1fr);
	align-items: center;
	gap: 42px;
}

.eyebrow {
	margin: 0 0 12px;
	color: var(--blue);
	font-size: 0.82rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

h1,
h2,
h3,
p {
	margin-top: 0;
}

h1 {
	margin-bottom: 18px;
	color: var(--ink);
	font-size: clamp(3.5rem, 6vw, 6.8rem);
	line-height: 0.92;
	font-weight: 800;
	letter-spacing: 0;
	text-transform: uppercase;
}

h2 {
	margin-bottom: 18px;
	font-size: clamp(2rem, 3.2vw, 3.35rem);
	line-height: 1.05;
	font-weight: 800;
	letter-spacing: 0;
}

h3 {
	margin-bottom: 10px;
	font-size: 1.22rem;
	line-height: 1.2;
	font-weight: 800;
}

.hero-lede {
	max-width: 680px;
	margin-bottom: 28px;
	color: #24476f;
	font-size: 1.28rem;
	font-weight: 600;
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-bottom: 26px;
}

.hero-proof {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.hero-proof span {
	padding: 8px 12px;
	color: var(--ink);
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: 999px;
	font-size: 0.88rem;
	font-weight: 800;
}

.hero-panel {
	position: relative;
	display: grid;
	gap: 18px;
}

.hero-card,
.hero-map {
	padding: 28px;
	background: rgba(255, 255, 255, 0.84);
	border: 1px solid rgba(255, 255, 255, 0.72);
	border-radius: 8px;
	box-shadow: var(--shadow);
	backdrop-filter: blur(8px);
}

.hero-card-label {
	margin-bottom: 8px;
	color: var(--blue);
	font-size: 0.85rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.hero-card-price {
	margin-bottom: 10px;
	color: var(--navy);
	font-size: clamp(3rem, 6vw, 5rem);
	font-weight: 800;
	line-height: 0.95;
}

.hero-card-price span {
	display: block;
	margin-top: 8px;
	font-size: 1rem;
	line-height: 1.2;
}

.hero-map {
	min-height: 220px;
	background:
		linear-gradient(135deg, rgba(11, 47, 99, 0.94), rgba(29, 111, 184, 0.88)),
		linear-gradient(45deg, rgba(255, 255, 255, 0.08) 25%, transparent 25%),
		linear-gradient(-45deg, rgba(255, 255, 255, 0.08) 25%, transparent 25%);
	background-size: auto, 28px 28px, 28px 28px;
	color: var(--white);
}

.hero-map {
	display: flex;
	flex-wrap: wrap;
	align-content: flex-start;
	gap: 10px;
}

.hero-map span {
	padding: 8px 12px;
	background: rgba(255, 255, 255, 0.12);
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 999px;
	font-size: 0.9rem;
	font-weight: 700;
}

body.has-motion .hero-map span {
	animation: softFloat 4.5s ease-in-out infinite;
}

body.has-motion .hero-map span:nth-child(2n) {
	animation-delay: 500ms;
}

body.has-motion .hero-map span:nth-child(3n) {
	animation-delay: 900ms;
}

.price-strip {
	padding: 30px 0;
	color: var(--white);
	background: linear-gradient(135deg, var(--navy), #104c87);
}

.price-inner {
	display: grid;
	grid-template-columns: minmax(260px, 0.8fr) minmax(320px, 1fr);
	align-items: center;
	gap: 34px;
}

.price-inner .eyebrow {
	color: #9ec9f3;
}

.price-inner h2 {
	margin: 0;
	font-size: clamp(1.7rem, 3vw, 3rem);
}

.price-inner strong {
	color: var(--gold);
}

.price-inner p:last-child {
	margin: 0;
	color: #e4eef8;
	font-size: 1.08rem;
}

.section {
	padding: 86px 0;
}

.section-muted {
	background: var(--mist);
}

.section-heading {
	max-width: 760px;
	margin-bottom: 34px;
}

.section-heading.compact {
	max-width: 680px;
}

.feature-grid {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 18px;
}

.feature-card,
.plan,
.area-panel,
.steps article,
.contact-card,
.faq-list details {
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: 8px;
	box-shadow: 0 10px 28px rgba(8, 36, 77, 0.08);
	transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.feature-card:hover,
.plan:hover,
.area-panel:hover,
.steps article:hover,
.contact-card:hover,
.faq-list details:hover {
	transform: translateY(-5px);
	border-color: rgba(29, 111, 184, 0.28);
	box-shadow: 0 18px 42px rgba(8, 36, 77, 0.14);
}

.feature-card {
	padding: 28px 20px;
}

.feature-card p,
.plan p,
.steps p,
.detail-list p,
.faq-list p,
.contact-card p,
.split-grid p {
	color: #355675;
}

.icon {
	display: grid;
	place-items: center;
	width: 58px;
	height: 58px;
	margin-bottom: 18px;
	background: #eef5fb;
	border: 1px solid var(--line);
	border-radius: 50%;
	transition: transform 220ms ease, background-color 220ms ease;
}

.feature-card:hover .icon {
	transform: scale(1.06) rotate(-3deg);
	background: var(--sky);
}

.icon::before {
	color: var(--navy);
	font-size: 1.7rem;
	font-weight: 800;
}

.shield::before {
	content: "S";
}

.speed::before {
	content: "↗";
}

.headset::before {
	content: "?";
}

.calendar::before {
	content: "✓";
}

.flag::before {
	content: "UK";
	font-size: 1rem;
}

.plans {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
}

.plan {
	display: flex;
	flex-direction: column;
	padding: 30px;
}

.plan.featured {
	color: var(--white);
	background: linear-gradient(160deg, var(--navy), #0e5791);
	border-color: #174f86;
	position: relative;
	overflow: hidden;
}

.plan.featured::after {
	position: absolute;
	inset: 0;
	content: "";
	background: linear-gradient(115deg, transparent 0 38%, rgba(255, 255, 255, 0.16) 48%, transparent 58% 100%);
	transform: translateX(-120%);
	pointer-events: none;
}

body.has-motion .plan.featured:hover::after {
	animation: cardShine 900ms ease;
}

.plan.featured p,
.plan.featured li {
	color: #e6f1fc;
}

.plan-label {
	margin-bottom: 10px;
	color: var(--blue);
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	font-size: 0.78rem;
}

.featured .plan-label {
	color: var(--gold);
}

.price {
	margin-bottom: 18px;
	font-size: 2.5rem;
	font-weight: 800;
	line-height: 1;
}

.price span {
	font-size: 1rem;
	font-weight: 700;
}

.plan ul {
	padding: 0;
	margin: 12px 0 24px;
	list-style: none;
}

.plan li {
	position: relative;
	padding-left: 24px;
	margin-bottom: 10px;
	color: #355675;
}

.plan li::before {
	position: absolute;
	left: 0;
	content: "✓";
	color: var(--green);
	font-weight: 800;
}

.plan .button {
	margin-top: auto;
}

.split-grid,
.detail-grid,
.faq-grid,
.cta-inner {
	display: grid;
	grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1fr);
	gap: 44px;
	align-items: start;
}

.area-panel {
	padding: 30px;
	background:
		linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)),
		linear-gradient(135deg, #d8eadf, #e6f3ff);
}

.area-list {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 18px;
}

.area-list span {
	padding: 9px 12px;
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: 999px;
	font-weight: 800;
}

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

.steps article {
	padding: 26px;
}

.steps span {
	display: inline-block;
	margin-bottom: 18px;
	color: var(--blue);
	font-size: 0.9rem;
	font-weight: 800;
}

.detail-list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 22px;
}

.detail-list div {
	padding-left: 20px;
	border-left: 4px solid var(--gold);
}

.faq-list {
	display: grid;
	gap: 12px;
}

.faq-list details {
	padding: 18px 20px;
}

.faq-list summary {
	cursor: pointer;
	font-weight: 800;
	transition: color 180ms ease;
}

.faq-list details[open] summary,
.faq-list summary:hover {
	color: var(--blue);
}

.faq-list p {
	margin: 12px 0 0;
}

.cta-section {
	padding: 86px 0;
	color: var(--white);
	background:
		linear-gradient(135deg, rgba(8, 36, 77, 0.96), rgba(16, 76, 135, 0.96)),
		linear-gradient(45deg, var(--navy), var(--green));
}

.cta-section .eyebrow {
	color: #9ec9f3;
}

.cta-section p {
	color: #e4eef8;
}

.contact-card {
	padding: 30px;
	color: var(--ink);
}

.contact-card p {
	color: #355675;
}

.site-footer {
	padding: 54px 0 26px;
	color: #dbe8f5;
	background: #061a36;
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.4fr repeat(3, minmax(160px, 1fr));
	gap: 34px;
}

.footer-brand,
.footer-title {
	margin-bottom: 12px;
	color: var(--white);
	font-weight: 800;
}

.site-footer a {
	display: block;
	margin-bottom: 8px;
	color: #dbe8f5;
}

.footer-button {
	display: inline-flex;
	color: var(--ink) !important;
	background: var(--gold);
}

.footer-bottom {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	padding-top: 26px;
	margin-top: 34px;
	border-top: 1px solid rgba(255, 255, 255, 0.14);
	font-size: 0.9rem;
}

.footer-bottom p {
	margin: 0;
}

.content-page {
	padding: 74px 0;
}

.entry {
	max-width: 820px;
}

.entry h1 {
	font-size: clamp(2.3rem, 5vw, 4.2rem);
}

.page-hero {
	position: relative;
	overflow: hidden;
	padding: 78px 0;
	background:
		radial-gradient(circle at 82% 20%, rgba(216, 162, 39, 0.22), transparent 24%),
		linear-gradient(135deg, #f8fafc, #dceeff);
}

.page-hero-grid {
	display: grid;
	grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.85fr);
	align-items: center;
	gap: 48px;
}

.page-hero img {
	width: 100%;
	border: 1px solid rgba(215, 226, 237, 0.9);
	border-radius: 8px;
	box-shadow: var(--shadow);
}

.page-hero h1 {
	max-width: 820px;
	font-size: clamp(2.8rem, 5vw, 5.4rem);
}

.detail-list.wide,
.support-grid {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.portal-wrap,
.payment-panel {
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: 8px;
	box-shadow: var(--shadow);
}

.portal-login,
.portal-dashboard,
.payment-panel {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
	gap: 34px;
	align-items: start;
	padding: 34px;
}

.login-panel {
	padding: 24px;
	background: var(--mist);
	border: 1px solid var(--line);
	border-radius: 8px;
}

.login-panel label {
	display: block;
	margin-bottom: 6px;
	font-weight: 800;
}

.login-panel input[type="text"],
.login-panel input[type="password"] {
	width: 100%;
	min-height: 46px;
	padding: 10px 12px;
	border: 1px solid var(--line);
	border-radius: 7px;
	font: inherit;
}

.login-panel input[type="submit"] {
	min-height: 46px;
	padding: 12px 18px;
	color: var(--white);
	background: var(--navy);
	border: 0;
	border-radius: 7px;
	font-weight: 800;
	cursor: pointer;
}

.portal-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.portal-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
	padding: 0 34px 34px;
}

.portal-grid article {
	padding: 24px;
	background: var(--mist);
	border: 1px solid var(--line);
	border-radius: 8px;
}

.portal-grid span {
	color: var(--blue);
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.payment-methods {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	align-content: flex-start;
}

.payment-methods span {
	padding: 11px 14px;
	color: var(--ink);
	background: var(--mist);
	border: 1px solid var(--line);
	border-radius: 7px;
	font-weight: 800;
}

.editable-content {
	background: var(--white);
}

.editable-content .entry {
	max-width: 920px;
}

.editable-content .entry > *:last-child {
	margin-bottom: 0;
}

.editable-content input,
.editable-content textarea,
.editable-content select,
.contact-card input,
.contact-card textarea,
.contact-card select,
.payment-embed input,
.payment-embed textarea,
.payment-embed select {
	width: 100%;
	min-height: 46px;
	padding: 10px 12px;
	border: 1px solid var(--line);
	border-radius: 7px;
	font: inherit;
}

.editable-content textarea,
.contact-card textarea,
.payment-embed textarea {
	min-height: 130px;
}

.editable-content input[type="submit"],
.contact-card input[type="submit"],
.payment-embed input[type="submit"] {
	width: auto;
	color: var(--white);
	background: var(--navy);
	border: 0;
	font-weight: 800;
	cursor: pointer;
}

@keyframes fadeUp {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes heroSweep {
	from {
		transform: translateX(-18%);
	}
	to {
		transform: translateX(10%);
	}
}

@keyframes softFloat {
	0%,
	100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-6px);
	}
}

@keyframes cardShine {
	from {
		transform: translateX(-120%);
	}
	to {
		transform: translateX(120%);
	}
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	*,
	*::before,
	*::after {
		animation-duration: 0.001ms !important;
		animation-iteration-count: 1 !important;
		scroll-behavior: auto !important;
		transition-duration: 0.001ms !important;
	}

	body.has-motion .reveal {
		opacity: 1;
		transform: none;
	}
}

@media (max-width: 1020px) {
	.hero-grid,
	.price-inner,
	.split-grid,
	.detail-grid,
	.faq-grid,
	.cta-inner,
	.page-hero-grid,
	.portal-login,
	.portal-dashboard,
	.payment-panel {
		grid-template-columns: 1fr;
	}

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

	.plans,
	.steps,
	.detail-list.wide,
	.support-grid,
	.portal-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 820px) {
	.header-inner {
		min-height: 68px;
	}

	.menu-toggle {
		display: block;
	}

	.primary-nav {
		position: absolute;
		top: 68px;
		left: 0;
		right: 0;
		display: none;
		padding: 18px 20px 22px;
		background: var(--paper);
		border-bottom: 1px solid var(--line);
	}

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

	.primary-nav ul {
		align-items: stretch;
		flex-direction: column;
		gap: 12px;
		width: min(1140px, calc(100% - 40px));
		margin: 0 auto;
	}

	.header-cta {
		display: none;
	}

	h1 {
		font-size: clamp(3.1rem, 13vw, 5rem);
	}

	.hero {
		padding-top: 48px;
	}

	.section,
	.cta-section {
		padding: 62px 0;
	}
}

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

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

	.feature-grid,
	.plans,
	.steps,
	.detail-list,
	.footer-grid,
	.detail-list.wide,
	.support-grid,
	.portal-grid {
		grid-template-columns: 1fr;
	}

	.portal-login,
	.portal-dashboard,
	.payment-panel {
		padding: 24px;
	}

	.portal-grid {
		padding: 0 24px 24px;
	}

	.footer-bottom {
		display: block;
	}

	.footer-bottom ul {
		align-items: flex-start;
		flex-direction: column;
		gap: 8px;
		margin-top: 18px;
	}
}
