/*
Theme Name: Trusted Agents
Author: Kolada Works
Description: A custom WordPress theme
Version: 1.0
Text Domain: trusted-agents
*/

/* ── Reset & Variables ── */
*,
*::before,
*::after {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

:root {
	--black: #0a0a0a;
	--white: #fefefe;
	--off-white: #f6f6f4;
	--grey-300: #d4d4d4;
	--grey-500: #8a8a8a;
	--grey-700: #4a4a4a;
	--cyan: #3dffc0;
	--cyan-muted: rgba(61, 255, 192, 0.08);
	--yellow: #11fb7f;
	--display: "Cal Sans", sans-serif;
	--body: "Google Sans", sans-serif;
	--ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
	--ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: var(--body);
	background: var(--white);
	color: var(--black);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	min-height: 100vh;
	overflow-x: hidden;
	display: flex;
	flex-direction: column;
}

body > .site-footer {
	margin-top: auto;
}

/* ── Ambient glow ── */
.ambient-glow {
	position: fixed;
	top: -30vh;
	left: 50%;
	transform: translateX(-50%);
	width: 60vw;
	height: 60vh;
	background: radial-gradient(
		ellipse at center,
		rgba(61, 255, 192, 0.06) 0%,
		rgba(61, 255, 192, 0.02) 40%,
		transparent 70%
	);
	pointer-events: none;
	z-index: 0;
}

/* ── Header ── */
.site-header {
	position: relative;
	z-index: 10;
	padding: 2.25rem 3.5rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
	opacity: 0;
	animation: fadeIn 0.8s var(--ease-out-expo) 0.1s forwards;
}

.logo-group {
	display: flex;
	align-items: center;
}

.logo-img {
	height: 32px;
	width: auto;
}

/* ── Header nav ── */
.header-nav .header-nav-list {
	display: flex;
	align-items: center;
	gap: 1.75rem;
	list-style: none;
}

.header-nav .header-nav-list li a {
	font-family: var(--body);
	font-size: 1.2rem;
	font-weight: 600;
	color: var(--black);
	text-decoration: none;
	padding: 0.35rem 0;
	position: relative;
	transition: color 0.15s ease;
}

.header-nav .header-nav-list li a::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: -2px;
	height: 2.5px;
	background: var(--yellow);
	border-radius: 2px;
	transform: scaleX(0);
	transition: transform 0.25s var(--ease-out-expo);
}

.header-nav .header-nav-list li a:hover::after,
.header-nav .header-nav-list li.current-menu-item a::after {
	transform: scaleX(1);
}

/* ── Mobile nav toggle (hidden on desktop) ── */
.nav-toggle {
	display: none;
	background: none;
	border: none;
	cursor: pointer;
	padding: 0.5rem;
	flex-direction: column;
	gap: 6px;
	z-index: 11;
}

.nav-toggle-bar {
	display: block;
	width: 24px;
	height: 2px;
	background: var(--black);
	border-radius: 2px;
	transition:
		transform 0.3s var(--ease-out-expo),
		opacity 0.3s ease;
}

.nav-toggle.is-open .nav-toggle-bar:first-child {
	transform: translateY(4px) rotate(45deg);
}

.nav-toggle.is-open .nav-toggle-bar:last-child {
	transform: translateY(-4px) rotate(-45deg);
}

/* CTA menu item — add CSS class "menu-item-cta" in WP menu editor */
.header-nav .header-nav-list li.menu-item-cta a {
	background: var(--yellow);
	color: var(--black);
	font-weight: 500;
	padding: 0.55rem 1.25rem;
	border-radius: 8px;
	transition: opacity 0.15s ease;
}

.header-nav .header-nav-list li.menu-item-cta a::after {
	display: none;
}

.header-nav .header-nav-list li.menu-item-cta a:hover {
	opacity: 0.85;
}

/* ── Hero ── */
.hero {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 12vh 2rem 4rem;
	justify-content: center;
}

.hero-title {
	font-family: var(--display);
	font-size: clamp(2.7rem, 6.4vw, 5.5rem);
	font-weight: 800;
	line-height: 1.02;
	letter-spacing: -0.035em;
	max-width: 17ch;
	margin-bottom: 1.75rem;
	min-height: 2.04em;
}

.hero-title-text {
	color: #fefefe;
}

.hero-cursor {
	display: inline;
	font-weight: 400;
	animation: cursorBlink 0.8s step-end infinite;
}

.hero-subtitle {
	font-family: var(--body);
	font-size: clamp(1.05rem, 1.8vw, 1.25rem);
	line-height: 1.6;
	color: var(--grey-700);
	max-width: 540px;
	margin-bottom: 3.5rem;
	font-weight: 400;
	opacity: 0;
	transform: translateY(20px);
	animation: slideUp 1s var(--ease-out-expo) 0.45s forwards;
}

.cta-button {
	opacity: 0;
	transform: translateY(20px);
	animation: slideUp 1s var(--ease-out-expo) 0.6s forwards;
}

/* ── Hero handwritten letter ── */
.hero-letter {
	font-size: 17px;
	line-height: 1.25;
	color: #fefefe;
	max-width: 720px;
	margin-top: 5rem;
	padding-top: 2rem;
	position: relative;
	opacity: 0;
	transform: translateY(20px);
	text-align: justify;
	animation: slideUp 1s var(--ease-out-expo) 0.75s forwards;
}

