/*
Theme Name: LitiGator Main
Theme URI:
Author: LegalEagle
Description: SaaS product marketing theme for LitiGator — automated legal intake, built for Google Workspace.
Version: 2.1.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: litigator
*/

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&family=Lato:wght@400;600;700&display=swap');

/* ==========================================================
   DESIGN TOKENS
   ========================================================== */
:root {
	/* Colors */
	--clr-primary:     #0c1832;
	--clr-primary-lt:  #1a2540;
	--clr-accent:      #b89250;
	--clr-accent-dk:   #9a7a3e;
	--clr-accent-lt:   #f7f3eb;
	--clr-white:       #ffffff;
	--clr-off-white:   #fafafa;
	--clr-gray-100:    #f3f4f6;
	--clr-gray-200:    #e5e7eb;
	--clr-gray-300:    #d1d5db;
	--clr-gray-500:    #6b7280;
	--clr-gray-700:    #374151;
	--clr-gray-900:    #111827;
	--clr-danger:      #dc2626;
	--clr-success:     #16a34a;

	/* Typography */
	--ff-heading: 'Playfair Display', Georgia, serif;
	--ff-body:    'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
	--fw-normal:  400;
	--fw-medium:  600;
	--fw-bold:    700;
	--fw-black:   700;

	/* Spacing */
	--sp-1:  .25rem;
	--sp-2:  .5rem;
	--sp-3:  .75rem;
	--sp-4:  1rem;
	--sp-5:  1.25rem;
	--sp-6:  1.5rem;
	--sp-8:  2rem;
	--sp-10: 2.5rem;
	--sp-12: 3rem;
	--sp-16: 4rem;
	--sp-20: 5rem;
	--sp-24: 6rem;

	/* Layout */
	--container-max: 1400px;
	--header-h: 72px;
	--topbar-h: 40px;
	--sidebar-w: 300px;
	--radius: 8px;
	--radius-lg: 12px;
	--radius-pill: 9999px;

	/* Shadows */
	--shadow-sm: 0 1px 3px rgba(0,0,0,.08);
	--shadow-md: 0 4px 12px rgba(0,0,0,.1);
	--shadow-lg: 0 12px 32px rgba(0,0,0,.12);
	--shadow-xl: 0 20px 48px rgba(0,0,0,.16);

	/* Transitions */
	--ease: cubic-bezier(.4,0,.2,1);
	--dur: .25s;
}

/* ==========================================================
   RESET / BASE
   ========================================================== */
*, *::before, *::after { box-sizing: border-box; }
html { overflow-x: hidden; }
body {
	margin: 0;
	font-family: var(--ff-body);
	font-size: 1rem;
	line-height: 1.7;
	color: var(--clr-gray-900);
	background: var(--clr-white);
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
svg:not(:root) { overflow: hidden; }
a { color: var(--clr-accent); text-decoration: none; transition: color var(--dur) var(--ease); }
a:hover { color: var(--clr-accent-dk); }
h1, h2, h3, h4, h5, h6 {
	font-family: var(--ff-heading);
	font-weight: var(--fw-black);
	line-height: 1.15;
	letter-spacing: normal;
	color: var(--clr-primary);
	margin: 0 0 var(--sp-4);
}
h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.5rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }
p { margin: 0 0 var(--sp-4); }
ul, ol { padding-left: var(--sp-6); }
address { font-style: normal; }

/* ==========================================================
   LAYOUT
   ========================================================== */
.container {
	width: 100%;
	max-width: var(--container-max);
	margin: 0 auto;
	padding: 0 var(--sp-6);
}
.site {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}
.site-main {
	flex: 1;
}
.layout-with-sidebar {
	display: grid;
	grid-template-columns: 1fr var(--sidebar-w);
	gap: var(--sp-12);
	padding-top: var(--sp-12);
	padding-bottom: var(--sp-16);
}
@media (max-width: 1024px) {
	.layout-with-sidebar {
		grid-template-columns: 1fr;
		gap: var(--sp-8);
	}
}

/* ==========================================================
   TOPBAR
   ========================================================== */
.topbar {
	background: var(--clr-primary);
	color: var(--clr-white);
	font-size: .8125rem;
	height: var(--topbar-h);
	display: flex;
	align-items: center;
}
.topbar__inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.topbar__phone {
	display: flex;
	align-items: center;
	gap: var(--sp-2);
	color: var(--clr-white);
	font-weight: var(--fw-medium);
}
.topbar__phone:hover { color: var(--clr-accent-lt); }
.topbar__phone svg { width: 14px; height: 14px; fill: currentColor; }
.topbar__social {
	display: flex;
	gap: var(--sp-4);
}
.topbar__social a {
	color: rgba(255,255,255,.7);
	transition: color var(--dur) var(--ease);
}
.topbar__social a:hover { color: var(--clr-white); }
.topbar__social svg { width: 16px; height: 16px; fill: currentColor; }

/* ==========================================================
   HEADER
   ========================================================== */
.site-header {
	background: var(--clr-primary);
	height: var(--header-h);
	display: flex;
	align-items: center;
	position: sticky;
	top: 0;
	z-index: 1000;
	box-shadow: 0 2px 12px rgba(0, 0, 0, .25);
	transition: box-shadow var(--dur) var(--ease);
}
.header__inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.header__brand {
	display: flex;
	align-items: center;
	text-decoration: none;
}
.header__brand img { height: 48px; width: auto; }
.header__brand-icon {
	width: 36px;
	height: 36px;
	flex-shrink: 0;
	margin-right: var(--sp-2);
}
.header__brand-name {
	font-family: var(--ff-heading);
	font-weight: var(--fw-black);
	font-size: 2rem;
	color: var(--clr-white);
	letter-spacing: -.03em;
}
.header__brand-name .brand-g { color: var(--clr-accent); }

/* Navigation */
.nav-menu {
	display: flex;
	list-style: none;
	margin: 0;
	padding: 0;
	gap: var(--sp-1);
}
.nav-menu li { position: relative; }
.nav-menu a {
	display: block;
	padding: var(--sp-2) var(--sp-4);
	color: rgba(255, 255, 255, .8);
	font-size: .9375rem;
	font-weight: var(--fw-medium);
	border-radius: var(--radius);
	transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
}
.nav-menu a:hover,
.nav-menu .current-menu-item > a,
.nav-menu .current-menu-ancestor > a {
	color: var(--clr-white);
	background: rgba(255, 255, 255, .1);
}

/* Dropdown */
.nav-menu .sub-menu {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	background: var(--clr-white);
	border-radius: var(--radius);
	box-shadow: var(--shadow-lg);
	min-width: 220px;
	padding: var(--sp-2) 0;
	list-style: none;
	z-index: 100;
}
.nav-menu li:hover > .sub-menu { display: block; }
.nav-menu .sub-menu a {
	padding: var(--sp-2) var(--sp-5);
	border-radius: 0;
	font-size: .875rem;
	color: var(--clr-gray-700);
}
.nav-menu .sub-menu a:hover {
	color: var(--clr-accent);
	background: var(--clr-accent-lt);
}

/* Nav CTA */
.nav-cta {
	margin-left: var(--sp-4);
	white-space: nowrap;
}

/* Primary nav wrapper */
.primary-nav {
	display: flex;
	align-items: center;
}

/* Mobile toggle */
.nav-toggle {
	display: none;
	background: none;
	border: none;
	cursor: pointer;
	width: 32px;
	height: 24px;
	position: relative;
	flex-shrink: 0;
}
.nav-toggle span {
	display: block;
	width: 100%;
	height: 3px;
	background: var(--clr-accent);
	border-radius: 2px;
	position: absolute;
	left: 0;
	transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease);
}
.nav-toggle span:nth-child(1) { top: 0; }
.nav-toggle span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.nav-toggle span:nth-child(3) { bottom: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { top: 50%; transform: translateY(-50%) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { bottom: 50%; transform: translateY(50%) rotate(-45deg); }

@media (max-width: 1024px) {
	.nav-toggle { display: block; }
	.primary-nav {
		display: none;
		position: absolute;
		top: var(--header-h);
		left: 0;
		right: 0;
		background: var(--clr-primary-lt);
		flex-direction: column;
		padding: var(--sp-6);
		box-shadow: 0 8px 24px rgba(0, 0, 0, .3);
	}
	.primary-nav.is-open { display: flex; }
	.nav-menu {
		flex-direction: column;
		width: 100%;
	}
	.nav-menu a { padding: var(--sp-3) var(--sp-4); }
	.nav-menu .sub-menu {
		position: static;
		box-shadow: none;
		padding-left: var(--sp-4);
		display: block;
		background: transparent;
	}
	.nav-menu .sub-menu a {
		color: rgba(255, 255, 255, .7);
	}
	.nav-menu .sub-menu a:hover {
		color: var(--clr-white);
		background: rgba(255, 255, 255, .1);
	}
	.nav-cta {
		margin: var(--sp-4) 0 0;
		width: 100%;
		text-align: center;
	}
}

/* ==========================================================
   BUTTONS
   ========================================================== */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: var(--sp-2);
	padding: .75rem 1.75rem;
	font-family: var(--ff-heading);
	font-size: .9375rem;
	font-weight: var(--fw-bold);
	border-radius: var(--radius-pill);
	border: 2px solid transparent;
	cursor: pointer;
	text-decoration: none;
	transition: all var(--dur) var(--ease);
	line-height: 1.2;
}
.btn svg { width: 16px; height: 16px; fill: currentColor; }

.btn--primary {
	background: var(--clr-accent);
	color: var(--clr-primary);
	border-color: var(--clr-accent);
}
.btn--primary:hover {
	background: var(--clr-accent-dk);
	border-color: var(--clr-accent-dk);
	color: var(--clr-primary);
	transform: translateY(-1px);
	box-shadow: var(--shadow-md);
}

.btn--outline {
	background: transparent;
	color: var(--clr-accent);
	border-color: var(--clr-accent);
}
.btn--outline:hover {
	background: var(--clr-accent);
	color: var(--clr-white);
	transform: translateY(-1px);
}

.btn--dark {
	background: var(--clr-primary);
	color: var(--clr-white);
	border-color: var(--clr-primary);
}
.btn--dark:hover {
	background: var(--clr-primary-lt);
	border-color: var(--clr-primary-lt);
	color: var(--clr-white);
	transform: translateY(-1px);
}

.btn--white-outline {
	background: transparent;
	color: var(--clr-white);
	border-color: rgba(255,255,255,.5);
}
.btn--white-outline:hover {
	background: var(--clr-white);
	color: var(--clr-primary);
	border-color: var(--clr-white);
}

.btn--sm { padding: .5rem 1.25rem; font-size: .8125rem; }
.btn--lg { padding: 1rem 2.25rem; font-size: 1.0625rem; }

/* ==========================================================
   PAGE BANNER
   ========================================================== */
.page-banner {
	background: var(--clr-primary);
	padding: var(--sp-20) 0 var(--sp-16);
	text-align: center;
	position: relative;
	overflow: hidden;
}
.page-banner::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 120px;
	height: 3px;
	background: var(--clr-accent);
	border-radius: 2px;
}
.page-banner::after {
	content: '';
	position: absolute;
	bottom: -40px;
	left: 50%;
	transform: translateX(-50%);
	width: 300px;
	height: 80px;
	background: radial-gradient(ellipse, rgba(184,146,80,.15) 0%, transparent 70%);
	pointer-events: none;
}
.page-banner__title {
	color: var(--clr-white);
	margin: 0;
	font-size: clamp(2rem, 5vw, 3rem);
}

/* ==========================================================
   SECTION UTILITIES
   ========================================================== */
.section {
	padding: var(--sp-20) 0;
}
.section--gray { background: var(--clr-gray-100); }
.section--dark {
	background: var(--clr-primary);
	color: var(--clr-white);
}
.section--dark h2,
.section--dark h3:not(.compare-card__title) { color: var(--clr-white); }
.section__header {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	margin-bottom: var(--sp-10);
	flex-wrap: wrap;
	gap: var(--sp-4);
}
.section__title {
	margin: 0;
}
.section__link {
	font-weight: var(--fw-bold);
	font-size: .9375rem;
}

/* ==========================================================
   CARDS (GENERIC)
   ========================================================== */
.card {
	background: var(--clr-white);
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow-sm);
	transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-lg);
}
.card__img {
	width: 100%;
	aspect-ratio: 3/2;
	object-fit: cover;
}
.card__body {
	padding: var(--sp-6);
}
.card__title {
	font-size: 1.125rem;
	margin-bottom: var(--sp-2);
}
.card__title a { color: var(--clr-primary); }
.card__title a:hover { color: var(--clr-accent); }
.card__excerpt {
	color: var(--clr-gray-500);
	font-size: .9375rem;
	margin-bottom: var(--sp-4);
}