/* Fixed gradient overlay – creates scroll-reveal illusion */
.hero-letter-fade {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	height: 30vh;
	background: linear-gradient(to bottom, transparent, #0a0a0a 85%);
	pointer-events: none;
	z-index: 2;
}

.hero-letter::before {
	content: "";
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 320px;
	height: 8px;
	background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 8' fill='none'%3E%3Cpath d='M2 5c40-2 80 1 120-1s80-2 120 0 40 1 76-1' stroke='%23fefefe' stroke-width='1.5' stroke-linecap='round' fill='none' opacity='0.4'/%3E%3C/svg%3E")
		no-repeat center / contain;
}

.hero-letter p {
	margin-bottom: 1.3em;
}
.hero-letter h1,
.hero-letter h2,
.hero-letter h3,
.hero-letter h4 {
	margin: 1em 0 0.5em;
}

.hero-letter a {
	color: inherit;
	text-decoration: underline;
	text-underline-offset: 3px;
}
.hero-letter ul {
	padding-left: 1.2em;
	list-style: none;
	margin-bottom: 1em;
}

.hero-letter ul li {
	position: relative;
	margin-bottom: 0.5em;
}
.hero-letter ul li p {
	margin: 0;
}

.hero-letter ul li::before {
	content: "";
	position: absolute;
	left: -1em;
	top: 0.45em;
	width: 7px;
	height: 7px;
	background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 7 7'%3E%3Cellipse cx='3.5' cy='3.5' rx='2.8' ry='3' fill='%23fefefe' opacity='0.5' transform='rotate(-8 3.5 3.5)'/%3E%3C/svg%3E")
		no-repeat center / contain;
}

.cta-button .arrow {
	display: inline-block;
	transition: transform 0.3s var(--ease-out-expo);
}

.cta-button:hover .arrow {
	transform: translateX(4px);
}

/* ── Page content (Default template) ── */
.page-content {
	max-width: 680px;
	margin: 0 auto;
	padding: 4rem 2rem 3rem;
}

.page-content-title {
	font-family: var(--display);
	font-size: clamp(1.8rem, 4vw, 2.5rem);
	font-weight: 600;
	letter-spacing: -0.03em;
	margin-bottom: 2rem;
}

.page-content-body {
	font-size: 0.95rem;
	line-height: 1.75;
	color: var(--grey-700);
}

.page-content-body h2,
.page-content-body h3,
.page-content-body h4 {
	color: var(--black);
	font-family: var(--body);
	font-weight: 200;
	margin-top: 2rem;
	margin-bottom: 0.75rem;
}

.page-content-body h2 {
	font-size: 1.4rem;
}
.page-content-body h3 {
	font-size: 1.15rem;
}

.page-content-body p {
	margin-bottom: 1rem;
}

.page-content-body a {
	color: var(--black);
	text-decoration: underline;
	text-underline-offset: 2px;
}

.page-content-body ul,
.page-content-body ol {
	margin-bottom: 1rem;
	padding-left: 1.5rem;
}

.page-content-body li {
	margin-bottom: 0.35rem;
}

.logo-group {
	text-decoration: none;
	color: inherit;
}

/* ── Page intro ── */
.page-content-intro {
	font-size: 1.05rem;
	line-height: 1.65;
	color: var(--grey-500);
	margin-bottom: 2.5rem;
	max-width: 540px;
}

/* ── Contact form ── */
.contact-form {
	margin-top: 0.5rem;
}

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

/* ── Founders (About page) ── */
.founders {
	display: flex;
	flex-direction: column;
	gap: 2.5rem;
	margin-top: 0.5rem;
}

.founder-card {
	display: flex;
	gap: 2rem;
	align-items: flex-start;
}

.founder-photo {
	width: 120px;
	height: 120px;
	min-width: 120px;
	background: var(--off-white);
	border-radius: 50%;
	object-fit: cover;
}

.founder-info {
	flex: 1;
}

.founder-name {
	font-family: var(--body);
	font-size: 1.25rem;
	font-weight: 600;
	letter-spacing: -0.02em;
	margin-bottom: 0.5rem;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.founder-linkedin {
	display: inline-flex;
	color: var(--grey-500);
	transition: color 0.15s ease;
}

.founder-linkedin svg {
	width: 18px;
	height: 18px;
}

.founder-linkedin:hover {
	color: #0a66c2;
}

.founder-bio {
	font-size: 0.92rem;
	line-height: 1.65;
	color: var(--grey-700);
	margin-bottom: 0.75rem;
}

.founder-link {
	font-size: 0.85rem;
	font-weight: 600;
	color: var(--black);
	text-decoration: none;
	border-bottom: 1.5px solid var(--grey-300);
	padding-bottom: 1px;
	transition: border-color 0.15s ease;
}

.founder-link:hover {
	border-color: var(--black);
}

/* ── Footer ── */
.site-footer {
	position: relative;
	z-index: 1;
	text-align: center;
	padding: 1rem 2rem;
	opacity: 0;
	animation: fadeIn 1s var(--ease-out-expo) 0.9s forwards;
	border-top: 1px solid #eeeeec;
	display: flex;
	align-items: baseline;
	gap: 20px;
}

.footer-company {
	font-size: 0.72rem;
	color: var(--grey-500);
	letter-spacing: 0.01em;
}

.footer-links {
	display: flex;
	justify-content: center;
	gap: 1.5rem;
	list-style: none;
}

.footer-links a {
	font-size: 0.7rem;
	color: var(--grey-500);
	text-decoration: none;
	transition: color 0.15s ease;
	letter-spacing: 0.01em;
}

.footer-links a:hover {
	color: var(--black);
}

/* ── Modal overlay ── */
.modal-overlay {
	position: fixed;
	inset: 0;
	background: rgba(10, 10, 10, 0.45);
	backdrop-filter: blur(12px) saturate(120%);
	-webkit-backdrop-filter: blur(12px) saturate(120%);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 1000;
	opacity: 0;
	visibility: hidden;
	transition:
		opacity 0.35s var(--ease-out-quart),
		visibility 0.35s;
	padding: 1.5rem;
}

.modal-overlay.active {
	opacity: 1;
	visibility: visible;
}

.modal {
	background: var(--white);
	border-radius: 0;
	width: 100%;
	max-width: 480px;
	padding: 2.75rem 2.5rem 2.25rem;
	position: relative;
	transform: translateY(24px) scale(0.96);
	transition: transform 0.45s var(--ease-out-expo);
	max-height: 92vh;
	overflow-y: auto;
	box-shadow:
		0 24px 80px rgba(0, 0, 0, 0.12),
		0 0 0 1px rgba(0, 0, 0, 0.03);
}

.modal-overlay.active .modal {
	transform: translateY(0) scale(1);
}

/* Scrollbar inside modal */
.modal::-webkit-scrollbar {
	width: 6px;
}
.modal::-webkit-scrollbar-track {
	background: transparent;
}
.modal::-webkit-scrollbar-thumb {
	background: var(--grey-300);
	border-radius: 3px;
}

.modal-close {
	position: absolute;
	top: 1.25rem;
	right: 1.25rem;
	width: 32px;
	height: 32px;
	background: transparent;
	border: 1.5px solid var(--grey-300);
	border-radius: 50%;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition:
		border-color 0.15s ease,
		background 0.15s ease;
}

.modal-close svg {
	width: 14px;
	height: 14px;
	stroke: var(--grey-500);
	stroke-width: 2;
	transition: stroke 0.15s ease;
}

.modal-close:hover {
	border-color: var(--black);
	background: var(--off-white);
}

.modal-close:hover svg {
	stroke: var(--black);
}

.modal-title {
	font-family: var(--display);
	font-size: 1.55rem;
	font-weight: 400;
	letter-spacing: -0.03em;
	margin-bottom: 0.35rem;
}

.modal-desc {
	color: var(--grey-500);
	font-size: 0.9rem;
	margin-bottom: 2rem;
	line-height: 1.45;
}

/* ── Form ── */
.form-group {
	margin-bottom: 1.1rem;
}

.form-label {
	display: block;
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	color: var(--grey-700);
	margin-bottom: 0.45rem;
}

.form-input {
	width: 100%;
	padding: 0.7rem 0.9rem;
	border: 1.5px solid #e8e8e6;
	border-radius: 0;
	font-size: 0.95rem;
	font-family: var(--body);
	background: var(--white);
	color: var(--black);
	transition:
		border-color 0.2s ease,
		box-shadow 0.2s ease;
	outline: none;
}

.form-input:focus {
	border-color: var(--black);
	box-shadow: 0 0 0 3px rgba(61, 255, 192, 0.15);
}

.form-input::placeholder {
	color: #c4c4c4;
}

.form-divider {
	border: none;
	border-top: 1px solid #eeeeec;
	margin: 1.5rem 0;
}

/* ── Situation Room toggle ── */
.toggle-group {
	display: flex;
	align-items: flex-start;
	gap: 0.85rem;
	padding: 1rem 1.15rem;
	background: var(--off-white);
	border-radius: 14px;
	margin-bottom: 1rem;
	border: 1px solid transparent;
	transition: border-color 0.2s ease;
}

.toggle-group.is-on {
	border-color: rgba(61, 255, 192, 0.3);
	background: var(--cyan-muted);
}

.toggle-track {
	width: 44px;
	height: 24px;
	min-width: 44px;
	background: var(--grey-300);
	border-radius: 12px;
	position: relative;
	cursor: pointer;
	transition: background 0.25s var(--ease-out-expo);
	border: none;
	padding: 0;
	margin-top: 2px;
}

.toggle-track.active {
	background: var(--black);
	box-shadow: 0 0 12px rgba(61, 255, 192, 0.3);
}

.toggle-track::after {
	content: "";
	position: absolute;
	top: 2px;
	left: 2px;
	width: 20px;
	height: 20px;
	background: var(--white);
	border-radius: 50%;
	transition: transform 0.25s var(--ease-out-expo);
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.toggle-track.active::after {
	transform: translateX(20px);
}

.toggle-content {
	flex: 1;
}

.toggle-label {
	font-size: 0.88rem;
	font-weight: 700;
	line-height: 1.3;
	color: var(--black);
}

.toggle-desc {
	font-size: 0.78rem;
	color: var(--grey-500);
	margin-top: 0.2rem;
	line-height: 1.35;
}

/* ── Custom checkbox ── */
.checkbox-group {
	display: flex;
	align-items: flex-start;
	gap: 0.65rem;
	margin-bottom: 0.6rem;
	cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
	-webkit-appearance: none;
	appearance: none;
	width: 18px;
	height: 18px;
	min-width: 18px;
	border: 1.5px solid var(--grey-300);
	border-radius: 5px;
	margin-top: 1px;
	cursor: pointer;
	position: relative;
	transition:
		background 0.15s ease,
		border-color 0.15s ease;
}

.checkbox-group input[type="checkbox"]:checked {
	background: var(--black);
	border-color: var(--black);
}

.checkbox-group input[type="checkbox"]:checked::after {
	content: "";
	position: absolute;
	left: 5px;
	top: 2px;
	width: 5px;
	height: 9px;
	border: solid var(--white);
	border-width: 0 2px 2px 0;
	transform: rotate(45deg);
}

.checkbox-group input[type="checkbox"]:focus-visible {
	outline: 2px solid var(--cyan);
	outline-offset: 2px;
}

.checkbox-group label {
	font-size: 0.82rem;
	color: var(--grey-500);
	line-height: 1.45;
	cursor: pointer;
}

.checkbox-group label a {
	color: var(--black);
	font-weight: 500;
	text-decoration: none;
	border-bottom: 1px solid var(--grey-300);
	transition: border-color 0.15s ease;
}

.checkbox-group label a:hover {
	border-color: var(--black);
}

/* ── Reusable primary button ── */
.btn-primary {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	gap: 0.6rem;
	padding: 1.05rem 2.4rem;
	background: var(--yellow);
	color: var(--black);
	border: none;
	border-radius: 100px;
	font-family: var(--body);
	font-size: 1.05rem;
	font-weight: 600;
	cursor: pointer;
	letter-spacing: -0.01em;
	position: relative;
	transition:
		transform 0.4s var(--ease-out-expo),
		box-shadow 0.4s var(--ease-out-expo);
}

.btn-primary:hover {
	transform: translateY(-2px);
	box-shadow:
		0 0 40px rgba(17, 251, 127, 0.3),
		0 8px 30px rgba(0, 0, 0, 0.1);
}

.btn-primary:active {
	transform: translateY(0);
	transition-duration: 0.1s;
}

.btn-primary:disabled {
	opacity: 0.3;
	cursor: not-allowed;
}

.btn-primary:disabled:hover {
	transform: none;
	box-shadow: none;
}

.form-submit {
	width: 100%;
	margin-top: 1rem;
}

/* ── Forminator form overrides ── */
.forminator-custom-form .forminator-label {
	font-family: var(--body);
	font-size: 0.78rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: var(--grey-700);
	margin-bottom: 0.45rem;
}

.forminator-custom-form .forminator-input,
.forminator-custom-form .forminator-textarea {
	width: 100% !important;
	padding: 0.7rem 0.9rem !important;
	border: 1.5px solid #e8e8e6 !important;
	border-radius: 0 !important;
	font-size: 0.95rem !important;
	font-family: var(--body) !important;
	background: var(--white) !important;
	color: var(--black) !important;
	transition:
		border-color 0.2s ease,
		box-shadow 0.2s ease;
	outline: none;
}

.forminator-custom-form .forminator-input:focus,
.forminator-custom-form .forminator-textarea:focus {
	border-color: var(--black) !important;
	box-shadow: 0 0 0 3px rgba(61, 255, 192, 0.15) !important;
}

.forminator-custom-form .forminator-input::placeholder,
.forminator-custom-form .forminator-textarea::placeholder {
	color: #c4c4c4 !important;
}

.forminator-custom-form .forminator-button-submit {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	width: 100% !important;
	padding: 1.05rem 2.4rem !important;
	background: var(--yellow) !important;
	color: black !important;
	border: none !important;
	border-radius: 100px !important;
	font-family: var(--body) !important;
	font-size: 1.05rem !important;
	font-weight: 600 !important;
	cursor: pointer;
	letter-spacing: -0.01em !important;
	margin-top: 1rem;
	transition:
		transform 0.4s var(--ease-out-expo),
		box-shadow 0.4s var(--ease-out-expo);
}

.forminator-custom-form .forminator-button-submit:hover {
	transform: translateY(-2px);
	box-shadow:
		0 0 40px rgba(17, 251, 127, 0.3),
		0 8px 30px rgba(0, 0, 0, 0.1) !important;
}

.forminator-custom-form .forminator-button-submit:active {
	transform: translateY(0);
	transition-duration: 0.1s;
}

.forminator-custom-form .forminator-consent__label,
.forminator-custom-form .forminator-checkbox__label {
	font-family: var(--body) !important;
	font-size: 0.82rem !important;
	color: var(--grey-700) !important;
	line-height: 1.4 !important;
}

.forminator-custom-form .forminator-consent__label a,
.forminator-custom-form .forminator-checkbox__label a {
	color: var(--black) !important;
	text-decoration: underline !important;
}

.dark-theme .forminator-custom-form .forminator-consent__label,
.dark-theme .forminator-custom-form .forminator-checkbox__label {
	color: #aaa !important;
}

.dark-theme .forminator-custom-form .forminator-consent__label a,
.dark-theme .forminator-custom-form .forminator-checkbox__label a {
	color: #fefefe !important;
	text-decoration: underline !important;
}

.dark-theme .forminator-custom-form .forminator-button-submit {
	color: black !important;
}

.forminator-custom-form .forminator-row {
	margin-bottom: 0.25rem;
}

.forminator-response-message,
.forminator-error-message {
	font-size: 13px;
	margin-bottom: 5px;
}

/* ── Forminator: Situation Room toggle ── */
.situation-room .forminator-field {
	display: grid !important;
	grid-template-columns: 44px 1fr !important;
	grid-template-rows: auto auto !important;
	gap: 0 0.85rem !important;
	padding: 1rem 0rem !important;
	background: var(--off-white) !important;
	border-radius: 14px !important;
	border: 1px solid transparent !important;
	transition:
		border-color 0.2s ease,
		background 0.2s ease !important;
	align-items: start !important;
}
.forminator-checkbox__wrapper {
	display: flex;
	margin-top: 10px;
	gap: 0.5rem;
}

.situation-room.is-on .forminator-field {
	border-color: rgba(61, 255, 192, 0.3) !important;
	background: var(--cyan-muted) !important;
}

.situation-room .forminator-label {
	grid-column: 2;
	grid-row: 1;
	font-size: 0.88rem !important;
	font-weight: 700 !important;
	text-transform: none !important;
	letter-spacing: 0 !important;
	color: var(--black) !important;
	margin-bottom: 0 !important;
	line-height: 1.3 !important;
}

.situation-room .forminator-description {
	grid-column: 2;
	grid-row: 2;
	font-size: 0.78rem !important;
	color: var(--grey-500) !important;
	margin-top: 0.2rem !important;
	line-height: 1.35 !important;
}

.situation-room .forminator-checkbox {
	grid-column: 1;
	grid-row: 1 / -1;
	position: relative;
	width: 44px !important;
	height: 24px !important;
	min-width: 44px;
	margin-top: 2px;
}

.situation-room .forminator-checkbox input[type="checkbox"] {
	position: absolute !important;
	opacity: 0 !important;
	width: 44px !important;
	height: 24px !important;
	cursor: pointer;
	z-index: 2;
	margin: 0 !important;
}

.situation-room .forminator-checkbox-box {
	position: absolute !important;
	top: 0;
	left: 0;
	width: 44px !important;
	height: 24px !important;
	background: var(--grey-300) !important;
	border-radius: 12px !important;
	border: none !important;
	transition:
		background 0.25s var(--ease-out-expo),
		box-shadow 0.25s ease !important;
}

.situation-room .forminator-checkbox-box::after {
	content: "" !important;
	position: absolute !important;
	top: 2px !important;
	left: 2px !important;
	width: 20px !important;
	height: 20px !important;
	background: var(--white) !important;
	border-radius: 50% !important;
	transition: transform 0.25s var(--ease-out-expo) !important;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1) !important;
}

.situation-room .forminator-checkbox input:checked ~ .forminator-checkbox-box {
	background: var(--black) !important;
	box-shadow: 0 0 12px rgba(61, 255, 192, 0.3) !important;
}

.situation-room
	.forminator-checkbox
	input:checked
	~ .forminator-checkbox-box::after {
	transform: translateX(20px) !important;
}

.situation-room .forminator-checkbox-label {
	display: none !important;
}

/* ── Success state ── */
.form-success {
	display: none;
	text-align: center;
	padding: 2rem 0;
}

.form-success.visible {
	display: block;
}

.form-success .success-icon {
	width: 56px;
	height: 56px;
	background: var(--black);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1.25rem;
	box-shadow: 0 0 30px rgba(61, 255, 192, 0.3);
}

.form-success .success-icon svg {
	width: 24px;
	height: 24px;
	stroke: var(--cyan);
	stroke-width: 2.5;
	fill: none;
}

.form-success h3 {
	font-family: var(--display);
	font-size: 1.35rem;
	font-weight: 400;
	letter-spacing: -0.02em;
	margin-bottom: 0.4rem;
}

.form-success p {
	color: var(--grey-500);
	font-size: 0.9rem;
	line-height: 1.45;
}

/* ── Cookie consent overrides ── */
#cc-main {
	font-family: var(--body);
}

#cc-main .cm,
#cc-main .pm {
	border-radius: 16px;
	font-family: var(--body);
}