/* ==========================================================
   ENTRY (BLOG / POST)
   ========================================================== */
.entry {
	margin-bottom: var(--sp-10);
	padding-bottom: var(--sp-10);
	border-bottom: 1px solid var(--clr-gray-200);
}
.entry:last-child { border-bottom: none; }
.entry__thumbnail {
	margin-bottom: var(--sp-6);
	border-radius: var(--radius-lg);
	overflow: hidden;
}
.entry__thumbnail img {
	width: 100%;
	aspect-ratio: 3/2;
	object-fit: cover;
}
.entry__title { margin-bottom: var(--sp-2); }
.entry__title a { color: var(--clr-primary); }
.entry__title a:hover { color: var(--clr-accent); }
.entry__meta {
	display: flex;
	gap: var(--sp-4);
	font-size: .875rem;
	color: var(--clr-gray-500);
	margin-bottom: var(--sp-4);
}
.entry__cat {
	background: var(--clr-accent-lt);
	color: var(--clr-accent);
	padding: var(--sp-1) var(--sp-3);
	border-radius: var(--radius-pill);
	font-size: .75rem;
	font-weight: var(--fw-bold);
	text-transform: uppercase;
	letter-spacing: .05em;
}
.entry__body {
	line-height: 1.8;
}
.entry__body h2 { margin-top: var(--sp-8); }
.entry__body h3 { margin-top: var(--sp-6); }
.entry__body blockquote {
	border-left: 4px solid var(--clr-accent);
	margin: var(--sp-6) 0;
	padding: var(--sp-4) var(--sp-6);
	background: var(--clr-gray-100);
	border-radius: 0 var(--radius) var(--radius) 0;
	font-style: italic;
	color: var(--clr-gray-700);
}
.entry__body ul, .entry__body ol {
	margin-bottom: var(--sp-4);
}
.entry__body a { text-decoration: underline; }
.entry__footer { margin-top: var(--sp-4); }
.entry__pages { margin-top: var(--sp-6); }

/* Post navigation */
.entry-nav { margin-top: var(--sp-8); }
.entry-nav .nav-links {
	display: flex;
	justify-content: space-between;
	gap: var(--sp-4);
}
.entry-nav .nav-subtitle {
	display: block;
	font-size: .75rem;
	text-transform: uppercase;
	letter-spacing: .1em;
	color: var(--clr-gray-500);
	margin-bottom: var(--sp-1);
}
.entry-nav .nav-title {
	display: block;
	font-weight: var(--fw-bold);
	color: var(--clr-primary);
}
.entry-nav a:hover .nav-title { color: var(--clr-accent); }

/* ==========================================================
   ARCHIVE HEADER
   ========================================================== */
.archive-header {
	margin-bottom: var(--sp-10);
	padding-bottom: var(--sp-6);
	border-bottom: 2px solid var(--clr-gray-200);
}
.archive-header__title { margin-bottom: var(--sp-2); }
.archive-header__desc {
	color: var(--clr-gray-500);
	font-size: 1.0625rem;
}
.archive-intro {
	margin-bottom: var(--sp-8);
	font-size: 1.0625rem;
	color: var(--clr-gray-700);
	max-width: 800px;
}

/* ==========================================================
   SIDEBAR
   ========================================================== */
.sidebar { min-width: 0; }
.widget {
	margin-bottom: var(--sp-8);
	padding: var(--sp-6);
	background: var(--clr-gray-100);
	border-radius: var(--radius-lg);
}
.widget-title {
	font-size: 1rem;
	font-weight: var(--fw-bold);
	margin-bottom: var(--sp-4);
	padding-bottom: var(--sp-3);
	border-bottom: 2px solid var(--clr-accent);
}
.widget ul {
	list-style: none;
	padding: 0;
	margin: 0;
}
.widget li {
	padding: var(--sp-2) 0;
	border-bottom: 1px solid var(--clr-gray-200);
}
.widget li:last-child { border-bottom: none; }
.widget a { font-size: .9375rem; }

/* ==========================================================
   PAGINATION
   ========================================================== */
.pagination {
	margin-top: var(--sp-10);
}
.pagination .nav-links {
	display: flex;
	justify-content: center;
	gap: var(--sp-2);
	flex-wrap: wrap;
}
.pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 44px;
	height: 44px;
	padding: 0 var(--sp-3);
	border-radius: var(--radius-pill);
	font-weight: var(--fw-bold);
	font-size: .875rem;
	color: var(--clr-gray-700);
	border: 2px solid var(--clr-gray-200);
	transition: all var(--dur) var(--ease);
}
.pagination .page-numbers:hover {
	border-color: var(--clr-accent);
	color: var(--clr-accent);
}
.pagination .page-numbers.current {
	background: var(--clr-accent);
	border-color: var(--clr-accent);
	color: var(--clr-white);
}

/* ==========================================================
   SEARCH FORM
   ========================================================== */
.search-form {
	display: flex;
	max-width: 480px;
}
.search-form .search-field {
	flex: 1;
	padding: var(--sp-3) var(--sp-4);
	border: 2px solid var(--clr-gray-300);
	border-radius: var(--radius-pill) 0 0 var(--radius-pill);
	font-size: 1rem;
	outline: none;
	transition: border-color var(--dur) var(--ease);
}
.search-form .search-field:focus { border-color: var(--clr-accent); }
.search-form .search-submit {
	padding: var(--sp-3) var(--sp-6);
	background: var(--clr-accent);
	color: var(--clr-white);
	border: 2px solid var(--clr-accent);
	border-radius: 0 var(--radius-pill) var(--radius-pill) 0;
	font-weight: var(--fw-bold);
	cursor: pointer;
	transition: background var(--dur) var(--ease);
}
.search-form .search-submit:hover { background: var(--clr-accent-dk); }

/* No results */
.no-results {
	text-align: center;
	padding: var(--sp-16) var(--sp-4);
}
.no-results__title { margin-bottom: var(--sp-4); }
.no-results .search-form { margin: var(--sp-6) auto 0; }

/* ==========================================================
   HOMEPAGE — HERO
   ========================================================== */
.home-hero {
	position: relative;
	display: flex;
	align-items: center;
	background: var(--clr-primary) var(--hero-bg, none) center/cover no-repeat;
	color: var(--clr-white);
	overflow: hidden;
}
.home-hero__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(12,24,50,.92) 0%, rgba(12,24,50,.7) 100%);
}
.home-hero__grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--sp-12);
	align-items: center;
	padding: var(--sp-20) var(--sp-8);
}
.home-hero__content {
	max-width: 560px;
	padding: var(--sp-10) 0;
}
.home-hero__desc {
	font-size: 1.125rem;
	color: rgba(255,255,255,.8);
	margin-bottom: 2rem;
	max-width: 560px;
}
.home-hero__screenshot {
	perspective: 1200px;
}
.home-hero__screenshot img {
	width: 100%;
	height: auto;
	border-radius: var(--radius-lg);
	box-shadow: 0 25px 60px rgba(0,0,0,.4), 0 8px 20px rgba(0,0,0,.3);
	transform: rotateY(-6deg) rotateX(2deg);
	transition: transform .4s var(--ease);
}
.home-hero__screenshot img:hover {
	transform: rotateY(-2deg) rotateX(1deg);
}
.home-hero__eyebrow {
	font-size: .875rem;
	font-weight: var(--fw-bold);
	text-transform: uppercase;
	letter-spacing: .15em;
	color: var(--clr-accent-lt);
	margin-bottom: var(--sp-4);
}
.home-hero__title {
	font-size: clamp(2.5rem, 6vw, 4rem);
	color: var(--clr-white);
	margin-bottom: var(--sp-8);
	line-height: 1.08;
}
.home-hero__actions {
	display: flex;
	gap: var(--sp-4);
	flex-wrap: wrap;
}
@media (max-width: 900px) {
	.home-hero__grid {
		grid-template-columns: 1fr;
		text-align: center;
	}
	.home-hero__content { max-width: 100%; }
	.home-hero__desc { margin-left: auto; margin-right: auto; }
	.home-hero__actions { justify-content: center; }
	.home-hero__screenshot img {
		transform: none;
		max-width: 520px;
		margin: 0 auto;
	}
}

/* ==========================================================
   HOMEPAGE — NO AI TRUST STRIP
   ========================================================== */
.no-ai-strip {
	background: var(--clr-primary);
	border-top: 1px solid rgba(184,146,80,.2);
	border-bottom: 1px solid rgba(184,146,80,.2);
	padding: var(--sp-3) 0;
}
.no-ai-strip__inner {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: var(--sp-8);
	flex-wrap: wrap;
}
.no-ai-strip__badge {
	display: inline-flex;
	align-items: center;
	gap: var(--sp-2);
	text-decoration: none;
	color: rgba(255,255,255,.88);
	font-family: var(--ff-body);
	font-size: .8125rem;
	font-weight: var(--fw-medium);
	letter-spacing: .02em;
	transition: color var(--dur) var(--ease);
}
.no-ai-strip__badge:hover { color: var(--clr-accent); }
.no-ai-strip__shield { color: var(--clr-accent); }
.no-ai-strip__sep {
	width: 1px;
	height: 16px;
	background: rgba(184,146,80,.3);
}
/* trust strip badges — clickable links to feature pages, matched to .no-ai-strip__badge */
.no-ai-strip__point {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-family: var(--ff-body);
	font-size: .8125rem;
	font-weight: var(--fw-medium);
	letter-spacing: .02em;
	color: rgba(255,255,255,.88);
	text-decoration: none;
	transition: color var(--dur) var(--ease);
}
a.no-ai-strip__point:hover,
a.no-ai-strip__point:focus-visible {
	color: var(--clr-accent);
}
a.no-ai-strip__point:focus-visible {
	outline: 2px solid var(--clr-accent);
	outline-offset: 3px;
	border-radius: 2px;
}
.no-ai-strip__point svg { color: var(--clr-accent); flex-shrink: 0; }
@media (max-width: 768px) {
	.no-ai-strip__inner { gap: var(--sp-3); justify-content: center; }
	.no-ai-strip__sep { display: none; }
	.no-ai-strip__point { display: none; }
	.no-ai-strip__badge { font-size: .75rem; }
}

/* ==========================================================
   HOMEPAGE — SOCIAL PROOF BAR
   ========================================================== */
.home-proof-bar {
	background: var(--clr-accent);
	color: var(--clr-white);
	padding: var(--sp-4) 0;
}
.home-proof-bar__inner {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: var(--sp-4);
	flex-wrap: wrap;
}
.home-proof-stars { display: flex; gap: 2px; font-size: 1.25rem; }
.home-proof-stars__star { color: rgba(255,255,255,.3); }
.home-proof-stars__star--full { color: #ffd700; }
.home-proof-stars__star--half { color: #ffd700; opacity: .7; }
.home-proof-bar__text {
	margin: 0;
	font-size: .9375rem;
}

/* ==========================================================
   HOMEPAGE — SECTIONS
   ========================================================== */
.home-section {
	padding: var(--sp-20) 0;
}
.home-section__header {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	margin-bottom: var(--sp-10);
	flex-wrap: wrap;
	gap: var(--sp-4);
}
.home-section__title {
	margin: 0;
}
.home-section__link {
	font-weight: var(--fw-bold);
	font-size: .9375rem;
}

/* Practice areas section */
.home-pa { background: var(--clr-gray-100); }

/* About section */
.home-about__grid {
	display: grid;
	grid-template-columns: 1fr 380px;
	gap: var(--sp-12);
	align-items: start;
}
.home-about__card {
	background: var(--clr-primary);
	color: var(--clr-white);
	padding: var(--sp-8);
	border-radius: var(--radius-lg);
	position: sticky;
	top: calc(var(--header-h) + var(--sp-6));
}
.home-about__card-title {
	font-family: var(--ff-heading);
	font-weight: var(--fw-black);
	font-size: 1.25rem;
	margin-bottom: var(--sp-6);
	color: var(--clr-white);
}
.home-about__card a { color: var(--clr-accent-lt); }
.home-about__card a:hover { color: var(--clr-white); }
@media (max-width: 1024px) {
	.home-about__grid { grid-template-columns: 1fr; }
	.home-about__card { position: static; }
}

/* Team section */
.home-team { background: var(--clr-gray-100); }
.home-team__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: var(--sp-6);
}
.home-team__card {
	background: var(--clr-white);
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow-sm);
	transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
	text-align: center;
}
.home-team__card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-lg);
}
.home-team__img {
	width: 100%;
	aspect-ratio: 1;
	object-fit: cover;
}
.home-team__img--placeholder {
	background: var(--clr-gray-200);
}
.home-team__info { padding: var(--sp-5); }
.home-team__name {
	font-size: 1rem;
	margin-bottom: var(--sp-1);
}
.home-team__name a { color: var(--clr-primary); }
.home-team__name a:hover { color: var(--clr-accent); }
.home-team__position {
	color: var(--clr-gray-500);
	font-size: .8125rem;
	margin: 0;
}
@media (max-width: 768px) {
	.home-team__grid { grid-template-columns: repeat(2, 1fr); }
}