#cc-main .cm__title,
#cc-main .pm__title {
	font-family: var(--display);
	font-weight: 400;
	letter-spacing: -0.02em;
}

#cc-main .cm__btn,
#cc-main .pm__btn {
	border-radius: 10px;
	font-weight: 600;
	font-family: var(--body);
}

#cc-main .cm__btn--1 {
	background: var(--black);
	color: var(--white);
}

#cc-main .cm__btn--1:hover {
	background: var(--black);
	opacity: 0.85;
}

#cc-main .cm__footer a {
	color: var(--grey-500);
	font-size: 0.75rem;
}

/* ── Animations ── */
@keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

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

@keyframes glowPulse {
	0%,
	100% {
		opacity: 0.6;
		transform: scale(1);
	}
	50% {
		opacity: 1;
		transform: scale(1.15);
	}
}

@keyframes cursorBlink {
	0%,
	100% {
		opacity: 1;
	}
	50% {
		opacity: 0;
	}
}

.shapes {
	position: absolute;
	z-index: -1;
	pointer-events: none;
	top: 50%;
	left: 50%;
	transform: translateX(-50%) translateY(-50%);
	width: 65vw;
	display: none;
}

/* ── Letter template ── */
.page-template-page-letter .hero {
	padding-top: 4rem;
	padding-bottom: 15vh;
	justify-content: flex-start;
}