/* CTA band */
.home-cta {
	background: var(--clr-primary);
	color: var(--clr-white);
	padding: var(--sp-16) 0;
}
.home-cta__inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: var(--sp-8);
	flex-wrap: wrap;
}
.home-cta__title {
	color: var(--clr-white);
	margin: 0 0 var(--sp-2);
}
.home-cta__sub {
	color: rgba(255,255,255,.7);
	margin: 0;
	font-size: 1.0625rem;
}
.home-cta__actions {
	display: flex;
	gap: var(--sp-4);
	flex-wrap: wrap;
}

/* ==========================================================
   PEOPLE GRID
   ========================================================== */
.people-filter {
	display: flex;
	gap: var(--sp-2);
	flex-wrap: wrap;
	margin-bottom: var(--sp-8);
}
.people-filter__btn {
	padding: var(--sp-2) var(--sp-5);
	border-radius: var(--radius-pill);
	font-size: .875rem;
	font-weight: var(--fw-bold);
	color: var(--clr-gray-700);
	background: var(--clr-gray-100);
	border: 2px solid transparent;
	transition: all var(--dur) var(--ease);
}
.people-filter__btn:hover { border-color: var(--clr-accent); color: var(--clr-accent); }
.people-filter__btn.is-active {
	background: var(--clr-accent);
	color: var(--clr-white);
	border-color: var(--clr-accent);
}

.people-grid {
	display: grid;
	gap: var(--sp-6);
}
.people-grid--square,
.people-grid--circle {
	grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
}
.people-grid--wide {
	grid-template-columns: 1fr;
}

.person-card {
	background: var(--clr-white);
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow-sm);
	transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.person-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-lg);
}
.person-card__img {
	width: 100%;
	object-fit: cover;
}
.person-card--square .person-card__img,
.person-card--circle .person-card__img {
	aspect-ratio: 1;
}
.person-card--circle .person-card__img {
	border-radius: 50%;
	padding: var(--sp-4);
}
.person-card--wide {
	display: grid;
	grid-template-columns: 200px 1fr;
}
.person-card--wide .person-card__img {
	height: 100%;
	aspect-ratio: auto;
}
.person-card__body { padding: var(--sp-5); }
.person-card__name {
	font-size: 1.0625rem;
	margin-bottom: var(--sp-1);
}
.person-card__name a { color: var(--clr-primary); }
.person-card__name a:hover { color: var(--clr-accent); }
.person-card__position {
	color: var(--clr-gray-500);
	font-size: .8125rem;
	margin: 0 0 var(--sp-3);
}
.person-card__excerpt {
	font-size: .9375rem;
	color: var(--clr-gray-700);
	margin-bottom: var(--sp-4);
}
.person-card__img--placeholder {
	background: var(--clr-gray-200);
}
@media (max-width: 768px) {
	.person-card--wide {
		grid-template-columns: 1fr;
	}
}

/* ==========================================================
   PERSON HERO (SINGLE)
   ========================================================== */
.person-hero {
	background: var(--clr-primary);
	color: var(--clr-white);
	padding: var(--sp-12) 0;
}
.person-hero__inner {
	display: grid;
	grid-template-columns: 280px 1fr;
	gap: var(--sp-10);
	align-items: center;
}
.person-hero__img-wrap { flex-shrink: 0; }
.person-hero__img {
	width: 100%;
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-xl);
}
.person-hero__name {
	color: var(--clr-white);
	margin-bottom: var(--sp-2);
}
.person-hero__position {
	color: var(--clr-accent-lt);
	font-size: 1.125rem;
	margin: 0 0 var(--sp-6);
}
.person-hero__social {
	display: flex;
	gap: var(--sp-4);
	margin-top: var(--sp-4);
}
.person-hero__social a {
	color: rgba(255,255,255,.6);
	transition: color var(--dur) var(--ease);
}
.person-hero__social a:hover { color: var(--clr-white); }
.person-hero__social svg { width: 20px; height: 20px; fill: currentColor; }
@media (max-width: 768px) {
	.person-hero__inner {
		grid-template-columns: 1fr;
		text-align: center;
	}
	.person-hero__img-wrap { max-width: 200px; margin: 0 auto; }
	.person-hero__social { justify-content: center; }
}

/* Attorney meta accordion */
.attorney-meta { margin-top: var(--sp-8); }
.attorney-meta__panel {
	border: 2px solid var(--clr-gray-200);
	border-radius: var(--radius);
	margin-bottom: var(--sp-3);
	overflow: hidden;
}
.attorney-meta__trigger {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	padding: var(--sp-4) var(--sp-5);
	background: var(--clr-gray-100);
	border: none;
	cursor: pointer;
	font-size: 1rem;
	font-weight: var(--fw-bold);
	color: var(--clr-primary);
	text-align: left;
	transition: background var(--dur) var(--ease);
}
.attorney-meta__trigger:hover { background: var(--clr-gray-200); }
.attorney-meta__icon {
	transition: transform var(--dur) var(--ease);
	font-size: 1.25rem;
}
.attorney-meta__trigger[aria-expanded="true"] .attorney-meta__icon {
	transform: rotate(180deg);
}
.attorney-meta__body {
	display: none;
	padding: var(--sp-4) var(--sp-5);
}
.attorney-meta__body.is-open { display: block; }
.attorney-meta__list {
	list-style: none;
	padding: 0;
	margin: 0;
}
.attorney-meta__list li {
	padding: var(--sp-2) 0;
	border-bottom: 1px solid var(--clr-gray-100);
}
.attorney-meta__list li:last-child { border-bottom: none; }
.attorney-meta__school { color: var(--clr-gray-500); }

/* ==========================================================
   PRACTICE AREA CARDS
   ========================================================== */
.pa-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: var(--sp-6);
}
.pa-card {
	background: var(--clr-white);
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow-sm);
	border: 2px solid transparent;
	transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.pa-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-lg);
	border-color: var(--clr-accent);
}
.pa-card__img-link { display: block; }
.pa-card__img {
	width: 100%;
	aspect-ratio: 3/2;
	object-fit: cover;
}
.pa-card__body { padding: var(--sp-6); }
.pa-card__title {
	font-size: 1.125rem;
	margin-bottom: var(--sp-2);
}
.pa-card__title a { color: var(--clr-primary); }
.pa-card__title a:hover { color: var(--clr-accent); }
.pa-card__excerpt {
	color: var(--clr-gray-500);
	font-size: .9375rem;
	margin-bottom: var(--sp-4);
}

/* Practice area hero (single) */
.pa-hero {
	position: relative;
	height: 360px;
	overflow: hidden;
}
.pa-hero__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.pa-hero__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(26,26,46,.85) 0%, rgba(26,26,46,.3) 100%);
	display: flex;
	align-items: flex-end;
	padding-bottom: var(--sp-10);
}
.pa-hero__title {
	color: var(--clr-white);
	margin: 0;
}

/* ==========================================================
   LOCATION DETAILS
   ========================================================== */
.location-wrap {
	max-width: 800px;
}
.location-details__card {
	background: var(--clr-gray-100);
	border-radius: var(--radius-lg);
	padding: var(--sp-8);
	margin-bottom: var(--sp-8);
}
.location-details__heading {
	margin-bottom: var(--sp-6);
}
.location-detail-row {
	display: flex;
	align-items: center;
	gap: var(--sp-3);
	margin-bottom: var(--sp-4);
	font-size: .9375rem;
}
.location-detail-row:last-child { margin-bottom: 0; }
.location-detail-row svg {
	width: 18px;
	height: 18px;
	fill: var(--clr-accent);
	flex-shrink: 0;
}
.location-map {
	margin-top: var(--sp-8);
	border-radius: var(--radius-lg);
	overflow: hidden;
}

/* ==========================================================
   CONTACT PAGE
   ========================================================== */
.contact-grid {
	display: grid;
	grid-template-columns: 380px 1fr;
	gap: var(--sp-12);
}
.contact-info {
	position: sticky;
	top: calc(var(--header-h) + var(--sp-6));
	align-self: start;
}
.contact-info__heading {
	margin-bottom: var(--sp-6);
}
.contact-form { min-width: 0; }
.contact-form-full { max-width: 720px; }
@media (max-width: 768px) {
	.contact-grid {
		grid-template-columns: 1fr;
		gap: var(--sp-8);
	}
	.contact-info { position: static; }
}

/* ==========================================================
   FOOTER
   ========================================================== */
.site-footer {
	background: var(--clr-primary);
	color: rgba(255,255,255,.8);
}
.footer__main {
	padding: var(--sp-16) 0 var(--sp-8);
}
.footer__grid {
	display: grid;
	grid-template-columns: 1.2fr 1fr 1fr;
	gap: var(--sp-10);
}
.footer__logo {
	height: 48px;
	width: auto;
	margin-bottom: var(--sp-4);
}
.footer__brand-lockup {
	display: flex;
	align-items: center;
	gap: var(--sp-3);
	text-decoration: none;
	margin-bottom: var(--sp-4);
}
.footer__brand-name {
	font-family: var(--ff-heading);
	font-size: 1.375rem;
	font-weight: var(--fw-bold);
	color: var(--clr-white);
}
.footer__brand-name .brand-g {
	color: var(--clr-accent);
}
.footer__brand-icon {
	width: 36px;
	height: 36px;
	flex-shrink: 0;
}
.footer__tagline {
	font-size: .9375rem;
	color: rgba(255,255,255,.6);
	margin-bottom: var(--sp-5);
}
.footer__social {
	display: flex;
	gap: var(--sp-4);
}
.footer__social a {
	color: rgba(255,255,255,.5);
	transition: color var(--dur) var(--ease);
}
.footer__social a:hover { color: var(--clr-white); }
.footer__social svg { width: 20px; height: 20px; fill: currentColor; }
.footer__col-title {
	font-family: var(--ff-heading);
	font-weight: var(--fw-bold);
	font-size: .875rem;
	text-transform: uppercase;
	letter-spacing: .1em;
	color: var(--clr-white);
	margin-bottom: var(--sp-5);
}
.footer__contact-item {
	display: flex;
	align-items: center;
	gap: var(--sp-3);
	margin-bottom: var(--sp-3);
	font-size: .9375rem;
}
.footer__contact-item svg {
	width: 16px;
	height: 16px;
	fill: var(--clr-accent);
	flex-shrink: 0;
}
.footer__contact-item a { color: rgba(255,255,255,.8); }
.footer__contact-item a:hover { color: var(--clr-white); }
.footer__nav {
	list-style: none;
	padding: 0;
	margin: 0;
}
.footer__nav li { margin-bottom: var(--sp-2); }
.footer__nav a {
	color: rgba(255,255,255,.7);
	font-size: .9375rem;
	transition: color var(--dur) var(--ease);
}
.footer__nav a:hover { color: var(--clr-white); }
.footer__bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: var(--sp-10);
	padding-top: var(--sp-6);
	border-top: 1px solid rgba(255,255,255,.1);
	flex-wrap: wrap;
	gap: var(--sp-4);
}
.footer__copyright {
	font-size: .8125rem;
	color: rgba(255,255,255,.5);
}
.footer__disclaimer {
	margin-top: var(--sp-6);
	padding-top: var(--sp-6);
	border-top: 1px solid rgba(255,255,255,.08);
	font-size: .8125rem;
	color: rgba(255,255,255,.6);
	line-height: 1.6;
}
@media (max-width: 768px) {
	.footer__grid {
		grid-template-columns: 1fr;
		gap: var(--sp-8);
	}
}

/* ==========================================================================
   NINJA FORMS — MASTER STYLESHEET
   Ported from the Lawgic intake theme and re-themed for LitiGator brand.
   ========================================================================== */

/* --- 1. GENERAL LAYOUT & FORM CONTAINER --- */
.entry-content .nf-form-cont { background-color: transparent !important; padding: 0 !important; border: none !important; box-shadow: none !important; color: var(--clr-gray-900); }

/* --- 1b. FONT INHERITANCE FOR FORM ELEMENTS --- */
.nf-form-cont,
.nf-form-cont input,
.nf-form-cont textarea,
.nf-form-cont select,
.nf-form-cont button,
.nf-form-cont .ninja-forms-field,
.nf-form-cont .nf-field-label label,
.nf-form-cont .nf-breadcrumb,
.nf-next-previous .nf-next,
.nf-next-previous .nf-previous,
.nf-add-fieldset { font-family: var(--ff-body) !important; }

.nf-form-cont input::placeholder,
.nf-form-cont textarea::placeholder { font-family: var(--ff-body) !important; color: var(--clr-gray-500) !important; font-size: 15px !important; font-weight: var(--fw-normal) !important; }

/* --- 2. TYPOGRAPHY & LABELS --- */
.nf-field-label label { color: var(--clr-gray-900); font-weight: var(--fw-bold); margin-bottom: 6px; font-size: 15px; }
.nf-form-fields-required { color: var(--clr-gray-500); font-size: 13px; margin-bottom: 20px; text-align: right; }
.ninja-forms-req-symbol { color: var(--clr-danger); font-weight: bold; font-size: 1.1em; margin-left: 3px; }
.nf-form-cont .nf-field-container { margin-bottom: var(--sp-4); }

/* --- 3. DYNAMIC SECTION TITLES --- */
.section-info::before, .section-empl::before, .section-role::before,
.section-discrimination::before, .section-events::before, .section-conduct::before,
.section-evidence::before, .section-unemployment::before, .section-timeline::before,
.section-document::before, .section-witness::before, .section-what::before,
.section-medical::before, .section-situation::before {
	display: block; content: ''; font-size: 20px; font-weight: var(--fw-bold);
	color: var(--clr-primary); margin-top: 45px; margin-bottom: 20px;
	padding-left: 15px; border-left: 4px solid var(--clr-accent);
	text-transform: uppercase; letter-spacing: 0.5px;
}
.section-info::before           { content: 'Your Information'; }
.section-empl::before           { content: 'Employer Info'; }
.section-role::before           { content: 'Your Role & Position'; }
.section-discrimination::before { content: 'Discrimination'; }
.section-events::before         { content: 'Employer\'s Actions'; }
.section-conduct::before        { content: 'Workplace Environment'; }
.section-evidence::before       { content: 'Supporting Evidence'; }
.section-unemployment::before   { content: 'Post-Employment Status'; }
.section-timeline::before       { content: 'Timeline of Events'; }
.section-document::before       { content: 'Supporting Documents'; }
.section-witness::before        { content: 'Witness Information'; }
.section-what::before           { content: 'What Happened'; }
.section-medical::before        { content: 'Employer\'s Actions'; }
.section-situation::before      { content: 'Your Situation'; }

/* --- 4. MULTI-STEP PROGRESS BAR & BREADCRUMBS --- */
.nf-progress-container { background-color: var(--clr-gray-200); border-radius: 20px; margin-bottom: 20px; height: 8px; border: none; }
.nf-progress { background-color: var(--clr-accent) !important; height: 8px !important; border-radius: 20px; transition: width 0.4s ease-in-out; }
.nf-breadcrumbs { display: flex; justify-content: space-around; padding: 0; margin-bottom: 35px !important; border-bottom: 1px solid var(--clr-gray-200); counter-reset: breadcrumb-counter; text-align: center; }
.nf-breadcrumbs li { counter-increment: breadcrumb-counter; list-style: none; flex: 1; position: relative; padding-bottom: 15px; }
.nf-breadcrumbs .nf-breadcrumb { display: flex; flex-direction: column; align-items: center; justify-content: center; text-decoration: none; font-weight: var(--fw-bold); font-size: 15px; color: var(--clr-gray-500); border-bottom: 3px solid transparent; transition: all 0.3s ease; padding: 5px 10px; line-height: 1.3; background: transparent; }
.nf-breadcrumbs .nf-breadcrumb::before { content: 'Step ' counter(breadcrumb-counter); font-size: 0.8em; font-weight: var(--fw-medium); text-transform: uppercase; letter-spacing: 0.5px; color: var(--clr-gray-500); margin-bottom: 4px; }
.nf-breadcrumbs li.active .nf-breadcrumb,
.nf-breadcrumbs li.active .nf-breadcrumb::before { color: var(--clr-accent) !important; }
.nf-breadcrumbs li.active .nf-breadcrumb { border-bottom-color: var(--clr-accent) !important; }
.nf-breadcrumbs li:not(.active) a::before { content: '✔'; color: var(--clr-success); font-weight: bold; }
.nf-breadcrumbs li.active ~ li a::before { content: 'Step ' counter(breadcrumb-counter); color: var(--clr-gray-500); }

/* --- 5. STANDARD FORM INPUTS --- */
.nf-form-content .nf-field-element .ninja-forms-field { width: 100% !important; height: auto; padding: 10px 14px !important; background-color: var(--clr-white) !important; border: 1px solid var(--clr-gray-300) !important; border-radius: var(--radius) !important; color: var(--clr-gray-700) !important; box-sizing: border-box; transition: border-color 0.3s ease, box-shadow 0.3s ease; }
.ninja-forms-field:focus { outline: none !important; border-color: var(--clr-accent) !important; box-shadow: 0 0 0 0.2rem rgba(184, 146, 80, .25) !important; }
.ninja-forms-field::placeholder { color: var(--clr-gray-500); }
.nf-form-content .nf-field-element select.ninja-forms-field { -webkit-appearance: none; -moz-appearance: none; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 15px center; background-size: 1.2em; }

/* --- 6. CARD-STYLE CHECKBOXES --- */
.listcheckbox-container .nf-field-element ul { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 15px; padding: 0; margin: 0; list-style: none; }
.listcheckbox-container .nf-field-element li { position: relative; }
.listcheckbox-container .nf-field-element li label { display: block; position: relative; background-color: var(--clr-white); border: 2px solid var(--clr-gray-300); border-radius: var(--radius); padding: 20px 20px 20px 55px; font-weight: var(--fw-medium); color: var(--clr-gray-700); transition: all 0.2s ease-in-out; }
.listcheckbox-container .nf-field-element li input[type="checkbox"] { position: absolute; opacity: 0; width: 100%; height: 100%; left: 0; top: 0; cursor: pointer; margin: 0; z-index: 2; }
.listcheckbox-container .nf-field-element li label::before { content: ''; position: absolute; left: 18px; top: 50%; transform: translateY(-50%); width: 22px; height: 22px; border: 2px solid var(--clr-gray-300); border-radius: 4px; background-color: var(--clr-white); transition: all 0.2s ease-in-out; }
.listcheckbox-container .nf-field-element li label::after { content: '✔'; position: absolute; left: 23px; top: 50%; transform: translateY(-50%) scale(0); transform-origin: center; font-size: 16px; font-weight: bold; color: var(--clr-white); transition: transform 0.2s ease-in-out; }
.listcheckbox-container .nf-field-element li input[type="checkbox"]:focus + label,
.listcheckbox-container .nf-field-element li:hover label { border-color: var(--clr-accent); }
.listcheckbox-container .nf-field-element li input[type="checkbox"]:checked + label { background-color: var(--clr-accent-lt); border-color: var(--clr-accent); color: var(--clr-primary); }
.listcheckbox-container .nf-field-element li input[type="checkbox"]:checked + label::before { background-color: var(--clr-accent); border-color: var(--clr-accent); }
.listcheckbox-container .nf-field-element li input[type="checkbox"]:checked + label::after { transform: translateY(-50%) scale(1); }

/* --- 7. BUTTONS --- */
.nf-next-previous .nf-next { background-color: var(--clr-accent) !important; color: var(--clr-white) !important; border: 2px solid var(--clr-accent) !important; border-radius: var(--radius) !important; padding: 12px 28px !important; font-size: 16px !important; font-weight: var(--fw-medium) !important; cursor: pointer; transition: all 0.2s ease; }
.nf-next-previous .nf-next:hover { background-color: var(--clr-accent-dk) !important; border-color: var(--clr-accent-dk) !important; }
.nf-next-previous .nf-previous { display: inline-block; width: auto; padding: 12px 30px; background-color: transparent !important; color: var(--clr-gray-500) !important; border: 2px solid var(--clr-gray-300) !important; border-radius: var(--radius); font-size: 16px; font-weight: var(--fw-medium); cursor: pointer; transition: all 0.2s ease-in-out; }
.nf-next-previous .nf-previous:hover { background-color: var(--clr-gray-100) !important; color: var(--clr-gray-900) !important; border-color: var(--clr-gray-500) !important; }
.nf-form-content input[type="submit"].ninja-forms-field { padding: 15px 30px !important; background-color: var(--clr-accent) !important; color: var(--clr-white) !important; border: 2px solid var(--clr-accent) !important; border-radius: var(--radius-pill); font-size: 18px; font-weight: var(--fw-bold); text-transform: uppercase; letter-spacing: 1px; box-shadow: 0 2px 8px rgba(184, 146, 80, 0.25); transition: all 0.2s ease-in-out; }
.nf-form-content input[type="submit"].ninja-forms-field:hover { background-color: var(--clr-accent-dk) !important; border-color: var(--clr-accent-dk) !important; transform: translateY(-2px); box-shadow: 0 4px 12px rgba(184, 146, 80, 0.35); }
.nf-form-content input[type="submit"].ninja-forms-field:active { transform: translateY(0); box-shadow: 0 2px 8px rgba(184, 146, 80, 0.25); }
.nf-form-content .submit-container { border-top: 1px solid var(--clr-gray-200); padding-top: 2rem; margin-top: 2rem; }
.nf-add-fieldset { background-color: var(--clr-success) !important; color: var(--clr-white) !important; border: none !important; border-radius: var(--radius) !important; padding: 10px 20px !important; font-size: 15px !important; font-weight: var(--fw-medium) !important; cursor: pointer !important; margin-top: 10px !important; transition: background-color 0.2s ease; }
.nf-add-fieldset:hover { background-color: #128a3e !important; }
.nf-add-fieldset::before { content: '+ '; font-weight: bold; margin-right: 5px; }

/* --- 8. REPEATER FIELDS --- */
.repeater-container fieldset { position: relative; background-color: var(--clr-off-white); border: 1px solid var(--clr-gray-200); border-radius: var(--radius); padding: 30px; padding-top: 40px; margin-top: 15px; margin-bottom: 20px; box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.04); }
.repeater-container legend { font-size: 1.1em; font-weight: var(--fw-bold); color: var(--clr-gray-900); padding: 0 5px; margin-left: 10px; }
.nf-field-container.repeater-container button.nf-remove-fieldset { position: absolute; top: 10px; right: 10px; z-index: 10; background-color: transparent !important; border: none !important; color: var(--clr-danger) !important; font-size: 24px; font-weight: bold; line-height: 1; padding: 5px; cursor: pointer; width: 30px; height: 30px; border-radius: 50%; transition: background-color 0.2s ease; }
.nf-field-container.repeater-container button.nf-remove-fieldset:hover { background-color: var(--clr-gray-100) !important; }

/* --- 9. FILE UPLOAD FIELDS --- */
.nf-form-content .nf-fu-fileinput-button.ninja-forms-field { height: auto !important; padding: 10px 20px !important; background-color: var(--clr-accent) !important; color: var(--clr-white) !important; border-color: var(--clr-accent) !important; font-size: 15px !important; font-weight: var(--fw-medium) !important; transition: background-color 0.2s ease; }
.nf-form-content .nf-fu-fileinput-button.ninja-forms-field:hover { background-color: var(--clr-accent-dk) !important; border-color: var(--clr-accent-dk) !important; }
.nf-fu-progress { background-color: var(--clr-gray-200) !important; box-shadow: none !important; border-radius: 4px; margin-top: 10px; }
.file-upload-repeater .nf-repeater-fieldset .nf-fields-wrap { display: flex; align-items: flex-start; gap: 15px; }
.file-upload-repeater .nf-repeater-fieldset .nf-fields-wrap .nf-field-container:first-child { flex-grow: 1; }
.file-upload-repeater .nf-repeater-fieldset .nf-fields-wrap .nf-field-container:last-child { flex-grow: 0; }