.page-template-page-letter .hero-letter {
	margin-top: 0;
	padding-top: 0;
}

.page-template-page-letter .hero-letter::before {
	display: none;
}

/* ── Situation Room (ConvertKit broadcasts) ── */
.dark-theme .page-content {
	max-width: 720px;
}

.dark-theme .page-content-title {
	font-family: var(--display);
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 800;
	letter-spacing: -0.035em;
	color: #fefefe;
	margin-bottom: 2.5rem;
}

.dark-theme .page-content-body {
	color: #ccc;
}

.dark-theme .convertkit-broadcasts-list {
	list-style: none;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0;
}

.dark-theme .convertkit-broadcast {
	padding: 2.5rem 0;
	border-bottom: 1px solid #222;
}

.dark-theme .convertkit-broadcast:first-child {
	padding-top: 0;
}

.dark-theme .convertkit-broadcast time {
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	color: #666;
}

.dark-theme .convertkit-broadcast-title {
	font-family: var(--display) !important;
	font-size: 1.35rem;
	font-weight: 800;
	letter-spacing: -0.02em;
	color: #fefefe !important;
	text-decoration: none !important;
	display: block;
	margin: 0.25rem 0 0.5rem;
	line-height: 1.3;
	transition: color 0.15s ease;
}

.dark-theme .convertkit-broadcast-title:hover {
	color: var(--yellow) !important;
}