/* --- 10. REVIEW PAGE (no-div layout — Ninja Forms strips divs) --- */
h2.review-title { font-family: var(--ff-heading); font-size: 1.5rem; font-weight: var(--fw-bold); color: var(--clr-primary); margin: 0 0 1.25rem 0; padding-bottom: 0.75rem; border-bottom: 2px solid var(--clr-accent); }
p.field-label { display: inline-block; width: 130px; font-weight: var(--fw-medium); color: var(--clr-gray-500); margin: 0; padding: 0.35rem 0; vertical-align: top; font-size: 11px; line-height: 1.5; text-transform: uppercase; letter-spacing: 0.5px; }
p.field-value { display: inline-block; width: calc(100% - 145px); font-weight: 500; color: var(--clr-gray-900); margin: 0; padding: 0.35rem 0; vertical-align: top; font-size: 15px; line-height: 1.5; word-break: break-word; border-bottom: 1px solid var(--clr-gray-200); }
p.review-notice { background-color: var(--clr-accent-lt); border-left: 3px solid var(--clr-accent); padding: 1rem 1.25rem; margin: 1.5rem 0 0 0; border-radius: 3px; font-size: 14px; line-height: 1.7; color: var(--clr-gray-900); }
p.review-notice strong { color: var(--clr-primary); }

/* --- 10b. TIMELINE REPEATER - DATE & APPROXIMATE DATE LAYOUT --- */
.inline-date { display: inline-block !important; width: 65% !important; vertical-align: bottom !important; }
.inline-approx { display: inline-flex !important; flex-direction: column !important; align-items: flex-end !important; width: 31% !important; margin-left: 2% !important; vertical-align: bottom !important; }
.inline-approx .nf-field-label { margin-bottom: 8px !important; text-align: right !important; width: 100% !important; }
.inline-approx .nf-field-element { display: flex !important; justify-content: flex-end !important; width: 100% !important; }
.inline-approx input[type="checkbox"] { width: 24px !important; height: 24px !important; cursor: pointer; margin: 0 !important; padding: 0 !important; }

/* --- 11. RESPONSIVE FORM LAYOUT --- */
@media only screen and (min-width: 992px) {
	.frm-100, .frm-whl { display: block; width: 100%; }
	.frm-75 { display: inline-block; width: 74.5%; }
	.frm-50, .frm-hlf { display: inline-block; width: 49%; }
	.frm-33, .frm-thr { display: inline-block; width: 32.75%; }
	.frm-25, .frm-frt { display: inline-block; width: 24.5%; }
}
@media (max-width: 991px) {
	.nf-breadcrumbs { border-bottom: none; margin-bottom: 25px; }
	.nf-breadcrumbs li:not(.active) { display: none; }
	.nf-breadcrumbs li.active { width: 100%; text-align: center; padding-bottom: 0; }
	.nf-breadcrumbs li.active .nf-breadcrumb { flex-direction: column; border-bottom: none !important; font-size: 20px; }
	.nf-breadcrumbs li.active .nf-breadcrumb::before { font-size: 14px; font-weight: var(--fw-bold); text-transform: uppercase; letter-spacing: 1px; color: var(--clr-gray-500); margin-bottom: 5px; }
}
@media (max-width: 768px) {
	.nf-breadcrumbs .nf-breadcrumb { font-size: 13px; padding: 5px; }
	.nf-breadcrumbs .nf-breadcrumb::before { font-size: 11px; }
	p.field-label { display: block; width: 100%; padding-bottom: 0; }
	p.field-value { display: block; width: 100%; margin-bottom: 0.5rem; }
}

/* ==========================================================
   LOGO MOTIF — DECORATIVE ELEMENTS
   ========================================================== */
/* Large watermark behind hero / dark sections */
.logo-watermark {
	position: absolute;
	right: -5%;
	bottom: -10%;
	width: 55%;
	opacity: .04;
	pointer-events: none;
	z-index: 0;
}
/* ==========================================================
   FEATURES GRID (SaaS)
   ========================================================== */
.features-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--sp-8);
}
@media (min-width: 768px) {
	.features-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}
.feature-card {
	display: block;
	background: var(--clr-white);
	border-radius: var(--radius-lg);
	padding: var(--sp-8);
	box-shadow: var(--shadow-sm);
	border: 2px solid transparent;
	text-decoration: none;
	color: inherit;
	transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.feature-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-lg);
	border-color: var(--clr-accent);
}
.feature-card {
	text-align: center;
}
.feature-card__icon {
	width: 64px;
	height: 64px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--clr-accent-lt);
	border-radius: var(--radius-lg);
	margin: 0 auto var(--sp-4);
	padding: var(--sp-2);
	font-size: 1.5rem;
}
.feature-card__img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	border-radius: var(--radius);
}
.feature-card__title {
	font-size: 1.125rem;
	margin-bottom: var(--sp-2);
}
.feature-card__text {
	color: var(--clr-gray-500);
	font-size: .9375rem;
	margin: 0;
}

/* ==========================================================
   HOW IT WORKS — ZIGZAG TIMELINE
   ========================================================== */
.home-section--how {
	background: var(--clr-gray-100);
}

/* --- How It Works — phased timeline --- */

/* Phase group */
.flow-phase { margin-bottom: 0; }
.flow-phase__label {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-size: .6875rem;
	font-weight: var(--fw-bold);
	letter-spacing: 2.5px;
	text-transform: uppercase;
	color: var(--clr-accent);
	margin-bottom: var(--sp-5);
	padding-left: var(--sp-1);
}
.flow-phase__label::before {
	content: '';
	display: block;
	width: 24px;
	height: 1px;
	background: var(--clr-accent);
}

/* Grid layouts */
.flow-grid {
	display: grid;
	gap: var(--sp-5);
}
.flow-grid--2 { grid-template-columns: 1fr 1fr; }
.flow-grid--3 { grid-template-columns: 1fr 1fr 1fr; }

/* Phase connector */
.flow-connector {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: var(--sp-3) 0;
	margin: var(--sp-8) 0;
	position: relative;
}
.flow-connector::before {
	content: '';
	position: absolute;
	left: 50%;
	top: 0;
	bottom: 0;
	width: 1px;
	background: linear-gradient(to bottom, rgba(184,146,80,.15), var(--clr-accent), rgba(184,146,80,.15));
}
.flow-connector__dot {
	width: 10px;
	height: 10px;
	background: var(--clr-accent);
	border-radius: 50%;
	position: relative;
	z-index: 1;
	box-shadow: 0 0 0 4px rgba(184,146,80,.12);
}

/* Individual card */
.flow-card {
	background: var(--clr-white);
	border: 1px solid var(--clr-gray-200);
	border-radius: var(--radius-lg);
	padding: var(--sp-6) var(--sp-6) var(--sp-5);
	transition: box-shadow var(--dur) var(--ease), transform var(--dur) var(--ease), border-color var(--dur) var(--ease);
	position: relative;
	overflow: hidden;
}
.flow-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: transparent;
	transition: background var(--dur) var(--ease);
	border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.flow-card:hover {
	border-color: rgba(184,146,80,.3);
	transform: translateY(-2px);
	box-shadow: var(--shadow-md);
}
.flow-card:hover::before {
	background: linear-gradient(90deg, var(--clr-accent), var(--clr-accent-dk));
}

/* Card header: number + icon */
.flow-card__head {
	display: flex;
	align-items: flex-start;
	gap: var(--sp-3);
	margin-bottom: var(--sp-3);
}
.flow-card__num {
	font-family: var(--ff-heading);
	font-size: .8125rem;
	color: var(--clr-accent);
	background: rgba(184,146,80,.1);
	width: 28px;
	height: 28px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}
.flow-card__icon {
	flex-shrink: 0;
	width: 40px;
	height: 40px;
	max-width: 40px;
	max-height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: var(--radius);
	padding: 8px;
	background: rgba(184,146,80,.08);
	color: var(--clr-primary);
	opacity: .7;
	overflow: hidden;
}
.flow-card__icon svg,
.flow-card__icon img { width: 24px !important; height: 24px !important; max-width: 24px; max-height: 24px; flex-shrink: 0; }

/* Card text */
.flow-card__title {
	font-size: 1.0625rem;
	margin-bottom: var(--sp-2);
	color: var(--clr-primary);
}
.flow-card__desc {
	font-size: .875rem;
	color: var(--clr-gray-500);
	margin: 0;
	line-height: 1.65;
}

@media (max-width: 860px) {
	.flow-grid--3 { grid-template-columns: 1fr; }
	.flow-grid--2 { grid-template-columns: 1fr; }
	.flow-connector { margin: var(--sp-6) 0; }
}

@media (max-width: 600px) {
	.flow-card { padding: var(--sp-5); }
}

/* Feature detail rows (features page alternating layout) */
.feature-detail {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--sp-12);
	align-items: center;
	padding: var(--sp-16) 0;
}
.feature-detail:nth-child(even) .feature-detail__content { order: 2; }
.feature-detail:nth-child(even) .feature-detail__visual { order: 1; }
.feature-detail__visual {
	background: var(--clr-accent-lt);
	border-radius: var(--radius-lg);
	padding: var(--sp-8);
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 240px;
	overflow: hidden;
}
.feature-detail__visual:not(:has(.feature-detail__img)) {
	font-size: 4rem;
	padding: var(--sp-12);
}
.feature-detail__img {
	width: 100%;
	height: auto;
	border-radius: var(--radius);
	box-shadow: 0 8px 24px rgba(0,0,0,.1);
	transition: transform .3s var(--ease);
}
.feature-detail__img:hover {
	transform: scale(1.03);
}
.feature-detail__eyebrow {
	font-size: .8125rem;
	font-weight: var(--fw-bold);
	text-transform: uppercase;
	letter-spacing: .1em;
	color: var(--clr-accent);
	margin-bottom: var(--sp-2);
}
.feature-detail h2 { margin-bottom: var(--sp-4); }
.feature-detail ul {
	list-style: none;
	padding: 0;
}
.feature-detail ul li {
	padding: var(--sp-2) 0;
	padding-left: var(--sp-6);
	position: relative;
	color: var(--clr-gray-700);
}
.feature-detail ul li::before {
	content: '';
	position: absolute;
	left: 0;
	top: .75rem;
	width: 8px;
	height: 8px;
	background: var(--clr-accent);
	border-radius: 50%;
}
@media (max-width: 768px) {
	.feature-detail { grid-template-columns: 1fr; }
	.feature-detail:nth-child(even) .feature-detail__content { order: 1; }
	.feature-detail:nth-child(even) .feature-detail__visual { order: 2; }
}

/* ==========================================================
   SINGLE FEATURE POST
   ========================================================== */

/* Hero */
.feature-hero {
	background: var(--clr-primary);
	position: relative;
	overflow: hidden;
	padding: var(--sp-16) 0 var(--sp-12);
}
.feature-hero__bg {
	position: absolute;
	inset: 0;
	pointer-events: none;
	z-index: 0;
}
.feature-hero__inner {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	gap: var(--sp-10);
}
.feature-hero__icon {
	flex-shrink: 0;
	width: 120px;
	height: 120px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(255,255,255,.08);
	border-radius: var(--radius-lg);
	border: 2px solid rgba(255,255,255,.12);
}
.feature-hero__img {
	width: 80px;
	height: 80px;
	object-fit: contain;
}
.feature-hero__emoji {
	font-size: 3.5rem;
	line-height: 1;
}
.feature-hero__eyebrow {
	font-size: .75rem;
	font-weight: var(--fw-bold);
	text-transform: uppercase;
	letter-spacing: .1em;
	color: var(--clr-accent);
	margin-bottom: var(--sp-2);
}
.feature-hero__title {
	font-family: var(--ff-heading);
	font-size: 2.5rem;
	color: var(--clr-white);
	margin: 0 0 var(--sp-3);
	line-height: 1.2;
}
.feature-hero__subtitle {
	color: rgba(255,255,255,.7);
	font-size: 1.125rem;
	max-width: 540px;
	margin: 0;
}