.dark-theme .convertkit-broadcast-image {
	display: block;
	margin-bottom: 1rem;
	overflow: hidden;
}

.dark-theme .convertkit-broadcast-image img {
	width: 100%;
	height: auto;
	display: block;
	opacity: 0.9;
	transition: opacity 0.3s ease;
}

.dark-theme .convertkit-broadcast-image:hover img {
	opacity: 1;
}

.dark-theme .convertkit-broadcast-description {
	font-size: 0.95rem;
	line-height: 1.65;
	color: #999;
	display: block;
	margin-bottom: 0.75rem;
}

.dark-theme .convertkit-broadcast-read-more {
	display: inline !important;
	font-size: 0.85rem;
	font-weight: 600;
	color: var(--yellow) !important;
	text-decoration: none !important;
	border-bottom: 1.5px solid transparent;
	padding-bottom: 1px;
	transition: border-color 0.15s ease;
}

.dark-theme .convertkit-broadcast-read-more:hover {
	border-bottom-color: var(--yellow);
}

.dark-theme .convertkit-broadcast-text {
	display: block;
}

/* ── Responsive ── */
@media (max-width: 640px) {
	.site-header {
		padding: 1.5rem;
	}

	.nav-toggle {
		display: flex;
	}

	.header-nav {
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background: var(--white);
		border-bottom: 1px solid #e8e8e6;
		padding: 0 1.5rem;
		max-height: 0;
		overflow: hidden;
		transition:
			max-height 0.35s var(--ease-out-expo),
			padding 0.35s var(--ease-out-expo);
	}

	.header-nav.is-open {
		max-height: 300px;
		padding: 1rem 1.5rem 1.25rem;
	}

	.header-nav .header-nav-list {
		flex-direction: column;
		align-items: flex-start;
		gap: 0.75rem;
	}

	.header-nav .header-nav-list li a {
		font-size: 1.1rem;
		padding: 0.5rem 0;
	}

	.header-nav .header-nav-list li a::after {
		bottom: 2px;
	}

	.header-nav .header-nav-list li.menu-item-cta a {
		margin-top: 0.5rem;
	}

	.founder-card {
		flex-direction: column;
		gap: 1.25rem;
	}

	.founder-photo {
		width: 72px;
		height: 72px;
		object-fit: cover;
		min-width: 72px;
	}

	.hero {
		padding: 8vh 1.5rem 3rem;
	}

	.hero-title {
		font-size: clamp(2.4rem, 10vw, 3.2rem);
	}

	.hero-letter {
		margin-top: 1.5em;
		font-size: 14px;
	}

	.modal {
		padding: 2rem 1.5rem 1.75rem;
		border-radius: 0;
		max-height: 95vh;
	}

	.site-footer {
		padding: 1rem 1.5rem 1rem;
	}

	.dark-theme .header-nav {
		background: #0a0a0a;
		border-bottom-color: #222;
	}

	.dark-theme .header-nav .header-nav-list li a {
		color: #fefefe;
	}
}