/* Body content */
.feature-single__body {
	max-width: 760px;
	margin: 0 auto;
	padding: var(--sp-12) 2rem var(--sp-16);
}
.feature-single__body h2 {
	font-family: var(--ff-heading);
	font-size: 1.5rem;
	color: var(--clr-primary);
	margin: var(--sp-10) 0 var(--sp-4);
}
.feature-single__body h3 {
	font-size: 1.125rem;
	font-weight: var(--fw-bold);
	color: var(--clr-primary);
	margin: var(--sp-8) 0 var(--sp-3);
}
.feature-single__body p {
	color: var(--clr-gray-700);
	line-height: 1.75;
	margin-bottom: var(--sp-4);
}
.feature-single__body ul,
.feature-single__body ol {
	margin: 0 0 var(--sp-6) var(--sp-6);
	color: var(--clr-gray-700);
	line-height: 1.75;
}
.feature-single__body li {
	margin-bottom: var(--sp-2);
	padding-left: var(--sp-2);
}
.feature-single__body ul li::marker {
	color: var(--clr-accent);
}
.feature-single__body blockquote {
	margin: var(--sp-8) 0;
	padding: var(--sp-6) var(--sp-8);
	background: var(--clr-accent-lt);
	border-left: 4px solid var(--clr-accent);
	border-radius: 0 var(--radius) var(--radius) 0;
}
.feature-single__body blockquote p {
	color: var(--clr-gray-900);
	font-size: 1.0625rem;
	font-weight: var(--fw-medium);
	margin: 0;
}
.feature-single__body img {
	max-width: 100%;
	height: auto;
	border-radius: var(--radius-lg);
	margin: var(--sp-6) 0;
	box-shadow: var(--shadow-lg);
}
.feature-single__body hr {
	border: none;
	border-top: 1px solid var(--clr-gray-200);
	margin: var(--sp-10) 0;
}

/* Prev / Next navigation */
.feature-nav {
	background: var(--clr-gray-100);
	border-top: 1px solid var(--clr-gray-200);
	border-bottom: 1px solid var(--clr-gray-200);
}
.feature-nav__inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
}
.feature-nav__link {
	display: block;
	padding: var(--sp-6) var(--sp-8);
	text-decoration: none;
	transition: background .2s;
}
.feature-nav__link:hover {
	background: var(--clr-gray-200);
}
.feature-nav__link--next {
	text-align: right;
	border-left: 1px solid var(--clr-gray-200);
}
.feature-nav__label {
	display: block;
	font-size: .75rem;
	font-weight: var(--fw-bold);
	text-transform: uppercase;
	letter-spacing: .08em;
	color: var(--clr-accent);
	margin-bottom: var(--sp-1);
}
.feature-nav__title {
	display: block;
	font-family: var(--ff-heading);
	font-size: 1.125rem;
	color: var(--clr-primary);
}

@media (max-width: 768px) {
	.feature-hero__inner {
		flex-direction: column;
		text-align: center;
		align-items: center;
	}
	.feature-hero__title { font-size: 1.75rem; }
	.feature-hero__subtitle { max-width: 100%; }
	.feature-single__body { padding: var(--sp-8) 1rem var(--sp-12); }
	.feature-nav__inner { grid-template-columns: 1fr; }
	.feature-nav__link--next {
		text-align: left;
		border-left: none;
		border-top: 1px solid var(--clr-gray-200);
	}
}

/* ==========================================================
   ENHANCED FEATURE SINGLE — LAYOUT, TOC, LIGHTBOX, PROGRESS
   ========================================================== */

/* Reading progress bar */
.reading-progress {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 3px;
	z-index: 1001;
	background: transparent;
	pointer-events: none;
}
.reading-progress__bar {
	height: 100%;
	width: 0;
	background: linear-gradient(90deg, var(--clr-accent), var(--clr-accent-dk));
	will-change: width;
}

/* Two-column layout: TOC sidebar + content */
.feature-layout {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 200px 1fr;
	gap: var(--sp-12);
	padding: var(--sp-12) 2rem var(--sp-16);
	align-items: start;
}

/* ---- Sticky sidebar TOC ---- */
.feature-toc {
	position: relative;
}
.feature-toc__nav {
	position: sticky;
	top: calc(72px + var(--sp-6));
	max-height: calc(100vh - 72px - var(--sp-12));
	overflow-y: auto;
	scrollbar-width: thin;
	scrollbar-color: var(--clr-gray-300) transparent;
}
.feature-toc__heading {
	font-size: .6875rem;
	font-weight: var(--fw-bold);
	text-transform: uppercase;
	letter-spacing: .12em;
	color: var(--clr-accent);
	margin: 0 0 var(--sp-4);
}
.feature-toc__list {
	list-style: none;
	margin: 0;
	padding: 0;
}
.feature-toc__item {
	margin-bottom: 1px;
}
.feature-toc__link {
	display: block;
	font-size: .8125rem;
	line-height: 1.4;
	color: var(--clr-gray-500);
	text-decoration: none;
	padding: var(--sp-1) 0 var(--sp-1) var(--sp-4);
	border-left: 2px solid transparent;
	transition: color .2s var(--ease), border-color .2s var(--ease);
}
.feature-toc__link:hover {
	color: var(--clr-primary);
}
.feature-toc__link.is-active {
	color: var(--clr-primary);
	font-weight: var(--fw-medium);
	border-left-color: var(--clr-accent);
}
.feature-toc__link--h3 {
	padding-left: var(--sp-8);
	font-size: .75rem;
}

/* ---- Mobile TOC (hidden on desktop) ---- */
.feature-toc-mobile {
	display: none;
}
.feature-toc-mobile__toggle {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	padding: var(--sp-3) var(--sp-4);
	background: var(--clr-gray-100);
	border: 1px solid var(--clr-gray-200);
	border-radius: var(--radius);
	font-size: .875rem;
	font-weight: var(--fw-medium);
	color: var(--clr-primary);
	cursor: pointer;
	transition: background .2s;
}
.feature-toc-mobile__toggle:hover {
	background: var(--clr-gray-200);
}
.feature-toc-mobile__toggle svg {
	transition: transform .2s;
}
.feature-toc-mobile__toggle[aria-expanded="true"] svg {
	transform: rotate(180deg);
}
.feature-toc-mobile__list {
	list-style: none;
	margin: var(--sp-2) 0 0;
	padding: var(--sp-2) 0;
	background: var(--clr-white);
	border: 1px solid var(--clr-gray-200);
	border-radius: var(--radius);
	box-shadow: var(--shadow-sm);
}
.feature-toc-mobile__list .feature-toc__item {
	margin: 0;
}
.feature-toc-mobile__list .feature-toc__link {
	padding: var(--sp-2) var(--sp-4);
	border-left: none;
	font-size: .8125rem;
}
.feature-toc-mobile__list .feature-toc__link--h3 {
	padding-left: var(--sp-8);
}
.feature-toc-mobile__list .feature-toc__link:hover {
	background: var(--clr-gray-100);
}

/* ---- Wide content body (overrides narrow default) ---- */
.feature-single--enhanced .feature-single__body--wide {
	max-width: none;
	margin: 0;
	padding: 0;
}

/* Section headings — bold visual breaks between major sections */
.feature-single__body--wide h2 {
	font-family: var(--ff-heading);
	font-size: 1.625rem;
	color: var(--clr-white);
	background: var(--clr-primary);
	margin: var(--sp-16) calc(var(--sp-6) * -1) var(--sp-6);
	padding: var(--sp-5) var(--sp-6);
	border-radius: var(--radius);
	border-left: 4px solid var(--clr-accent);
	line-height: 1.3;
}
.feature-single__body--wide h2:first-child {
	margin-top: 0;
}
.feature-single__body--wide h3 {
	font-size: 1.125rem;
	font-weight: var(--fw-bold);
	color: var(--clr-primary);
	margin: var(--sp-10) 0 var(--sp-3);
	padding-bottom: var(--sp-2);
	border-bottom: 2px solid var(--clr-accent);
	display: inline-block;
}
.feature-single__body--wide h4 {
	font-size: 1rem;
	font-weight: var(--fw-bold);
	color: var(--clr-gray-700);
	margin: var(--sp-6) 0 var(--sp-2);
	padding-left: var(--sp-4);
	border-left: 3px solid var(--clr-accent-lt);
}
.feature-single__body--wide p {
	color: var(--clr-gray-700);
	line-height: 1.75;
	margin-bottom: var(--sp-4);
	max-width: 680px;
}
.feature-single__body--wide ul,
.feature-single__body--wide ol {
	margin: 0 0 var(--sp-6) var(--sp-6);
	color: var(--clr-gray-700);
	line-height: 1.75;
	max-width: 680px;
}
.feature-single__body--wide li {
	margin-bottom: var(--sp-2);
	padding-left: var(--sp-2);
}
.feature-single__body--wide ul li::marker {
	color: var(--clr-accent);
}
.feature-single__body--wide blockquote {
	margin: var(--sp-8) 0;
	padding: var(--sp-6) var(--sp-8);
	background: var(--clr-accent-lt);
	border-left: 4px solid var(--clr-accent);
	border-radius: 0 var(--radius) var(--radius) 0;
	max-width: 680px;
}
.feature-single__body--wide blockquote p {
	color: var(--clr-gray-900);
	font-size: 1.0625rem;
	font-weight: var(--fw-medium);
	margin: 0;
	max-width: none;
}
.feature-single__body--wide hr {
	border: none;
	border-top: 1px solid var(--clr-gray-200);
	margin: var(--sp-10) 0;
}

/* Images — full width of content column, with hover zoom hint */
.feature-single__body--wide img {
	max-width: 100%;
	width: 100%;
	height: auto;
	border-radius: var(--radius-lg);
	margin: var(--sp-4) 0 var(--sp-8);
	box-shadow: 0 2px 12px rgba(12, 24, 50, .08), 0 0 0 1px rgba(12, 24, 50, .04);
	transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.feature-single__body--wide img:hover {
	transform: scale(1.005);
	box-shadow: 0 8px 32px rgba(12, 24, 50, .12), 0 0 0 1px rgba(12, 24, 50, .06);
}

/* ---- Lightbox ---- */
.feature-lightbox {
	position: fixed;
	inset: 0;
	z-index: 10000;
	background: rgba(12, 24, 50, .92);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: var(--sp-6);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	opacity: 0;
	transition: opacity .3s var(--ease);
	cursor: zoom-out;
}
.feature-lightbox[hidden] {
	display: none;
}
.feature-lightbox.is-open {
	opacity: 1;
}
.feature-lightbox__close {
	position: absolute;
	top: var(--sp-4);
	right: var(--sp-4);
	background: rgba(255, 255, 255, .1);
	border: 1px solid rgba(255, 255, 255, .2);
	border-radius: 50%;
	color: var(--clr-white);
	font-size: 1.5rem;
	width: 44px;
	height: 44px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: background .2s;
	line-height: 1;
}
.feature-lightbox__close:hover {
	background: rgba(255, 255, 255, .2);
}
.feature-lightbox__img {
	max-width: 95vw;
	max-height: 92vh;
	object-fit: contain;
	border-radius: var(--radius-lg);
	box-shadow: 0 24px 80px rgba(0, 0, 0, .3);
	cursor: default;
}

/* ---- Responsive ---- */

/* Tablet — collapse sidebar, show mobile TOC */
@media (max-width: 1024px) {
	.feature-layout {
		grid-template-columns: 1fr;
		gap: 0;
		padding: var(--sp-8) 1.5rem var(--sp-12);
	}
	.feature-toc {
		display: none;
	}
	.feature-toc-mobile {
		display: block;
		margin-bottom: var(--sp-8);
	}
}

/* Phone */
@media (max-width: 768px) {
	.feature-layout {
		padding: var(--sp-6) 1rem var(--sp-10);
	}
	.feature-single__body--wide h2 {
		font-size: 1.25rem;
		margin: var(--sp-12) calc(var(--sp-3) * -1) var(--sp-4);
		padding: var(--sp-4) var(--sp-4);
	}
	.feature-single__body--wide h3 {
		font-size: 1rem;
	}
	.feature-single__body--wide img {
		border-radius: var(--radius);
		margin: var(--sp-3) 0 var(--sp-6);
	}
}

/* ==========================================================
   COMPARISON SECTION (SaaS)
   ========================================================== */
/* --- Comparison Section --- */
.compare-section { overflow: hidden; padding: var(--sp-20) 0 var(--sp-16); }

.compare-header { text-align: center; margin-bottom: var(--sp-12); }
.compare-header__title { color: var(--clr-white); text-align: center; }
.compare-header__sub {
	color: rgba(255,255,255,.65);
	max-width: 640px;
	margin: var(--sp-4) auto 0;
	font-size: 1.0625rem;
	line-height: 1.7;
}

/* Comparison table */
.compare-table {
	max-width: 1100px;
	margin: 0 auto;
}

/* Column headers */
.compare-table__head {
	display: grid;
	grid-template-columns: 200px 1fr 1fr;
	gap: 2px;
	margin-bottom: 2px;
}
.compare-table__head .compare-table__category { background: transparent; }
.compare-table__col {
	padding: var(--sp-4) var(--sp-6);
	text-align: center;
	border-radius: var(--radius) var(--radius) 0 0;
}
.compare-table__col--manual {
	background: rgba(255,255,255,.06);
}
.compare-table__col--lg {
	background: rgba(184,146,80,.15);
}
.compare-table__col-label {
	display: block;
	font-family: var(--ff-heading);
	font-weight: var(--fw-bold);
	font-size: 1.125rem;
	color: var(--clr-white);
}
.compare-table__col-label--logo {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: var(--sp-2);
}
.compare-table__logo-icon {
	display: inline-flex;
	align-items: center;
	width: 26px;
	height: 26px;
	flex-shrink: 0;
}
.compare-table__logo-icon svg {
	width: 100%;
	height: 100%;
}
.compare-table__logo-text {
	white-space: nowrap;
	letter-spacing: .01em;
}

/* Group labels */
.compare-table__group-label {
	margin-top: var(--sp-6);
}
.compare-table__group-label > div {
	display: flex;
	align-items: center;
	gap: var(--sp-2);
	padding: var(--sp-3) 0;
	color: var(--clr-accent);
	font-weight: var(--fw-bold);
	font-size: .8125rem;
	text-transform: uppercase;
	letter-spacing: .08em;
	border-bottom: 1px solid rgba(184,146,80,.3);
}
.compare-table__group-icon {
	width: 18px;
	height: 18px;
	flex-shrink: 0;
}

/* Data rows */
.compare-table__row {
	display: grid;
	grid-template-columns: 200px 1fr 1fr;
	gap: 2px;
	margin-bottom: 2px;
}
.compare-table__row .compare-table__category {
	display: flex;
	align-items: center;
	padding: var(--sp-4) var(--sp-4) var(--sp-4) 0;
	font-weight: var(--fw-medium);
	font-size: .875rem;
	color: rgba(255,255,255,.85);
	line-height: 1.4;
}
.compare-table__cell {
	padding: var(--sp-4) var(--sp-5);
	font-size: .875rem;
	line-height: 1.55;
	border-radius: var(--radius);
	display: flex;
	align-items: flex-start;
	gap: var(--sp-3);
}
.compare-table__cell--bad {
	background: rgba(255,255,255,.04);
	color: rgba(255,255,255,.6);
}
.compare-table__cell--good {
	background: rgba(184,146,80,.08);
	color: rgba(255,255,255,.9);
}

.compare-table__verdict {
	flex-shrink: 0;
	font-weight: var(--fw-bold);
	font-size: 1rem;
	line-height: 1.4;
}
.compare-table__cell--bad .compare-table__verdict { color: var(--clr-danger); }
.compare-table__cell--good .compare-table__verdict { color: var(--clr-success); }

/* Bottom stats */
.compare-stats {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: var(--sp-6);
	margin-top: var(--sp-12);
	text-align: center;
}
.compare-stat__number {
	display: block;
	font-family: var(--ff-heading);
	font-weight: var(--fw-bold);
	font-size: 2.5rem;
	color: var(--clr-accent);
	line-height: 1;
	margin-bottom: var(--sp-2);
}
.compare-stat__label {
	font-size: .8125rem;
	color: rgba(255,255,255,.6);
	text-transform: uppercase;
	letter-spacing: .04em;
}

/* CTA */
.compare-cta {
	text-align: center;
	margin-top: var(--sp-10);
}

/* Responsive */
@media (max-width: 900px) {
	.compare-table__head { grid-template-columns: 1fr 1fr; }
	.compare-table__head .compare-table__category { display: none; }
	.compare-table__row { grid-template-columns: 1fr 1fr; }
	.compare-table__row .compare-table__category {
		grid-column: 1 / -1;
		padding: var(--sp-3) 0 var(--sp-1);
		font-size: .8125rem;
		color: var(--clr-accent);
		font-weight: var(--fw-bold);
		text-transform: uppercase;
		letter-spacing: .03em;
	}
}
@media (max-width: 600px) {
	.compare-table__head { grid-template-columns: 1fr; gap: var(--sp-2); }
	.compare-table__row { grid-template-columns: 1fr; gap: var(--sp-2); }
	.compare-stats { grid-template-columns: repeat(2, 1fr); }
}

/* ==========================================================
   PRICING — HERO
   ========================================================== */
.pricing-hero {
	position: relative;
	background: var(--clr-primary);
	padding: var(--sp-20) 0 calc(var(--sp-24) + 2rem);
	text-align: center;
	overflow: hidden;
}
.pricing-hero .logo-watermark {
	position: absolute;
	right: -5%;
	bottom: -10%;
	width: 400px;
	opacity: .03;
	pointer-events: none;
}
.pricing-hero__inner { position: relative; z-index: 1; max-width: 720px; margin: 0 auto; }
.pricing-hero__title {
	color: var(--clr-white);
	font-size: clamp(2.25rem, 5vw, 3.25rem);
	line-height: 1.15;
	margin: 0 0 var(--sp-5);
	letter-spacing: -.01em;
}
.pricing-hero__title em {
	font-style: normal;
	color: var(--clr-accent);
}
.pricing-hero__sub {
	font-size: clamp(1rem, 2.5vw, 1.25rem);
	color: rgba(255,255,255,.6);
	line-height: 1.6;
	max-width: 560px;
	margin: 0 auto var(--sp-6);
}
.pricing-hero__badges {
	display: flex;
	justify-content: center;
	gap: var(--sp-6);
	flex-wrap: wrap;
	margin-top: var(--sp-8);
}
.pricing-hero__badge {
	display: inline-flex;
	align-items: center;
	gap: var(--sp-2);
	font-size: .8125rem;
	font-weight: var(--fw-bold);
	color: rgba(255,255,255,.5);
	letter-spacing: .04em;
	text-transform: uppercase;
}
.pricing-hero__badge svg {
	width: 16px;
	height: 16px;
	max-width: 16px;
	max-height: 16px;
	flex-shrink: 0;
	stroke: var(--clr-accent);
}

/* ==========================================================
   PRICING — CARDS
   ========================================================== */
.pricing-section {
	padding: 0 0 var(--sp-16);
	margin-top: -2.5rem;
	position: relative;
	z-index: 2;
}
.pricing-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--sp-6);
	align-items: start;
}
.pricing-card {
	background: var(--clr-white);
	border: 1px solid var(--clr-gray-200);
	border-radius: 16px;
	box-shadow: var(--shadow-sm), 0 8px 24px rgba(0,0,0,.04);
	display: flex;
	flex-direction: column;
	position: relative;
	transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.pricing-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-md), 0 16px 48px rgba(0,0,0,.08);
}
.pricing-card--featured {
	border: 2px solid var(--clr-accent);
	box-shadow: 0 4px 12px rgba(184,146,80,.1), 0 16px 48px rgba(0,0,0,.08);
	z-index: 2;
	transform: scale(1.04);
}
.pricing-card--featured:hover {
	transform: scale(1.04) translateY(-4px);
	box-shadow: 0 8px 24px rgba(184,146,80,.15), 0 24px 64px rgba(0,0,0,.1);
}
.pricing-card--featured::before {
	content: 'Most Popular';
	position: absolute;
	top: -13px;
	left: 50%;
	transform: translateX(-50%);
	background: var(--clr-accent);
	color: var(--clr-white);
	padding: .35rem 1.25rem;
	border-radius: var(--radius-pill);
	font-size: .6875rem;
	font-weight: var(--fw-bold);
	text-transform: uppercase;
	letter-spacing: .1em;
	white-space: nowrap;
}
.pricing-card__header {
	padding: var(--sp-10) var(--sp-8) var(--sp-6);
}
.pricing-card__name {
	font-size: 1.375rem;
	color: var(--clr-primary);
	margin: 0 0 var(--sp-2);
}
.pricing-card__blurb {
	font-size: .875rem;
	color: var(--clr-gray-500);
	line-height: 1.5;
	margin: 0 0 var(--sp-6);
	min-height: 2.625rem;
}
.pricing-card__price {
	font-family: var(--ff-heading);
	font-size: 3.25rem;
	font-weight: var(--fw-bold);
	color: var(--clr-primary);
	line-height: 1;
	margin-bottom: var(--sp-1);
	letter-spacing: normal;
}
.pricing-card__price span {
	font-size: .9375rem;
	font-family: var(--ff-body);
	color: var(--clr-gray-500);
	font-weight: var(--fw-normal);
}
.pricing-card__seats {
	font-size: .8125rem;
	color: var(--clr-accent-dk);
	font-weight: var(--fw-medium);
	letter-spacing: .02em;
	margin: 0;
}
.pricing-card__divider {
	height: 1px;
	background: var(--clr-gray-200);
	margin: 0 var(--sp-8);
}
/* Card body — fills the space between divider and footer */
.pricing-card__body {
	padding: var(--sp-6) var(--sp-8);
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: var(--sp-4);
}

/* "Every feature included" callout */
.pricing-card__included {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: .5rem;
	padding: .625rem 1rem;
	background: var(--clr-accent-lt);
	border-radius: var(--radius-sm);
	text-align: center;
}
.pricing-card__included svg {
	flex-shrink: 0;
	color: var(--clr-success);
}
.pricing-card__included strong {
	font-size: .875rem;
	font-weight: var(--fw-bold);
	color: var(--clr-primary);
	letter-spacing: .01em;
}
.pricing-card--featured .pricing-card__included {
	background: rgba(184,146,80,.1);
}
.pricing-card--featured .pricing-card__included svg {
	color: var(--clr-accent);
}

/* "Best for" description */
.pricing-card__bestfor {
	font-size: .8125rem;
	color: var(--clr-gray-500);
	line-height: 1.55;
	text-align: center;
	margin: 0;
	padding: 0 var(--sp-2);
}
.pricing-card__footer {
	padding: 0 var(--sp-8) var(--sp-8);
}
.btn--block {
	display: block;
	width: 100%;
	text-align: center;
}

/* ==========================================================
   PRICING — PROMISE BAR
   ========================================================== */
.promise-bar {
	background: var(--clr-accent-lt);
	border-top: 1px solid var(--clr-gray-200);
	border-bottom: 1px solid var(--clr-gray-200);
	padding: var(--sp-10) 0;
}
.promise-bar__items {
	display: flex;
	justify-content: center;
	gap: var(--sp-12);
	flex-wrap: wrap;
}
.promise-bar__item {
	display: flex;
	align-items: center;
	gap: var(--sp-3);
}
.promise-bar__icon {
	width: 40px;
	height: 40px;
	border-radius: 10px;
	background: var(--clr-white);
	border: 1px solid var(--clr-gray-200);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}
.promise-bar__icon svg {
	width: 20px;
	height: 20px;
	max-width: 20px;
	max-height: 20px;
	stroke: var(--clr-accent);
}
.promise-bar__text { text-align: left; }
.promise-bar__text strong {
	display: block;
	font-size: .8125rem;
	font-weight: var(--fw-bold);
	color: var(--clr-primary);
	letter-spacing: .02em;
}
.promise-bar__text span {
	font-size: .75rem;
	color: var(--clr-gray-500);
	line-height: 1.4;
}

/* ==========================================================
   PRICING — EVERY FEATURE GRID
   ========================================================== */
.pricing-features {
	padding: var(--sp-20) 0;
}
.pricing-features__header {
	text-align: center;
	margin-bottom: var(--sp-12);
}
.pricing-features__header h2 {
	font-size: clamp(1.75rem, 3.5vw, 2.25rem);
	color: var(--clr-primary);
	margin: 0 0 var(--sp-3);
}
.pricing-features__header p {
	font-size: 1.0625rem;
	color: var(--clr-gray-500);
	max-width: 520px;
	margin: 0 auto;
	line-height: 1.6;
}
/* Pricing page reuses .features-grid / .feature-card from homepage */

/* ==========================================================
   PRICING — FAQ ACCORDION
   ========================================================== */