/* ── Dark theme ── */
.dark-theme {
	--white: #0a0a0a;
	--off-white: #141414;
	--black: #fefefe;
	--grey-300: #333;
	--grey-500: #999;
	--grey-700: #ccc;
}

.dark-theme body,
body.dark-theme {
	background: #0a0a0a;
	color: #fefefe;
}

.dark-theme .logo-img {
	filter: invert(1);
}

.dark-theme .nav-toggle-bar {
	background: #fefefe;
}

.dark-theme .ambient-glow {
	background: radial-gradient(
		ellipse at center,
		rgba(17, 251, 127, 0.06) 0%,
		rgba(17, 251, 127, 0.02) 40%,
		transparent 70%
	);
}

/* Keep primary buttons yellow with black text */
.dark-theme .btn-primary {
	background: var(--yellow);
	color: #0a0a0a;
}

.dark-theme .btn-primary:hover {
	box-shadow:
		0 0 40px rgba(17, 251, 127, 0.3),
		0 8px 30px rgba(0, 0, 0, 0.3);
}

/* Form inputs */
.dark-theme .form-input,
.dark-theme .forminator-custom-form .forminator-input,
.dark-theme .forminator-custom-form .forminator-textarea {
	background: #141414;
	border-color: #333;
	color: #fefefe;
}

.dark-theme .form-input:focus,
.dark-theme .forminator-custom-form .forminator-input:focus,
.dark-theme .forminator-custom-form .forminator-textarea:focus {
	border-color: #fefefe;
	box-shadow: 0 0 0 3px rgba(17, 251, 127, 0.15);
}

.dark-theme .form-input::placeholder,
.dark-theme .forminator-custom-form .forminator-input::placeholder,
.dark-theme .forminator-custom-form .forminator-textarea::placeholder {
	color: #555;
}

.dark-theme .forminator-custom-form .forminator-label {
	color: #999;
}

.dark-theme .situation-room .forminator-field {
	background: #141414 !important;
}

.dark-theme .situation-room.is-on .forminator-field {
	border-color: rgba(61, 255, 192, 0.3) !important;
	background: rgba(17, 251, 127, 0.06) !important;
}

.dark-theme .situation-room .forminator-label {
	color: #fefefe !important;
}

.dark-theme .situation-room .forminator-checkbox-box {
	background: #444 !important;
}

.dark-theme
	.situation-room
	.forminator-checkbox
	input:checked
	~ .forminator-checkbox-box {
	background: #fefefe !important;
}

/* Modal */
.dark-theme .modal-overlay {
	background: rgba(0, 0, 0, 0.6);
}

/* Modal is always light mode */
.dark-theme .modal {
	background: #fefefe;
	color: #0a0a0a;
	box-shadow:
		0 24px 80px rgba(0, 0, 0, 0.4),
		0 0 0 1px rgba(0, 0, 0, 0.03);
}

.dark-theme .modal .modal-title {
	color: #0a0a0a;
}

.dark-theme .modal .modal-desc {
	color: #8a8a8a;
}

.dark-theme .modal-close {
	border-color: #d4d4d4;
	color: #8a8a8a;
}

.dark-theme .modal-close svg {
	stroke: #8a8a8a;
}

.dark-theme .modal .forminator-custom-form .forminator-label {
	color: #4a4a4a !important;
}

.dark-theme .modal .forminator-custom-form .forminator-input,
.dark-theme .modal .forminator-custom-form .forminator-textarea {
	background: #fefefe !important;
	border-color: #e8e8e6 !important;
	color: #0a0a0a !important;
}

.dark-theme .modal .forminator-custom-form .forminator-input:focus,
.dark-theme .modal .forminator-custom-form .forminator-textarea:focus {
	border-color: #0a0a0a !important;
	box-shadow: 0 0 0 3px rgba(61, 255, 192, 0.15) !important;
}

.dark-theme .modal .forminator-custom-form .forminator-button-submit {
	background: var(--yellow) !important;
	color: #0a0a0a !important;
}

/* Hide Forminator admin edit link inside modals */
.modal .forminator-response-message,
.modal .forminator-custom-form + a[href*="wp-admin"] {
	display: none;
}

.dark-theme .modal-close:hover {
	border-color: #0a0a0a;
	background: #f6f6f4;
}

.dark-theme .modal-close:hover svg {
	stroke: #0a0a0a;
}

/* Toggle */
.dark-theme .toggle-group {
	background: #141414;
}

.dark-theme .toggle-group.is-on {
	background: rgba(17, 251, 127, 0.08);
	border-color: rgba(17, 251, 127, 0.3);
}

.dark-theme .toggle-track {
	background: #333;
}

.dark-theme .toggle-track.active {
	background: #fefefe;
	box-shadow: 0 0 12px rgba(17, 251, 127, 0.3);
}

.dark-theme .toggle-track::after {
	background: #0a0a0a;
}

.dark-theme .toggle-track.active::after {
	background: #0a0a0a;
}

/* Checkbox */
.dark-theme .checkbox-group input[type="checkbox"] {
	border-color: #444;
}

.dark-theme .checkbox-group input[type="checkbox"]:checked {
	background: #fefefe;
	border-color: #fefefe;
}

.dark-theme .checkbox-group input[type="checkbox"]:checked::after {
	border-color: #0a0a0a;
}

.dark-theme .checkbox-group label a {
	color: #fefefe;
	border-bottom-color: #444;
}

/* Success */
.dark-theme .form-success .success-icon {
	background: #fefefe;
	box-shadow: 0 0 30px rgba(17, 251, 127, 0.3);
}

.dark-theme .form-success .success-icon svg {
	stroke: #0a0a0a;
}

/* Dividers */
.dark-theme .form-divider {
	border-top-color: #222;
}

/* Footer */
.dark-theme .site-footer {
	border-top-color: #222;
}

/* Founder cards */
.dark-theme .founder-photo {
	background: #1a1a1a;
	border-color: #333;
}

.dark-theme .founder-link {
	color: #fefefe;
	border-bottom-color: #444;
}

.dark-theme .founder-link:hover {
	border-color: #fefefe;
}

.dark-theme .founder-linkedin {
	color: #666;
}

.dark-theme .founder-linkedin:hover {
	color: #4d9de0;
}

/* Page content links */
.dark-theme .page-content-body a {
	color: #fefefe;
}

/* Cookie consent */
.dark-theme #cc-main .cm,
.dark-theme #cc-main .pm {
	background: #111;
	color: #fefefe;
}

.dark-theme #cc-main .cm__btn--1 {
	background: var(--yellow);
	color: #0a0a0a;
}

/* Nav underline stays yellow */
.dark-theme .header-nav .header-nav-list li.menu-item-cta a {
	background: var(--yellow);
	color: #0a0a0a;
}

/* ==========================================================================
   Home v2 — Services Content Sections
   Scoped to .page-template-page-home-v2
   ========================================================================== */

/* Content wrapper — sits below the hero */
.page-template-page-home-v2 .hv2-content {
	position: relative;
	z-index: 2;
	padding-bottom: 6rem;
}

/* Section widths */
.hv2-section-narrow {
	max-width: 720px;
	margin: 0 auto;
	padding: 0 2rem;
}

.hv2-section-wide,
.hv2-tiers-overview {
	max-width: 1080px;
	margin: 0 auto;
	padding: 0 2rem;
}

/* Section spacing + separators */
.page-template-page-home-v2 .hv2-content > section {
	padding: 4rem 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.page-template-page-home-v2 .hv2-content > section:last-child {
	border-bottom: none;
}
.page-template-page-home-v2 .hv2-content > section:first-child {
	padding-top: 0;
}

/* Headings */
.hv2-heading {
	font-family: var(--display);
	font-size: clamp(1.8rem, 3vw, 2.5rem);
	color: #fefefe;
	margin: 0 0 1.5rem;
	line-height: 1.2;
}

/* Body text */
.hv2-body {
	font-family: var(--body);
	font-size: 1.05rem;
	color: #999;
	line-height: 1.7;
}

.hv2-body p {
	margin: 0 0 1.25rem;
	color: #ccc;
}

.hv2-body p:last-child {
	margin-bottom: 0;
}

/* ---------- Section 1: Tier Overview Cards ---------- */

.hv2-tiers-overview {
	padding: 4rem 2rem 6rem;
}

.hv2-tiers-overview__grid {
	display: flex;
	gap: 1.5rem;
	align-items: stretch;
}

.hv2-tier-card {
	position: relative;
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	padding: 1.5rem 2rem;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 12px;
	text-decoration: none;
	color: #fefefe;
	transition:
		transform 0.25s var(--ease-out-expo),
		box-shadow 0.25s var(--ease-out-expo);
	cursor: pointer;
}

.hv2-tier-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 32px rgba(61, 255, 192, 0.1);
}

.hv2-card-header {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	margin-bottom: 0.75rem;
}

.hv2-tier-card__icon,
.hv2-detail-card__icon {
	width: 36px;
	height: 36px;
	object-fit: contain;
	flex-shrink: 0;
}

.hv2-card-header .hv2-tier-card__name,
.hv2-card-header .hv2-detail-card__name {
	margin: 0;
}

.hv2-tier-card__badge {
	display: inline-block;
	padding: 0.3rem 0.75rem;
	font-family: var(--body);
	font-size: 0.7rem;
	font-weight: 500;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--cyan);
	background: rgba(61, 255, 192, 0.1);
	border-radius: 100px;
	margin-bottom: 1rem;
}

.hv2-tier-card__name {
	font-family: var(--display);
	font-size: 1.3rem;
	color: #fefefe;
	margin: 0 0 0.5rem;
}

.hv2-tier-card__summary {
	display: none;
}

.hv2-tier-card__why {
	font-family: var(--body);
	font-size: 0.85rem;
	line-height: 1.4;
	color: rgba(255, 255, 255, 0.4);
	margin: 0;
}

.hv2-tier-card__arrow {
	position: absolute;
	top: 1.5rem;
	right: 1.5rem;
	font-size: 1.2rem;
	color: var(--cyan);
	opacity: 0.5;
	transition: opacity 0.2s;
}

.hv2-tier-card:hover .hv2-tier-card__arrow {
	opacity: 1;
}

/* ---------- Section 2: What we do — pillar accents ---------- */

.hv2-what .hv2-body ul {
	list-style: none;
	padding: 0;
	margin: 1.5rem 0 0;
}

.hv2-what .hv2-body ul li {
	padding: 0.6rem 0 0.6rem 1.25rem;
	border-left: 3px solid var(--cyan);
	margin-bottom: 0.5rem;
	color: #ccc;
	font-weight: 500;
}

/* ---------- Section 3: Triangle ---------- */

.hv2-triangle__image {
	text-align: center;
	margin: 2rem 0;
}

.hv2-triangle__image img {
	max-width: 480px;
	width: 100%;
	height: auto;
	border-radius: 8px;
}

/* ---------- Section 4: Value — blockquote style ---------- */

.hv2-value .hv2-body blockquote,
.hv2-value .hv2-body ul {
	list-style: none;
	padding: 0;
	margin: 1.5rem 0 0;
	border: none;
}