.pricing-faq {
	background: var(--clr-primary);
	padding: var(--sp-20) 0;
}
.pricing-faq__header {
	text-align: center;
	margin-bottom: var(--sp-12);
}
.pricing-faq__header h2 {
	color: var(--clr-white);
	margin: 0 0 var(--sp-3);
}
.pricing-faq__header p {
	color: rgba(255,255,255,.5);
	font-size: 1.0625rem;
}
.pricing-faq__list {
	max-width: 720px;
	margin: 0 auto;
}
.pricing-faq__item {
	border-bottom: 1px solid rgba(255,255,255,.08);
}
.pricing-faq__item:first-child { border-top: 1px solid rgba(255,255,255,.08); }
.pricing-faq__q {
	width: 100%;
	background: none;
	border: none;
	text-align: left;
	padding: 1.375rem 2.5rem 1.375rem 0;
	font-family: var(--ff-body);
	font-size: 1rem;
	font-weight: var(--fw-medium);
	color: var(--clr-white);
	cursor: pointer;
	position: relative;
	line-height: 1.45;
	transition: color var(--dur) var(--ease);
}
.pricing-faq__q:hover { color: var(--clr-accent); }
.pricing-faq__q::after {
	content: '+';
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	font-size: 1.375rem;
	font-weight: 300;
	color: var(--clr-accent);
	transition: transform .3s var(--ease);
}
.pricing-faq__item.open .pricing-faq__q::after {
	transform: translateY(-50%) rotate(45deg);
}
.pricing-faq__a {
	max-height: 0;
	overflow: hidden;
	transition: max-height .4s cubic-bezier(.22,1,.36,1), padding .3s ease;
}
.pricing-faq__item.open .pricing-faq__a {
	max-height: 300px;
	padding-bottom: var(--sp-6);
}
.pricing-faq__a p {
	font-size: .9375rem;
	color: rgba(255,255,255,.55);
	line-height: 1.65;
	margin: 0;
}

/* ==========================================================
   PRICING — BOTTOM CTA
   ========================================================== */
.pricing-cta {
	background: var(--clr-accent-lt);
	padding: var(--sp-20) 0;
}
.pricing-cta h2 {
	font-size: clamp(1.75rem, 3.5vw, 2.25rem);
	color: var(--clr-primary);
	margin: 0 0 var(--sp-3);
}
.pricing-cta p {
	font-size: 1.0625rem;
	color: var(--clr-gray-500);
	margin-bottom: var(--sp-8);
	line-height: 1.6;
}
.pricing-cta__contact {
	margin-top: var(--sp-5) !important;
	font-size: .875rem !important;
	color: var(--clr-gray-500) !important;
}
.pricing-cta__contact a {
	color: var(--clr-accent-dk);
	font-weight: var(--fw-medium);
}
.pricing-cta__contact a:hover { text-decoration: underline; }

/* ==========================================================
   SCROLL REVEAL + FADE ANIMATIONS
   ========================================================== */
@keyframes fadeUp {
	from { opacity: 0; transform: translateY(32px); }
	to   { opacity: 1; transform: translateY(0); }
}
.fade-up {
	opacity: 0;
	animation: fadeUp .7s cubic-bezier(.22,1,.36,1) forwards;
}
.fade-delay-1 { animation-delay: .1s; }
.fade-delay-2 { animation-delay: .2s; }
.fade-delay-3 { animation-delay: .3s; }

.js-reveal-ready .reveal {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity .6s cubic-bezier(.22,1,.36,1), transform .6s cubic-bezier(.22,1,.36,1);
}
.js-reveal-ready .reveal.visible {
	opacity: 1;
	transform: translateY(0);
}

/* ==========================================================
   PRICING RESPONSIVE
   ========================================================== */
@media (max-width: 1024px) {
	.pricing-grid { gap: var(--sp-5); }
	.pricing-card--featured { transform: scale(1.02); }
	.pricing-card--featured:hover { transform: scale(1.02) translateY(-4px); }
}
@media (max-width: 768px) {
	.pricing-hero { padding: var(--sp-16) 0 calc(var(--sp-20) + 2rem); }
	.pricing-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
	.pricing-card--featured { transform: none; order: -1; }
	.pricing-card--featured:hover { transform: translateY(-4px); }
	.promise-bar__items { gap: var(--sp-6); }
	.pricing-hero__badges { flex-direction: column; align-items: center; gap: var(--sp-3); }
}
@media (max-width: 480px) {
	.promise-bar__items { flex-direction: column; align-items: center; }
}

/* ==========================================================
   SECURITY BAND
   ========================================================== */
.security-band {
	background: var(--clr-gray-100);
	padding: var(--sp-16) 0;
}
.security-band__grid {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: var(--sp-8);
	margin-top: var(--sp-8);
}
.security-band__point {
	text-align: center;
}
.security-band__icon {
	width: 56px;
	height: 56px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--clr-accent-lt);
	border-radius: 50%;
	margin: 0 auto var(--sp-4);
	padding: 14px;
	color: var(--clr-accent-dk);
}
.security-band__icon svg {
	width: 100%;
	height: 100%;
}
.security-band__point h3 {
	font-size: 1rem;
	margin-bottom: var(--sp-2);
}
.security-band__point p {
	color: var(--clr-gray-700);
	font-size: .875rem;
	margin: 0;
}
@media (max-width: 768px) {
	.security-band__grid { grid-template-columns: 1fr; gap: var(--sp-6); }
}

/* ==========================================================
   FAQ ACCORDION
   ========================================================== */
.faq-group { margin-bottom: var(--sp-10); }
.faq-group__title {
	font-size: 1.25rem;
	margin-bottom: var(--sp-6);
	padding-bottom: var(--sp-3);
	border-bottom: 2px solid var(--clr-accent);
}
.faq-item {
	border: 2px solid var(--clr-gray-200);
	border-radius: var(--radius);
	margin-bottom: var(--sp-3);
	overflow: hidden;
}
.faq-item__trigger {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	padding: var(--sp-4) var(--sp-5);
	background: var(--clr-white);
	border: none;
	cursor: pointer;
	font-size: 1rem;
	font-weight: var(--fw-bold);
	font-family: var(--ff-body);
	color: var(--clr-primary);
	text-align: left;
	transition: background var(--dur) var(--ease);
}
.faq-item__trigger:hover { background: var(--clr-gray-100); }
.faq-item__icon {
	transition: transform var(--dur) var(--ease);
	font-size: 1.25rem;
	flex-shrink: 0;
	margin-left: var(--sp-4);
}
.faq-item__trigger[aria-expanded="true"] .faq-item__icon { transform: rotate(180deg); }
.faq-item__trigger[aria-expanded="true"] { background: var(--clr-accent-lt); }
.faq-item__body {
	display: none;
	padding: var(--sp-4) var(--sp-5) var(--sp-5);
	color: var(--clr-gray-700);
	line-height: 1.7;
}
.faq-item__body.is-open { display: block; }

/* ==========================================================
   SECURITY PAGE
   ========================================================== */
.security-section { padding: var(--sp-12) 0; }
.security-section + .security-section { border-top: 1px solid var(--clr-gray-200); }
.security-table {
	width: 100%;
	border-collapse: collapse;
	margin-top: var(--sp-6);
}
.security-table th,
.security-table td {
	padding: var(--sp-3) var(--sp-4);
	text-align: left;
	border-bottom: 1px solid var(--clr-gray-200);
	font-size: .9375rem;
}
.security-table th {
	background: var(--clr-primary);
	color: var(--clr-white);
	font-weight: var(--fw-bold);
}
.security-table tr:nth-child(even) td { background: var(--clr-accent-lt); }

.security-callout {
	background: var(--clr-accent-lt);
	border-left: 4px solid var(--clr-accent);
	padding: var(--sp-6);
	border-radius: 0 var(--radius) var(--radius) 0;
	margin: var(--sp-6) 0;
}

.not-list {
	list-style: none;
	padding: 0;
}
.not-list li {
	padding: var(--sp-2) 0;
	padding-left: var(--sp-6);
	position: relative;
}
.not-list li::before {
	content: '\2717';
	position: absolute;
	left: 0;
	color: var(--clr-danger);
	font-weight: var(--fw-bold);
}

/* --- No AI page heading icons --- */
.noai-heading {
	display: flex;
	align-items: center;
	gap: var(--sp-3);
}
.noai-heading__icon {
	width: 28px;
	min-width: 28px;
	max-width: 28px;
	height: 28px;
	max-height: 28px;
	flex-shrink: 0;
	flex-grow: 0;
	color: var(--clr-accent);
	display: inline-block;
}

/* ==========================================================
   INTAKE FORM DEMO PAGE
   ========================================================== */

/* --- Context bar (3 stat cards below banner) --- */
.intake-demo-context {
	background: var(--clr-gray-100);
	padding: var(--sp-10) 0;
	border-bottom: 1px solid var(--clr-gray-200);
}
.intake-demo-context__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--sp-8);
	text-align: center;
}
.intake-demo-context__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	margin: 0 auto var(--sp-3);
	background: var(--clr-accent-lt);
	border-radius: 50%;
	font-size: 1.5rem;
	line-height: 1;
}
.intake-demo-context__item h3 {
	font-size: 1.125rem;
	margin-bottom: var(--sp-2);
}
.intake-demo-context__item p {
	color: var(--clr-gray-500);
	font-size: .9375rem;
	margin: 0;
}
@media (max-width: 768px) {
	.intake-demo-context__grid {
		grid-template-columns: 1fr;
		gap: var(--sp-6);
		max-width: 360px;
		margin: 0 auto;
	}
}

/* --- Form wrapper --- */
.intake-demo-form {
	padding: var(--sp-12) 0 var(--sp-16);
}
.intake-demo-form__header {
	max-width: 820px;
	margin: 0 auto var(--sp-8);
	text-align: center;
}
.intake-demo-form__title {
	margin-bottom: var(--sp-2);
}
.intake-demo-form__note {
	color: var(--clr-gray-500);
	font-size: .9375rem;
	margin: 0;
}
.intake-demo-form__wrapper {
	max-width: 820px;
	margin: 0 auto;
	background: var(--clr-gray-100);
	border: 1px solid var(--clr-gray-200);
	border-radius: var(--radius-lg);
	padding: var(--sp-10);
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
	text-align: left;
}

/* --- What happens next --- */
.intake-demo-next {
	background: var(--clr-gray-100);
	padding: var(--sp-16) 0;
}
.intake-demo-next__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: var(--sp-8);
	text-align: center;
}
.intake-demo-next__step {
	display: flex;
	flex-direction: column;
	align-items: center;
}
span.intake-demo-next__num {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	min-width: 48px;
	min-height: 48px;
	background: var(--clr-accent);
	color: var(--clr-white);
	border-radius: 50%;
	font-weight: var(--fw-bold);
	font-size: 1.25rem;
	line-height: 1;
	margin-bottom: var(--sp-4);
}
.intake-demo-next__step h3 {
	font-size: 1.0625rem;
	margin-bottom: var(--sp-2);
}
.intake-demo-next__step p {
	color: var(--clr-gray-500);
	font-size: .9375rem;
	margin: 0;
}
@media (max-width: 991px) {
	.intake-demo-next__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 576px) {
	.intake-demo-next__grid { grid-template-columns: 1fr; max-width: 360px; margin: 0 auto; }
}

/* ==========================================================
   CONTACT PAGE (SaaS)
   ========================================================== */
.contact-simple {
	max-width: 640px;
	margin: 0 auto;
	padding: var(--sp-12) 0 var(--sp-16);
	text-align: center;
}
.contact-simple h2 { margin-bottom: var(--sp-4); }
.contact-simple p { color: var(--clr-gray-500); margin-bottom: var(--sp-8); }
.contact-simple .contact-form { text-align: left; }

/* Google trademark attribution */
.footer__google-attr {
	font-size: .75rem;
	color: rgba(255,255,255,.6);
	font-style: italic;
}

/* ==========================================================
   RESPONSIVE — LARGE DESKTOP
   ========================================================== */
@media (min-width: 1600px) {
	:root { --container-max: 1600px; }
	.layout-with-sidebar { --sidebar-w: 360px; gap: var(--sp-16); }
	.home-hero__grid { max-width: 100%; }
	.contact-grid { grid-template-columns: 440px 1fr; }
	.footer__grid { grid-template-columns: 1.4fr 1fr 1fr; gap: var(--sp-16); }
}

@media (min-width: 1920px) {
	:root { --container-max: 1800px; }
}

/* ==========================================================
   RESPONSIVE — SMALL
   ========================================================== */
@media (max-width: 768px) {
	.home-hero .container { padding-left: var(--sp-8); padding-right: var(--sp-8); }
}
@media (max-width: 480px) {
	.home-hero .container { padding-left: var(--sp-10); padding-right: var(--sp-10); }
	.home-hero__actions { flex-direction: column; }
	.home-cta__inner { flex-direction: column; text-align: center; }
	.home-cta__actions { justify-content: center; }
	.section { padding: var(--sp-12) 0; }
	.home-section { padding: var(--sp-12) 0; }
	.feature-detail { gap: var(--sp-6); }
}