.hv2-value .hv2-body blockquote p,
.hv2-value .hv2-body ul li {
	padding: 0.6rem 0 0.6rem 1.25rem;
	border-left: 3px solid var(--cyan);
	margin-bottom: 0.75rem;
	color: #bbb;
	font-style: italic;
}

/* ---------- Section 5: Known for ---------- */

.hv2-known .hv2-body ul {
	list-style: none;
	padding: 0;
	margin: 1rem 0 0;
}

.hv2-known .hv2-body ul li {
	padding: 0.75rem 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
	color: #ccc;
	line-height: 1.6;
}

.hv2-known .hv2-body ul li:last-child {
	border-bottom: none;
}

.hv2-known .hv2-body ul li strong {
	color: #fefefe;
	display: block;
	margin-bottom: 0.2rem;
}

/* ---------- Section 6: Engagements ---------- */

.hv2-engagements .hv2-body ul {
	padding-left: 1.25rem;
	margin: 1rem 0;
}

.hv2-engagements .hv2-body ul li {
	color: #ccc;
	margin-bottom: 0.5rem;
	line-height: 1.6;
}

.hv2-engagements .hv2-body blockquote {
	margin: 2rem 0 0;
	padding: 1.25rem 1.5rem;
	background: rgba(255, 255, 255, 0.03);
	border-left: 3px solid var(--cyan);
	border-radius: 0 8px 8px 0;
	color: #bbb;
	font-style: italic;
}

/* ---------- Section 7: Detailed Service Cards ---------- */

.hv2-tiers-detail__grid {
	display: flex;
	gap: 1.5rem;
	align-items: stretch;
	margin-top: 2rem;
}

.hv2-detail-card {
	flex: 1;
	display: flex;
	flex-direction: column;
	padding: 2rem;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 12px;
	scroll-margin-top: 2rem;
}

.hv2-detail-card__name {
	font-family: var(--display);
	font-size: 1.4rem;
	color: #fefefe;
	margin: 0.75rem 0 1rem;
}

.hv2-detail-card__description {
	margin-bottom: 1.25rem;
}

.hv2-detail-card__description p {
	font-family: var(--body);
	font-size: 0.95rem;
	color: #999;
	line-height: 1.6;
	margin: 0;
}

.hv2-detail-card__output,
.hv2-detail-card__why {
	margin-bottom: 1.25rem;
}

.hv2-detail-card__output h4,
.hv2-detail-card__why h4 {
	font-family: var(--body);
	font-size: 0.8rem;
	font-weight: 500;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--cyan);
	margin: 0 0 0.5rem;
}

.hv2-detail-card__output ul {
	padding-left: 1.25rem;
	margin: 0;
}

.hv2-detail-card__output li {
	font-family: var(--body);
	font-size: 0.9rem;
	color: #ccc;
	line-height: 1.6;
	margin-bottom: 0.3rem;
}

.hv2-detail-card__output p {
	font-family: var(--body);
	font-size: 0.9rem;
	color: #ccc;
	line-height: 1.6;
	margin: 0 0 0.5rem;
}

.hv2-detail-card__why p {
	font-family: var(--body);
	font-size: 0.9rem;
	color: #999;
	line-height: 1.6;
	margin: 0;
}

.hv2-detail-card__price {
	margin-top: auto;
	padding-top: 1.25rem;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	font-family: var(--display);
	font-size: 1.15rem;
	color: #fefefe;
}

.hv2-detail-card__footer {
	margin-top: auto;
	padding-top: 1.25rem;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
}

.hv2-detail-card__footer .hv2-detail-card__price {
	margin-top: 0;
	padding-top: 0;
	border-top: none;
}

.hv2-detail-card__footer .hv2-detail-card__badge {
	display: inline-block;
	padding: 0.3rem 0.75rem;
	font-family: var(--body);
	font-size: 0.7rem;
	font-weight: 500;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--cyan);
	background: rgba(61, 255, 192, 0.1);
	border-radius: 100px;
	flex-shrink: 0;
}

/* ---------- Services header + CTA ---------- */

.hv2-services-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
	margin-bottom: 2rem;
}

.hv2-services-header .hv2-heading {
	margin-bottom: 0;
}

/* ---------- Responsive (below 768px) ---------- */

@media (max-width: 768px) {
	.hv2-tiers-overview__grid,
	.hv2-tiers-detail__grid {
		flex-direction: column;
	}

	.hv2-tiers-overview {
		padding: 2rem 1.25rem 3rem !important;
	}

	.hv2-tiers-overview__grid {
		gap: 0.75rem;
	}

	/* Compact tier cards on mobile */
	.hv2-tier-card {
		flex-direction: row;
		flex-wrap: wrap;
		align-items: center;
		justify-content: space-between;
		padding: 1rem 1.25rem;
		gap: 0.5rem 0.75rem;
	}

	.hv2-tier-card__why {
		flex-basis: 100%;
		font-size: 0.75rem;
	}

	.hv2-tier-card:hover {
		transform: none;
	}

	.hv2-card-header {
		margin-bottom: 0;
		flex: 1;
		min-width: 0;
	}

	.hv2-tier-card .hv2-tier-card__icon {
		width: 28px;
		height: 28px;
	}

	.hv2-tier-card .hv2-card-header {
		gap: 0.5rem;
	}

	.hv2-tier-card__name {
		font-size: 0.9rem;
		margin: 0;
	}

	.hv2-tier-card__badge {
		margin-bottom: 0;
		flex-shrink: 0;
		order: 1;
	}

	.hv2-tier-card__summary,
	.hv2-tier-card__arrow {
		display: none;
	}

	/* Hide standalone badge on detail cards when footer has it */
	.hv2-detail-card > .hv2-detail-card__badge {
		display: none;
	}

	.hv2-section-narrow,
	.hv2-section-wide {
		padding: 0 1rem;
	}

	.page-template-page-home-v2 .hv2-content > section {
		padding: 4rem 0;
	}

	.hv2-heading {
		font-size: clamp(1.5rem, 5vw, 2rem);
	}

	.hv2-detail-card {
		scroll-margin-top: 1rem;
	}

	.hv2-services-header {
		flex-wrap: wrap;
	}
}
