/* ── Comparison Image Widget ──────────────────────────────────────────────── */
.sea-ci {
	position: relative;
	display: block;
	overflow: hidden;
	border-radius: 12px;
	line-height: 0;
	-webkit-user-select: none;
	user-select: none;
}

.sea-ci__container {
	position: relative;
	width: 100%;
	line-height: 0;
}

.sea-ci__before {
	display: block;
	width: 100%;
}

.sea-ci__before img {
	width: 100%;
	height: auto;
	display: block;
	pointer-events: none;
}

.sea-ci__after {
	position: absolute;
	inset: 0;
	clip-path: inset(0 50% 0 0);
}

.sea-ci__after img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	pointer-events: none;
}

/* ─ Labels ─ */
.sea-ci__label {
	position: absolute;
	z-index: 20;
	background: rgba(0, 0, 0, 0.75);
	color: #fff;
	padding: 6px 14px;
	border-radius: 20px;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.07em;
	text-transform: uppercase;
	pointer-events: none;
	white-space: nowrap;
}

.sea-ci__label--top-left     { top: 16px;    left: 16px;   }
.sea-ci__label--top-right    { top: 16px;    right: 16px;  }
.sea-ci__label--bottom-left  { bottom: 16px; left: 16px;   }
.sea-ci__label--bottom-right { bottom: 16px; right: 16px;  }

/* ─ Handle — horizontal (default) ─ */
.sea-ci__handle {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 50%;
	width: 44px;
	transform: translateX(-50%);
	display: flex;
	flex-direction: column;
	align-items: center;
	cursor: ew-resize;
	z-index: 30;
	touch-action: none;
}

.sea-ci__line {
	flex: 1;
	width: 2px;
	background: rgba(255, 255, 255, 0.85);
	pointer-events: none;
}

.sea-ci__btn {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
	color: #333;
	transition: transform 0.15s ease;
}

.sea-ci__btn:hover {
	transform: scale(1.08);
}

.sea-ci__btn i   { font-size: 16px; pointer-events: none; }
.sea-ci__btn svg { width: 16px; height: 16px; pointer-events: none; }

/* ─ Handle — vertical orientation ─ */
.sea-ci[data-orientation="vertical"] .sea-ci__after {
	clip-path: inset(50% 0 0 0);
}

.sea-ci[data-orientation="vertical"] .sea-ci__handle {
	top: 50%;
	bottom: auto;
	left: 0;
	right: 0;
	width: auto;
	height: 44px;
	transform: translateY(-50%);
	flex-direction: row;
	cursor: ns-resize;
}

.sea-ci[data-orientation="vertical"] .sea-ci__line {
	flex: 1;
	width: auto;
	height: 2px;
}

/* ─ Drag state ─ */
body.sea-ci-dragging            { cursor: ew-resize !important; user-select: none; }
body.sea-ci-dragging--vertical  { cursor: ns-resize !important; }

/* ── Comparison Table Widget ──────────────────────────────────────────────── */
.sea-ctable {
	width: 100%;
	background: #fff;
	border-radius: 12px;
	overflow: hidden;
	padding-bottom: 4px;
}

.sea-ctable__wrap {
	width: 100%;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}

.sea-ctable table {
	width: 100%;
	border-collapse: collapse;
	font-size: 0.95rem;
	margin: 0;           /* remove browser/theme default table margin */
}

/* Reset any theme/browser borders — !important beats theme specificity */
.sea-ctable,
.sea-ctable table,
.sea-ctable th,
.sea-ctable td {
	border-top:  none !important;
	border-left: none !important;
}

/* Column divider — separate longhand properties are more reliable than
   the border-right shorthand when using CSS custom properties */
.sea-ctable thead th,
.sea-ctable tbody td {
	border-right-style: solid;
	border-right-width: var(--ctable-col-border-width, 0px);
	border-right-color: var(--ctable-col-border-color, transparent);
}

.sea-ctable thead th:last-child,
.sea-ctable tbody td:last-child {
	border-right: none;
}

.sea-ctable thead th {
	padding: 14px 20px;
	text-align: left;
	font-size: 0.72rem;
	font-weight: 600;
	letter-spacing: 0.06em;
	color: #94a3b8;
	text-transform: uppercase;
	border-bottom: 1px solid #e2e8f0;
	background: #fff;
	white-space: nowrap;
}

.sea-ctable tbody td {
	padding: 16px 20px;
	color: #1e293b;
	border-bottom: 1px solid #e2e8f0;
	vertical-align: middle;
	transition: background-color 0.15s ease;
}

.sea-ctable tbody tr:last-child td {
	border-bottom: none;
}

.sea-ctable tbody tr:nth-child(odd) td:not(.is-accent) {
	background-color: #ffffff;
}

.sea-ctable tbody tr:nth-child(even) td:not(.is-accent) {
	background-color: #f8fafc;
}

.sea-ctable tbody tr:hover td:not(.is-accent) {
	background-color: #f1f5f9;
}

.sea-ctable td.is-accent {
	color: #3b5bdb;
	font-weight: 600;
}

.sea-ctable__footer {
	padding: 0 20px;
	margin-top: 16px;
	font-size: 0.8rem;
	font-style: italic;
	color: #94a3b8;
	line-height: 1.5;
}

/* ── Breadcrumb Widget ────────────────────────────────────────────────────── */
.sea-breadcrumb {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.sea-breadcrumb__item {
	display: inline-flex;
	align-items: center;
	font-size: inherit;
	line-height: 1.4;
}

.sea-breadcrumb__item a {
	color: #6366f1;
	text-decoration: none;
	transition: color 0.15s ease;
}

.sea-breadcrumb__item a:hover {
	color: #4f46e5;
}

.sea-breadcrumb__item--current {
	color: #64748b;
}

.sea-breadcrumb__separator {
	display: inline-flex;
	align-items: center;
	color: #94a3b8;
	font-size: 12px;
	line-height: 1;
	user-select: none;
}

.sea-breadcrumb__separator i {
	font-size: inherit;
	line-height: inherit;
}

.sea-breadcrumb__separator svg {
	width: 12px;
	height: 12px;
	fill: currentColor;
	vertical-align: middle;
}

/* ── Support Card Widget ──────────────────────────────────────────────────── */
.sea-support-card {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	background: #fff;
	padding: 30px;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.05);
	transition: box-shadow 0.2s ease;
}

.sea-support-card:hover {
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.sea-support-card__icon {
	margin-bottom: 16px;
	line-height: 1;
}

.sea-support-card__icon i,
.sea-support-card__icon svg {
	color: #6366f1;
	font-size: 40px;
	width: 40px;
	height: 40px;
}

.sea-support-card__title {
	font-size: 1.2rem;
	font-weight: 700;
	color: #1e293b;
	margin: 0 0 10px;
}

.sea-support-card__desc {
	font-size: 0.95rem;
	color: #64748b;
	line-height: 1.6;
	margin: 0 0 20px;
	flex: 1;
}

.sea-support-card__btn {
	display: inline-block;
	padding: 10px 22px;
	background: #6366f1;
	color: #fff;
	text-decoration: none;
	border-radius: 6px;
	font-size: 0.9rem;
	font-weight: 600;
	transition: background-color 0.2s ease, transform 0.1s ease;
}

.sea-support-card__btn:hover {
	background: #4f46e5;
	color: #fff;
	transform: translateY(-1px);
}

/* ── Support FAQ Widget ───────────────────────────────────────────────────── */
.sea-faq {
	width: 100%;
}

.sea-faq__item {
	border: 1px solid #e2e8f0;
	border-radius: 8px;
	margin-bottom: 8px;
	overflow: hidden;
	transition: box-shadow 0.2s ease;
}

.sea-faq__item.is-open {
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
}

.sea-faq__question {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	padding: 16px 20px;
	background: transparent;
	border: none;
	text-align: left;
	font-size: 1rem;
	font-weight: 600;
	color: #1e293b;
	cursor: pointer;
	gap: 12px;
	transition: background-color 0.15s ease;
}

.sea-faq__question:hover {
	background: #f8fafc;
}

.sea-faq__icon {
	flex-shrink: 0;
	display: inline-flex;
	transition: transform 0.25s ease;
	color: #6366f1;
}

.sea-faq__item.is-open .sea-faq__icon {
	transform: rotate(180deg);
}

.sea-faq__answer {
	display: none;
	padding: 0 20px 16px;
	font-size: 0.95rem;
	color: #475569;
	line-height: 1.7;
}

.sea-faq__answer p:last-child {
	margin-bottom: 0;
}

/* ── Table of Contents Widget ─────────────────────────────────────────────── */
.sea-toc {
	background: #fff;
	border: 1px solid #e2e8f0;
	border-style: solid;
	border-radius: 8px;
	padding: 16px 20px;
	font-size: 0.9rem;
}

.sea-toc__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 12px;
	padding-bottom: 10px;
	border-bottom: 1px solid #e2e8f0;
}

.sea-toc__title {
	font-weight: 700;
	font-size: 0.85rem;
	color: #1e293b;
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

.sea-toc__toggle {
	background: none;
	border: none;
	cursor: pointer;
	color: #64748b;
	padding: 2px;
	display: inline-flex;
	align-items: center;
	transition: transform 0.2s ease, color 0.15s ease;
	line-height: 1;
	flex-shrink: 0;
}

.sea-toc__toggle svg {
	width: 16px;
	height: 16px;
	pointer-events: none;
}

.sea-toc__toggle[aria-expanded="false"] {
	transform: rotate(-90deg);
}

.sea-toc__toggle:hover {
	color: #6366f1;
}

.sea-toc__body.is-hidden {
	display: none;
}

.sea-toc__list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.sea-toc__list--sub {
	padding-left: 16px;
	margin-top: 4px;
}

.sea-toc__item {
	margin-bottom: 4px;
}

.sea-toc__link {
	display: block;
	color: #475569;
	text-decoration: none;
	padding: 3px 8px 3px 10px;
	border-left: 2px solid transparent;
	border-radius: 0 4px 4px 0;
	transition: color 0.15s ease, border-left-color 0.15s ease, background-color 0.15s ease;
	line-height: 1.5;
}

.sea-toc__link:hover {
	color: #6366f1;
	background-color: #f8fafc;
}

.sea-toc__item.is-active > .sea-toc__link {
	color: #6366f1;
	border-left-color: #6366f1;
	font-weight: 600;
}

.sea-toc__num {
	font-variant-numeric: tabular-nums;
	opacity: 0.65;
}

.sea-toc__placeholder {
	color: #94a3b8;
	font-size: 0.85rem;
	font-style: italic;
	margin: 0;
	padding: 4px 0;
}

/* ── Advanced Button Widget ───────────────────────────────────────────────── */
/* All selectors are scoped to .elementor-widget-sea-advanced-button to beat  */
/* specificity from other plugin/theme stylesheets that target a, button, etc */

/* ─ Base ─ */
.elementor-widget-sea-advanced-button .sea-btn {
	--sea-btn-dur: 300ms;
	--sea-btn-hover-bg: #4f46e5;
	--sea-btn-circle-d: 56px;
	--sea-btn-pill-d: 48px;
	--sea-btn-orbit-gap: 24px;

	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 14px 28px;
	background: #6366f1;
	color: #fff;
	text-decoration: none !important;
	border-radius: 100px;
	border: none;
	box-sizing: border-box;
	font-size: 1rem;
	font-weight: 600;
	line-height: normal;
	cursor: pointer;
	position: relative;
	margin: 0;
	-webkit-user-select: none;
	user-select: none;
	outline: none;
	vertical-align: middle;
	white-space: nowrap;
	transition:
		background-color var(--sea-btn-dur) ease,
		color            var(--sea-btn-dur) ease,
		border-color     var(--sea-btn-dur) ease,
		box-shadow       var(--sea-btn-dur) ease,
		transform        var(--sea-btn-dur) ease;
}

.elementor-widget-sea-advanced-button .sea-btn__label  { pointer-events: none; }
.elementor-widget-sea-advanced-button .sea-btn__icon   { display: inline-flex; align-items: center; justify-content: center; line-height: 1; pointer-events: none; }
.elementor-widget-sea-advanced-button .sea-btn__icon i { font-size: 16px; }
.elementor-widget-sea-advanced-button .sea-btn__icon svg { width: 16px; height: 16px; }

/* ─ None preset (simple colour change on hover) — no extra CSS needed ─ */

/* ─ Fill Sweep ─────────────────────────────────────────────────────────── */
.elementor-widget-sea-advanced-button .sea-btn--fill-sweep {
	overflow: hidden;
}

.elementor-widget-sea-advanced-button .sea-btn--fill-sweep::before {
	content: '';
	position: absolute;
	inset: 0;
	background: var(--sea-btn-hover-bg, #4f46e5);
	z-index: 0;
	transition: transform var(--sea-btn-dur) ease;
}

.elementor-widget-sea-advanced-button .sea-btn--fill-sweep .sea-btn__label,
.elementor-widget-sea-advanced-button .sea-btn--fill-sweep .sea-btn__icon-wrap {
	position: relative;
	z-index: 1;
}

/* left → right */
.elementor-widget-sea-advanced-button .sea-btn--fill-ltr::before { transform: scaleX(0); transform-origin: left center; }
.elementor-widget-sea-advanced-button .sea-btn--fill-ltr:hover::before { transform: scaleX(1); }

/* right → left */
.elementor-widget-sea-advanced-button .sea-btn--fill-rtl::before { transform: scaleX(0); transform-origin: right center; }
.elementor-widget-sea-advanced-button .sea-btn--fill-rtl:hover::before { transform: scaleX(1); }

/* top → bottom */
.elementor-widget-sea-advanced-button .sea-btn--fill-ttb::before { transform: scaleY(0); transform-origin: top center; }
.elementor-widget-sea-advanced-button .sea-btn--fill-ttb:hover::before { transform: scaleY(1); }

/* bottom → top */
.elementor-widget-sea-advanced-button .sea-btn--fill-btt::before { transform: scaleY(0); transform-origin: bottom center; }
.elementor-widget-sea-advanced-button .sea-btn--fill-btt:hover::before { transform: scaleY(1); }

/* ─ Arrow Slide ────────────────────────────────────────────────────────── */
.elementor-widget-sea-advanced-button .sea-btn--arrow-slide .sea-btn__icon-wrap {
	display: inline-grid;
	overflow: hidden;
}

.elementor-widget-sea-advanced-button .sea-btn--arrow-slide .sea-btn__icon-wrap > .sea-btn__icon {
	grid-area: 1 / 1;
	transition: transform var(--sea-btn-dur) ease;
}

/* right icon wrap: A exits right, B enters from left */
.elementor-widget-sea-advanced-button .sea-btn--arrow-slide .sea-btn__icon-wrap--right .sea-btn__icon--b { transform: translateX(-120%); }
.elementor-widget-sea-advanced-button .sea-btn--arrow-slide:hover .sea-btn__icon-wrap--right .sea-btn__icon--a { transform: translateX(120%); }
.elementor-widget-sea-advanced-button .sea-btn--arrow-slide:hover .sea-btn__icon-wrap--right .sea-btn__icon--b { transform: translateX(0); }

/* left icon wrap: A exits left, B enters from right */
.elementor-widget-sea-advanced-button .sea-btn--arrow-slide .sea-btn__icon-wrap--left .sea-btn__icon--b { transform: translateX(120%); }
.elementor-widget-sea-advanced-button .sea-btn--arrow-slide:hover .sea-btn__icon-wrap--left .sea-btn__icon--a { transform: translateX(-120%); }
.elementor-widget-sea-advanced-button .sea-btn--arrow-slide:hover .sea-btn__icon-wrap--left .sea-btn__icon--b { transform: translateX(0); }

/* ─ Icon Spin ──────────────────────────────────────────────────────────── */
.elementor-widget-sea-advanced-button .sea-btn--icon-spin .sea-btn__icon {
	transition: transform var(--sea-btn-dur) ease;
}

.elementor-widget-sea-advanced-button .sea-btn--spin-90:hover  .sea-btn__icon { transform: rotate(90deg); }
.elementor-widget-sea-advanced-button .sea-btn--spin-180:hover .sea-btn__icon { transform: rotate(180deg); }
.elementor-widget-sea-advanced-button .sea-btn--spin-360:hover .sea-btn__icon { transform: rotate(360deg); }

/* ─ Expand (circle → pill) ─────────────────────────────────────────────── */
.elementor-widget-sea-advanced-button .sea-btn--expand {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	background: transparent;
	padding: 0;
	overflow: visible;
}

.elementor-widget-sea-advanced-button .sea-btn--expand::before {
	content: '';
	position: absolute;
	left: 0; top: 0; bottom: 0;
	width: var(--sea-btn-circle-d, 56px);
	border-radius: 100px;
	background: #6366f1;
	z-index: 0;
	transition: width var(--sea-btn-dur) ease;
}

.elementor-widget-sea-advanced-button .sea-btn--expand:hover::before {
	width: 100%;
}

.elementor-widget-sea-advanced-button .sea-btn--expand .sea-btn__icon-wrap {
	position: relative;
	z-index: 1;
	width: var(--sea-btn-circle-d, 56px);
	height: var(--sea-btn-circle-d, 56px);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.elementor-widget-sea-advanced-button .sea-btn--expand .sea-btn__label {
	position: relative;
	z-index: 1;
	padding-right: 20px;
	transition: color var(--sea-btn-dur) ease;
}

/* ─ Pill Slide (icon bubble slides side to side) ───────────────────────── */
.elementor-widget-sea-advanced-button .sea-btn--pill-slide {
	--sea-pill-dx:     0px;
	--sea-pill-lbl-dx: 0px;

	display: inline-flex;
	align-items: center;
	padding: 4px;
	gap: 12px;
	overflow: hidden;
}

.elementor-widget-sea-advanced-button .sea-btn--pill-slide .sea-btn__label {
	padding: 10px 12px;
	transition: transform var(--sea-btn-dur) ease;
}

.elementor-widget-sea-advanced-button .sea-btn--pill-slide .sea-btn__icon-pill {
	width: var(--sea-btn-pill-d, 48px);
	height: var(--sea-btn-pill-d, 48px);
	border-radius: 50%;
	background: rgba(255,255,255,0.15);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	box-sizing: border-box;
	/* Transparent border at rest so size stays constant; colour fades in on hover */
	border: var(--sea-pill-border-width, 2px) solid transparent;
	transition:
		transform        var(--sea-btn-dur) ease,
		background-color var(--sea-btn-dur) ease,
		border-color     var(--sea-btn-dur) ease;
}

.elementor-widget-sea-advanced-button .sea-btn--pill-slide:hover .sea-btn__icon-pill {
	transform: translateX(var(--sea-pill-dx, 0px));
	border-color: var(--sea-pill-border-color, rgba(255, 255, 255, 0.65));
}

.elementor-widget-sea-advanced-button .sea-btn--pill-slide:hover .sea-btn__label {
	transform: translateX(var(--sea-pill-lbl-dx, 0px));
}

/* ─ Orbit (text orbits around circle on hover) ──────────────────────────── */
.elementor-widget-sea-advanced-button .sea-btn--orbit {
	width:  var(--sea-btn-circle-d, 80px);
	height: var(--sea-btn-circle-d, 80px);
	padding: 0;
	border-radius: 50%;
	overflow: visible;
}

.elementor-widget-sea-advanced-button .sea-btn--orbit .sea-btn__icon-wrap {
	width:  100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
}

/* Label is hidden at rest — JS reads it, then hides */
.elementor-widget-sea-advanced-button .sea-btn__orbit-src {
	position: absolute;
	width: 1px; height: 1px;
	overflow: hidden;
	clip: rect(0,0,0,0);
	white-space: nowrap;
}

/* Ring added by JS — wraps all orbit characters */
.elementor-widget-sea-advanced-button .sea-btn__orbit-ring {
	position: absolute;
	inset: 0;
	border-radius: 50%;
	pointer-events: none;
	opacity: 0;
	transform-origin: 50% 50%;
	transition: opacity var(--sea-btn-dur) ease;
	animation: sea-orbit-spin 7s linear infinite;
	animation-play-state: paused;
}

.elementor-widget-sea-advanced-button .sea-btn--orbit:hover .sea-btn__orbit-ring {
	opacity: 1;
	animation-play-state: running;
}

@keyframes sea-orbit-spin {
	to { transform: rotate(360deg); }
}

/* Individual characters inside the ring */
.elementor-widget-sea-advanced-button .sea-btn__orbit-char {
	position: absolute;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0;
	text-transform: uppercase;
	color: inherit;
	line-height: 1;
}

/* ── Stack Cards Widget ───────────────────────────────────────────────────── */
.sea-stack {
	--stack-dx:  22px;
	--stack-dy:   8px;
	--stack-rot:  3.5deg;

	position: relative;
	width: 380px;
	max-width: 100%;
}

/* Spacer that gives the container its height (based on the front card) */
.sea-stack::before {
	content: '';
	display: block;
	width: 100%;
	aspect-ratio: 3/4;  /* matches default card ratio; overridden by inline style if needed */
	pointer-events: none;
}

.sea-stack__card {
	position: absolute;
	inset: 0;
	border-radius: 12px;
	overflow: hidden;
	will-change: transform;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	/* aspect-ratio set by Elementor control */
	aspect-ratio: 3/4;
}

/* Image fills the card */
.sea-stack__img {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

/* Optional colour overlay */
.sea-stack__img::after {
	content: '';
	position: absolute;
	inset: 0;
	pointer-events: none;
}

/* Bottom label */
.sea-stack__label {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 10px 16px;
	background: rgba(15, 15, 15, 0.85);
	color: #fff;
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	-webkit-backdrop-filter: blur(6px);
	backdrop-filter: blur(6px);
}

/* ── Client Testimonial Widget ────────────────────────────────────────────── */
.sea-testimonial {
	--sea-tper:     1.55;
	--sea-tgap:     24px;
	--sea-tinactive: 0.35;
}

.sea-testimonial__viewport {
	overflow: hidden;
}

.sea-testimonial__track {
	display: flex;
	gap: var(--sea-tgap, 24px);
	will-change: transform;
}

/* ─ Card ─ */
.sea-tcard {
	flex: 0 0 calc(
		(100% - (var(--sea-tper, 1.55) - 1) * var(--sea-tgap, 24px))
		/ var(--sea-tper, 1.55)
	);
	min-width: 0;
	display: flex;
	flex-direction: column;
	background: #fff;
	border: 1px solid #e2e8f0;
	border-radius: 4px;
	overflow: hidden;
	opacity: var(--sea-tinactive, 0.35);
	transition: opacity 0.4s ease;
}

.sea-tcard.is-active {
	opacity: 1;
}

/* ─ Body ─ */
.sea-tcard__body {
	padding: 28px 28px 24px;
	flex: 1;
	display: flex;
	flex-direction: column;
}

/* Top meta row: avatar + counter */
.sea-tcard__meta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 24px;
}

.sea-tcard__avatar {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	object-fit: cover;
	display: block;
}

.sea-tcard__counter {
	font-size: 0.8rem;
	color: #94a3b8;
	font-variant-numeric: tabular-nums;
	letter-spacing: 0.04em;
}

/* Quote mark */
.sea-tcard__quote-mark {
	font-size: 2rem;
	line-height: 1;
	color: #1e293b;
	margin: 0 0 12px;
	letter-spacing: -0.04em;
}

/* Quote text */
.sea-tcard__quote {
	font-size: 1.1rem;
	font-weight: 500;
	color: #0f172a;
	line-height: 1.55;
	margin: 0 0 auto;
	padding: 0;
	border: none;
}

/* Author section */
.sea-tcard__author {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-top: 28px;
}

.sea-tcard__logo {
	height: 24px;
	width: auto;
	display: block;
	object-fit: contain;
	flex-shrink: 0;
}

.sea-tcard__author-info {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.sea-tcard__name {
	font-size: 0.9rem;
	font-weight: 600;
	color: #0f172a;
	display: block;
}

.sea-tcard__role {
	font-size: 0.8rem;
	color: #64748b;
	display: block;
}

/* ─ Footer ─ */
.sea-tcard__footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 16px 28px;
	border-top: 1px solid #e2e8f0;
	flex-shrink: 0;
}

.sea-tcard__cta {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 0.875rem;
	color: #475569;
	text-decoration: none !important;
	transition: color 0.15s ease;
}

.sea-tcard__cta:hover {
	color: #0f172a;
}

.sea-tcard__cta-icon {
	width: 14px;
	height: 14px;
	flex-shrink: 0;
	fill: none !important;
	stroke: currentColor !important;
	/* Resting state: natural arrow direction */
	transform: rotate(0deg);
	transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Hover: tilts 45° clockwise */
.sea-tcard__cta:hover .sea-tcard__cta-icon {
	transform: rotate(45deg);
}

/* Navigation buttons — always on the right, only visible on the active card */
.sea-tcard__nav {
	display: flex;
	gap: 8px;
	margin-left: auto;   /* anchors to right whether or not CTA is present */
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.3s ease;
}

.sea-tcard.is-active .sea-tcard__nav {
	opacity: 1;
	pointer-events: auto;
}

/* Clone cards (used for infinite loop) — never interactive */
.sea-tcard--clone {
	pointer-events: none;
}

.sea-tcard__prev,
.sea-tcard__next {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	border: none;
	background: #1e293b;
	color: #fff !important;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	transition: background-color 0.2s ease, opacity 0.2s ease;
}

.sea-tcard__prev svg,
.sea-tcard__next svg {
	width: 18px !important;
	height: 18px !important;
	min-width: 18px !important;
	flex-shrink: 0 !important;
	pointer-events: none;
	fill: none !important;
	stroke: #fff !important;
	display: block !important;
}

.sea-tcard__prev:hover,
.sea-tcard__next:hover {
	background: #334155;
}

.sea-tcard__prev:disabled,
.sea-tcard__next:disabled {
	opacity: 0.35;
	cursor: default;
}

/* ─ Case Study layout ─ */
.sea-tcard--cs {
	flex-direction: row;      /* image left, content right */
	align-items: stretch;
}

.sea-tcard--cs .sea-tcard__cs-image {
	width: 42%;
	flex-shrink: 0;
	overflow: hidden;
}

.sea-tcard--cs .sea-tcard__cs-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* Body is a column; content gets padding, footer handles its own via negative margins */
.sea-tcard--cs .sea-tcard__body {
	padding: 28px;
	gap: 0;
	display: flex;
	flex-direction: column;
	flex: 1;
	min-width: 0;
}

/* Footer inside body: negative side margins flush it to card edges, margin-top auto pushes it to bottom */
.sea-tcard--cs .sea-tcard__footer {
	margin: auto -28px -28px;
}

.sea-tcard__cs-meta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 16px;
	gap: 12px;
}

.sea-tcard__cs-tags {
	font-size: 0.78rem;
	color: #64748b;
	line-height: 1.4;
	flex: 1;
	min-width: 0;
}

.sea-tcard__cs-title {
	font-size: 1.35rem;
	font-weight: 700;
	color: #0f172a;
	line-height: 1.3;
	margin: 0 0 16px;
}

.sea-tcard__cs-desc {
	font-size: 0.9rem;
	color: #475569;
	line-height: 1.65;
	margin: 0 0 auto;
	flex: 1;
}


/* ── FAQ Widget ───────────────────────────────────────────────────────────── */
.sea-faq__list {
	border-top: 1px solid #e2e8f0;
	border-top-style: solid;
}

.sea-faq__item {
	border-bottom: 1px solid #e2e8f0;
	border-bottom-style: solid;
}

/* Question row */
.sea-faq__btn {
	display: flex;
	align-items: center;
	width: 100%;
	padding: 22px 0;
	background: transparent;
	border: none;
	cursor: pointer;
	gap: 20px;
	text-align: left;
}

.sea-faq__num {
	font-size: 0.72rem;
	color: #94a3b8;
	letter-spacing: 0.04em;
	min-width: 22px;
	flex-shrink: 0;
	line-height: 1;
}

.sea-faq__question {
	flex: 1;
	font-size: 1rem;
	font-weight: 600;
	color: #1e293b;
	line-height: 1.4;
	transition: color 0.15s ease;
}

/* ─ Icon: "+" rotates 45° to become "×" on open ─ */
.sea-faq__icon {
	font-size: 20px;
	line-height: 1;
	color: #c0392b;
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), color 0.2s ease;
	-webkit-user-select: none;
	user-select: none;
}

.sea-faq__item.is-open .sea-faq__icon {
	transform: rotate(45deg);
}

/* Answer */
.sea-faq__answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.sea-faq__answer-inner {
	padding-bottom: 20px;
	color: #64748b;
	font-size: 0.95rem;
	line-height: 1.7;
}

.sea-faq__answer-inner p:last-child {
	margin-bottom: 0;
}


/* ── Advanced Nav Widget ──────────────────────────────────────────────────── */

/* Body scroll-lock when mobile menu is open */
.san-body-lock {
	overflow: hidden !important;
}

/* ─ Root nav wrapper ─ */
.elementor-widget-sea-advanced-nav .san-nav {
	position: relative;
	width: 100%;
	font-family: inherit;
	z-index: 100;
}

/* ─ Top bar ─ */
.elementor-widget-sea-advanced-nav .san-nav__bar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 0 32px;
	height: 68px;
	position: relative;
	z-index: 101;
}

/* ─ Logo ─ */
.elementor-widget-sea-advanced-nav .san-logo {
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 1;
	order: 2;
	text-decoration: none !important;
	color: inherit;
}

.elementor-widget-sea-advanced-nav .san-logo img {
	display: block;
	height: auto;
	max-height: 44px;
	width: auto;
	transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
	will-change: transform;
}

/* Hero state — logo scaled up at page top, shrinks on scroll via JS san-nav--hero class */
.elementor-widget-sea-advanced-nav .san-nav.san-nav--hero .san-logo img {
	transform: scale(1.3);
}

.elementor-widget-sea-advanced-nav .san-logo__text {
	font-size: 1.1rem;
	font-weight: 700;
	color: #1a1a1a;
}

/* ─ Desktop link list ─ */
.elementor-widget-sea-advanced-nav .san-links {
	display: flex;
	align-items: center;
	gap: 4px;
	list-style: none;
	margin: 0;
	padding: 0;
	flex: 1;
	order: 1;
	justify-content: flex-start;
}

.elementor-widget-sea-advanced-nav .san-item {
	position: static;
}

.elementor-widget-sea-advanced-nav .san-nav__link,
.elementor-widget-sea-advanced-nav .san-trigger {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	padding: 6px 12px;
	background: transparent;
	border: none;
	cursor: pointer;
	font-size: 0.875rem;
	font-weight: 500;
	color: #1a1a1a;
	text-decoration: none !important;
	line-height: 1;
	white-space: nowrap;
	transition: color 0.15s ease;
}

/* No special highlight on active trigger — the border divider does the job */

.elementor-widget-sea-advanced-nav .san-chevron {
	width: 10px;
	height: 6px;
	flex-shrink: 0;
	transition: transform 0.2s ease;
	stroke: currentColor;
	fill: none;
}

.elementor-widget-sea-advanced-nav .san-trigger[aria-expanded="true"] .san-chevron {
	transform: rotate(180deg);
}

/* ─ Actions (CTA + hamburger) ─ */
.elementor-widget-sea-advanced-nav .san-actions {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 12px;
	flex: 1;
	order: 3;
}

/* ─ CTA pill ─ */
.elementor-widget-sea-advanced-nav .san-cta {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 18px;
	background: #1a1a1a;
	color: #ffffff !important;
	text-decoration: none !important;
	border-radius: 100px;
	font-size: 0.875rem;
	font-weight: 500;
	line-height: 1;
	white-space: nowrap;
	transition: opacity 0.15s ease;
}

.elementor-widget-sea-advanced-nav .san-cta:hover {
	opacity: 0.8;
}

@keyframes san-dot-pulse {
	0% {
		transform: scale(1);
		opacity: 0.65;
	}
	70% {
		opacity: 0;
	}
	100% {
		transform: scale(2.8);
		opacity: 0;
	}
}

.elementor-widget-sea-advanced-nav .san-cta__dot {
	display: inline-block;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #c87941;
	flex-shrink: 0;
	position: relative;
}

.elementor-widget-sea-advanced-nav .san-cta__dot::before {
	content: '';
	position: absolute;
	inset: 0;
	border-radius: 50%;
	background: #c87941;
	animation: san-dot-pulse 2s ease-out infinite;
	pointer-events: none;
}

/* ─ Hamburger ─ */
.elementor-widget-sea-advanced-nav .san-hamburger {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 36px;
	height: 36px;
	padding: 6px;
	background: transparent;
	border: none;
	cursor: pointer;
}

.elementor-widget-sea-advanced-nav .san-hamburger__bar {
	display: block;
	width: 22px;
	height: 2px;
	background: #1a1a1a;
	border-radius: 2px;
	transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1),
	            transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Hamburger → × when mobile menu is open */
.elementor-widget-sea-advanced-nav .san-hamburger[aria-expanded="true"] .san-hamburger__bar:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}

.elementor-widget-sea-advanced-nav .san-hamburger[aria-expanded="true"] .san-hamburger__bar:nth-child(2) {
	opacity: 0;
	transform: scaleX(0);
}

.elementor-widget-sea-advanced-nav .san-hamburger[aria-expanded="true"] .san-hamburger__bar:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

/* ─ Info bar (inside the mega menu, full-width strip at the top) ─ */
.elementor-widget-sea-advanced-nav .san-infobar {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 9px 32px;
	background: transparent;
	border-bottom: 1px solid rgba(0,0,0,0.07);
}

.elementor-widget-sea-advanced-nav .san-infobar__label {
	font-size: 0.68rem;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #c87941;
	white-space: nowrap;
	display: flex;
	align-items: center;
	gap: 6px;
}

/* Small square before the label (matches the demo's orange square icon) */
.elementor-widget-sea-advanced-nav .san-infobar__label::before {
	content: '';
	display: inline-block;
	width: 8px;
	height: 8px;
	background: #c87941;
	flex-shrink: 0;
}

.elementor-widget-sea-advanced-nav .san-infobar__text {
	font-size: 0.8rem;
	color: #6b6b6b;
}

/* ─ Panels (mega + dropdown) — shared ─ */
.elementor-widget-sea-advanced-nav .san-panel {
	position: absolute;
	left: 50%;
	right: auto;
	top: 100%;
	z-index: 99;
	width: 100%;
	opacity: 0;
	pointer-events: none;
	transform: translateX(-50%) translateY(-6px);
	transition: opacity 0.2s ease, transform 0.2s ease;
}

.elementor-widget-sea-advanced-nav .san-panel.is-open {
	opacity: 1;
	pointer-events: auto;
	transform: translateX(-50%) translateY(0);
}

/* ─ Mega menu ─ */
.elementor-widget-sea-advanced-nav .san-mega {
	background: #ffffff;
	border-top: 1px solid rgba(0,0,0,0.15);
	box-shadow: 0 12px 40px rgba(0,0,0,0.10);
}

/* Inner wrap — constrained width + centered; background stays full-width on san-mega */
.elementor-widget-sea-advanced-nav .san-mega__wrap {
	width: 100%;
	margin-left: auto;
	margin-right: auto;
}

.elementor-widget-sea-advanced-nav .san-mega__inner {
	display: grid;
	grid-template-columns: 1fr 2.5fr 1.2fr;
}

/* Prevent any column from overflowing its grid track */
.elementor-widget-sea-advanced-nav .san-mega__cats,
.elementor-widget-sea-advanced-nav .san-mega__svcs,
.elementor-widget-sea-advanced-nav .san-mega__cards {
	min-width: 0;
	overflow: hidden;
}

/* Left: category column */
.elementor-widget-sea-advanced-nav .san-mega__cats {
	display: flex;
	flex-direction: column;
	padding: 32px 0 15px 32px;
	gap: 5px;
	border-right: 1px solid rgba(0,0,0,0.07);
}

.elementor-widget-sea-advanced-nav .san-cat {
	position: relative;
}

.elementor-widget-sea-advanced-nav .san-cat__btn {
	display: inline-flex;
	align-items: baseline;
	gap: 4px;
	padding: 7px 0 8px 0;
	background: transparent;
	border: none;
	cursor: pointer;
	font-size: 0.95rem;
	font-weight: 400;
	color: #6b6b6b;
	text-align: left;
	width: fit-content;
	max-width: 100%;
	position: relative;
	transition: color 0.15s ease;
}

/* Left-to-right underline */
.elementor-widget-sea-advanced-nav .san-cat__btn::after {
	content: '';
	position: absolute;
	bottom: 3px;
	left: 0;
	height: 1px;
	width: 0;
	background: currentColor;
	transition: width 0.25s ease;
}

.elementor-widget-sea-advanced-nav .san-cat__btn:hover {
	color: #1a1a1a;
}

.elementor-widget-sea-advanced-nav .san-cat.is-active .san-cat__btn {
	color: #1a1a1a;
	font-weight: 600;
}

.elementor-widget-sea-advanced-nav .san-cat.is-active .san-cat__btn::after {
	width: 100%;
}

.elementor-widget-sea-advanced-nav .san-cat__count {
	font-size: 0.65rem;
	color: #b0a898;
	font-weight: 400;
	vertical-align: super;
}

/* Middle: services grid */
.elementor-widget-sea-advanced-nav .san-mega__svcs {
	position: relative;
	padding: 28px 24px 15px 32px;
}

.elementor-widget-sea-advanced-nav .san-svcs-panel {
	display: none;
	grid-template-columns: 1fr 1fr;
	gap: 2px 16px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.elementor-widget-sea-advanced-nav .san-svcs-panel.is-active {
	display: grid;
}

.elementor-widget-sea-advanced-nav .san-svc__link {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 11px 0;
	text-decoration: none !important;
	transition: opacity 0.15s ease;
}

.elementor-widget-sea-advanced-nav .san-svc__link:hover .san-svc__name {
	color: #c87941 !important;
}

.elementor-widget-sea-advanced-nav .san-svc__arrow {
	width: 12px;
	height: 12px;
	flex-shrink: 0;
	color: #c87941;        /* currentColor on the path resolves here */
	stroke: currentColor;  /* explicit cascade in case theme resets it */
	fill: none;
	transition: transform 0.2s ease;
}

.elementor-widget-sea-advanced-nav .san-svc__link:hover .san-svc__arrow {
	transform: rotate(45deg);
	color: #c87941;
}

.elementor-widget-sea-advanced-nav .san-svc__name {
	font-size: 0.85rem;
	color: #1a1a1a;
	flex: 1;
	min-width: 0;
}

/* Inner text span — underline animates only under the text characters */
.elementor-widget-sea-advanced-nav .san-svc__text {
	display: inline-block;
	position: relative;
}

.elementor-widget-sea-advanced-nav .san-svc__text::after {
	content: '';
	position: absolute;
	bottom: -1px;
	left: 0;
	height: 1px;
	width: 0;
	background: currentColor;
	transition: width 0.25s ease;
}

.elementor-widget-sea-advanced-nav .san-svc__link:hover .san-svc__text::after {
	width: 100%;
	background: #c87941;
}

.elementor-widget-sea-advanced-nav .san-svc__price {
	font-size: 0.78rem;
	color: #8a8078;
	white-space: nowrap;
	flex-shrink: 0;
}

/* Right: cards column */
.elementor-widget-sea-advanced-nav .san-mega__cards {
	display: flex;
	flex-direction: column;
	gap: 0;
	border-left: 1px solid rgba(0,0,0,0.07);
	padding-bottom: 15px;
}

/* Featured card */
.elementor-widget-sea-advanced-nav .san-feat {
	padding: 24px 24px 20px;
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

/* Per-category featured cards: hide all, reveal only the active one */
.elementor-widget-sea-advanced-nav .san-feat[data-feat-idx] {
	display: none;
}
.elementor-widget-sea-advanced-nav .san-feat[data-feat-idx].is-active {
	display: flex;
}

.elementor-widget-sea-advanced-nav .san-feat__img-wrap {
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 9;
	border-radius: 8px;
	overflow: hidden;
	background: #e8e4de;
	margin-bottom: 4px;
}

.elementor-widget-sea-advanced-nav .san-feat__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.elementor-widget-sea-advanced-nav .san-feat__overlay-label {
	position: absolute;
	inset: 0;
	display: none;
	align-items: flex-end;
	padding: 10px 12px;
	font-size: 0.68rem;
	color: rgba(255,255,255,0.7);
	letter-spacing: 0.04em;
	background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 60%);
	pointer-events: none;
}

.elementor-widget-sea-advanced-nav .san-feat__img-wrap:has(img) .san-feat__overlay-label {
	display: flex;
}

.elementor-widget-sea-advanced-nav .san-feat__tag {
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.09em;
	text-transform: uppercase;
	color: #b0a898;
	margin: 0;
}

.elementor-widget-sea-advanced-nav .san-feat__title {
	font-size: 0.9rem;
	font-weight: 700;
	color: #1a1a1a;
	margin: 0;
	line-height: 1.3;
}

.elementor-widget-sea-advanced-nav .san-feat__desc {
	font-size: 0.78rem;
	color: #6b6b6b;
	line-height: 1.5;
	margin: 0;
}

.elementor-widget-sea-advanced-nav .san-feat__cta {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	font-size: 0.82rem;
	font-weight: 600;
	color: #c87941;
	text-decoration: none !important;
	margin-top: 4px;
}

/* Arrow Slide — matches Advanced Button Arrow Slide preset */
.elementor-widget-sea-advanced-nav .san-feat__cta .san-cta-arrows,
.elementor-widget-sea-advanced-nav .san-trial__cta .san-cta-arrows {
	display: inline-grid;
	overflow: hidden;
}

.elementor-widget-sea-advanced-nav .san-feat__cta .san-cta-arrow--a,
.elementor-widget-sea-advanced-nav .san-feat__cta .san-cta-arrow--b,
.elementor-widget-sea-advanced-nav .san-trial__cta .san-cta-arrow--a,
.elementor-widget-sea-advanced-nav .san-trial__cta .san-cta-arrow--b {
	grid-area: 1 / 1;
	transition: transform 0.25s ease;
}

/* B starts hidden to the left */
.elementor-widget-sea-advanced-nav .san-feat__cta .san-cta-arrow--b,
.elementor-widget-sea-advanced-nav .san-trial__cta .san-cta-arrow--b {
	transform: translateX(-120%);
}

/* On hover: A exits right, B enters from left */
.elementor-widget-sea-advanced-nav .san-feat__cta:hover .san-cta-arrow--a,
.elementor-widget-sea-advanced-nav .san-trial__cta:hover .san-cta-arrow--a {
	transform: translateX(120%);
}
.elementor-widget-sea-advanced-nav .san-feat__cta:hover .san-cta-arrow--b,
.elementor-widget-sea-advanced-nav .san-trial__cta:hover .san-cta-arrow--b {
	transform: translateX(0);
}

/* Trial card */
.elementor-widget-sea-advanced-nav .san-trial {
	margin: 0 24px 20px;
	padding: 16px 16px 20px;
	border: 1px solid rgba(0,0,0,0.10);
	background: #f0ede8;
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.elementor-widget-sea-advanced-nav .san-trial__badge {
	font-size: 0.65rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #c87941;
}

.elementor-widget-sea-advanced-nav .san-trial__heading {
	font-size: 0.88rem;
	font-weight: 700;
	color: #1a1a1a;
	margin: 2px 0 0;
}

.elementor-widget-sea-advanced-nav .san-trial__cta {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	font-size: 0.82rem;
	font-weight: 600;
	color: #1a1a1a;
	text-decoration: none !important;
	margin-top: 4px;
}

/* ─ Case studies mega menu ─ */

.elementor-widget-sea-advanced-nav .san-cs-nav-item {
	position: relative;
}

.elementor-widget-sea-advanced-nav .san-cs-nav__link {
	display: inline-block;
	padding: 7px 0 8px;
	font-size: 0.95rem;
	font-weight: 400;
	color: #6b6b6b;
	text-decoration: none !important;
	position: relative;
	transition: color 0.15s ease;
}

.elementor-widget-sea-advanced-nav .san-cs-nav__link:hover {
	color: #1a1a1a;
}

.elementor-widget-sea-advanced-nav .san-cs-nav-item.is-active .san-cs-nav__link {
	color: #1a1a1a;
	font-weight: 600;
}

.elementor-widget-sea-advanced-nav .san-cs-section-lbl {
	font-size: 0.68rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #b0a898;
	margin: 0 0 12px;
}

.elementor-widget-sea-advanced-nav .san-cs-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 2px 16px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.elementor-widget-sea-advanced-nav .san-cs-item {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 11px 0;
	text-decoration: none !important;
	transition: opacity 0.15s ease;
}

.elementor-widget-sea-advanced-nav .san-cs-item:hover .san-cs-item__cat {
	color: #c87941 !important;
}

.elementor-widget-sea-advanced-nav .san-cs-item:hover .san-svc__arrow {
	transform: rotate(45deg);
}

.elementor-widget-sea-advanced-nav .san-cs-item__cat {
	font-size: 0.85rem;
	color: #1a1a1a;
	flex: 1;
	min-width: 0;
	transition: color 0.15s ease;
}

.elementor-widget-sea-advanced-nav .san-cs-item__text {
	display: inline-block;
	position: relative;
}

.elementor-widget-sea-advanced-nav .san-cs-item__text::after {
	content: '';
	position: absolute;
	bottom: -1px;
	left: 0;
	height: 1px;
	width: 0;
	background: currentColor;
	transition: width 0.25s ease;
}

.elementor-widget-sea-advanced-nav .san-cs-item:hover .san-cs-item__text::after {
	width: 100%;
	background: #c87941;
}

.elementor-widget-sea-advanced-nav .san-cs-item__company {
	font-size: 0.78rem;
	color: #8a8078;
	white-space: nowrap;
	flex-shrink: 0;
}

/* Right column of case studies mega — vertically center the trial card */
.elementor-widget-sea-advanced-nav .san-cs-mega .san-mega__cards {
	justify-content: center;
	align-self: stretch;
}

.elementor-widget-sea-advanced-nav .san-cs-mega .san-mega__cards .san-trial {
	margin: auto 24px;
}

/* ─ Backdrop ─ */
.san-backdrop {
	position: fixed;
	inset: 0;
	background: transparent;
	z-index: 98;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.25s ease;
}

.san-backdrop.is-visible {
	opacity: 1;
	pointer-events: auto;
}

/* ─ Mobile overlay ─ */
.san-mobile {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 200;
	overflow: hidden;
	pointer-events: none;
	visibility: hidden;
	/* Delay hiding until panel finishes sliding out (matches panel transition duration) */
	transition: visibility 0s linear 0.3s;
}

.san-mobile.is-open {
	pointer-events: auto;
	visibility: visible;
	transition: visibility 0s linear 0s;
}

.san-mobile__panel {
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	max-width: 480px;
	height: 100%;
	background: #f8f4f5bd;
	backdrop-filter: blur(20px) saturate(140%);
	-webkit-backdrop-filter: blur(20px) saturate(140%);
	display: flex;
	flex-direction: column;
	overflow: hidden;
	transform: translateX(100%);
	transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.san-mobile.is-open .san-mobile__panel {
	transform: translateX(0);
}

/* Mobile header */
.san-mobile__head {
	position: relative;
	/* full height = infobar offset + nav bar height */
	height: calc(var(--san-head-offset, 0px) + var(--san-head-h, 68px));
	flex-shrink: 0;
	border-bottom: 1px solid rgba(0,0,0,0.07);
}

/* Logo in mobile panel header — only on screens narrower than 479px */
.san-mobile__logo {
	position: absolute;
	left: 20px;
	top: calc(var(--san-head-offset, 0px) + var(--san-head-h, 68px) * 0.5);
	transform: translateY(-50%);
	display: none;
	align-items: center;
	text-decoration: none !important;
	color: inherit;
}

@media (max-width: 478px) {
	.san-mobile__logo {
		display: flex;
	}
}

.san-mobile__logo img {
	display: block;
	height: auto;
	max-height: 36px;
	width: auto;
	transform: scale(1.2);
	transform-origin: left center;
}

.san-mobile__close {
	position: absolute;
	/* right matches nav bar padding so × sits over the hamburger horizontally */
	right: 20px;
	/* top = offset + (navH / 2) - (buttonH / 2) — centers 36 px button in the nav bar row */
	top: calc(var(--san-head-offset, 0px) + var(--san-head-h, 68px) * 0.5 - 18px);
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	background: transparent;
	border: 1px solid rgba(0,0,0,0.12);
	border-radius: 50%;
	cursor: pointer;
	color: #1a1a1a;
	transition: background 0.15s ease;
}

.san-mobile__close:hover {
	background: rgba(0,0,0,0.06);
}

.san-mobile__close svg {
	width: 18px;
	height: 18px;
	stroke: currentColor;
	fill: none;
	display: block;
	min-width: 18px !important;
}

/* Mobile scrollable body */
.san-mobile__body {
	flex: 1 1 0;
	min-height: 0;
	overflow-y: auto;
	padding: 8px 0 16px;
	-webkit-overflow-scrolling: touch;
}

.san-mobile__section-lbl {
	font-size: 0.68rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #595857;
	padding: 20px 24px 6px;
	margin: 0;
}

/* Accordion item */
.san-mob-acc {
	border-bottom: 1px solid rgba(0,0,0,0.07);
}

.san-mob-acc__trigger {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	padding: 13px 24px;
	background: transparent !important;
	border: none !important;
	/* Override reset.css 'transition: all .3s' — only animate what we control */
	transition: background 0.2s ease, color 0.2s ease !important;
	cursor: pointer;
	text-align: left;
	gap: 12px;
	color: #1a1a1a;
	outline: none;
}

/* All interaction states: lock out reset.css border/background bleeding */
.san-mob-acc__trigger:hover,
.san-mob-acc__trigger:focus,
.san-mob-acc__trigger:focus-visible,
.san-mob-acc__trigger:active {
	background: transparent !important;
	border: none !important;
	color: #1a1a1a;
	outline: none;
}

.san-mob-acc__label {
	font-size: 0.95rem;
	font-weight: 600;
	color: #1a1a1a;
}

.san-mob-acc__label sup {
	font-size: 0.62rem;
	color: #b0a898;
	font-weight: 400;
	vertical-align: super;
}

.san-mob-acc__icon {
	flex-shrink: 0;
	width: 20px;
	height: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.san-mob-acc__icon svg {
	width: 14px;
	height: 14px;
	display: block;
	stroke: currentColor;
	fill: none;
	min-width: 14px !important;
}

/* Plus/minus icon — smooth opacity crossfade between the two SVG paths */
.san-mob-acc__plus,
.san-mob-acc__minus {
	transition: opacity 0.25s ease;
}

.san-mob-acc__minus {
	opacity: 0;
}

.san-mob-acc.is-open .san-mob-acc__plus {
	opacity: 0;
}

.san-mob-acc.is-open .san-mob-acc__minus {
	opacity: 1;
}

/* Accordion body — max-height slide instead of display:none */
.san-mob-acc__body {
	list-style: none;
	margin: 0;
	padding: 0;
	overflow: hidden;
	max-height: 0;
	transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1),
	            padding   0.2s  ease;
}

.san-mob-acc.is-open .san-mob-acc__body {
	max-height: 480px;
	padding: 0 0 8px;
}

/* Active accordion trigger — all interaction states locked to brand color */
.san-mob-acc.is-open .san-mob-acc__trigger,
.san-mob-acc.is-open .san-mob-acc__trigger:hover,
.san-mob-acc.is-open .san-mob-acc__trigger:focus,
.san-mob-acc.is-open .san-mob-acc__trigger:focus-visible,
.san-mob-acc.is-open .san-mob-acc__trigger:active {
	background: #D8954A !important;
	border: none !important;
	color: #fff;
}

.san-mob-acc.is-open .san-mob-acc__label,
.san-mob-acc.is-open .san-mob-acc__label sup {
	color: #fff;
}

.san-mob-svc {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 9px 24px 9px 32px;
	text-decoration: none !important;
	color: #1a1a1a;
	font-size: 0.875rem;
	transition: background 0.12s ease;
}

.san-mob-svc:hover {
	background: rgba(0,0,0,0.04);
}

.san-mob-svc__price {
	font-size: 0.78rem;
	color: #8a8078;
	white-space: nowrap;
	flex-shrink: 0;
}

/* Case studies rows */
.san-mob-cs {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 11px 24px;
	text-decoration: none !important;
	color: #1a1a1a;
	font-size: 0.875rem;
	border-bottom: 1px solid rgba(0,0,0,0.07);
	transition: background 0.12s ease;
}

.san-mob-cs:hover {
	background: rgba(0,0,0,0.04);
}

.san-mob-cs__company {
	font-size: 0.78rem;
	color: #b0a898;
	flex-shrink: 0;
}

/* Explore links */
.san-mob-explore {
	display: flex;
	align-items: center;
	padding: 12px 24px;
	text-decoration: none !important;
	color: #1a1a1a;
	font-size: 0.95rem;
	font-weight: 500;
	border-bottom: 1px solid rgba(0,0,0,0.07);
	transition: background 0.12s ease;
}

.san-mob-explore:hover {
	background: rgba(0,0,0,0.04);
}

/* Mobile accordion service counts — teleported panel has no .elementor-widget-sea-advanced-nav ancestor */
.san-mob-acc__trigger .san-cat__count {
	font-size: 0.65rem;
	color: #b0a898;
	font-weight: 400;
	vertical-align: super;
}
.san-mob-acc.is-open .san-mob-acc__trigger .san-cat__count {
	color: rgba(255, 255, 255, 0.75);
}

/* Mobile explore count */
.san-mob-explore .san-cat__count {
	font-size: 0.65rem;
	font-weight: 400;
	vertical-align: super;
	color: #bf4500;
}

/* Mobile footer */
.san-mobile__foot {
	padding: 20px 24px 28px;
	border-top: 1px solid rgba(0,0,0,0.07);
	flex-shrink: 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.san-mob-cta {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 14px 28px;
	background: #1a1a1a;
	color: #fff !important;
	text-decoration: none !important;
	border-radius: 100px;
	font-size: 0.95rem;
	font-weight: 600;
	transition: opacity 0.15s ease;
}

.san-mob-cta:hover {
	opacity: 0.8;
}

.san-mob-tagline {
	text-align: center;
	font-size: 0.75rem;
	color: #3d3b38;
	margin: 0;
}

/* ─ Responsive — hide desktop links, show hamburger ─ */
@media (max-width: 900px) {
	/* Clip scrollbar-compensation padding-right that persists when toggling
	   DevTools responsive mode without a page reload. Mega menus are already
	   display:none on mobile so overflow:hidden is safe here. */
	.elementor-widget-sea-advanced-nav {
		overflow-x: hidden;
	}

	.elementor-widget-sea-advanced-nav .san-links {
		display: none;
	}

	.elementor-widget-sea-advanced-nav .san-cta {
		display: none !important;
	}

	.elementor-widget-sea-advanced-nav .san-hamburger {
		display: flex;
	}

	.elementor-widget-sea-advanced-nav .san-mega,
	.elementor-widget-sea-advanced-nav .san-cs-drop {
		display: none !important;
	}

	.elementor-widget-sea-advanced-nav .san-nav__bar {
		padding: 0 20px;
	}

	/* Logo left, hamburger right — collapse flex growth so space-between takes effect */
	.elementor-widget-sea-advanced-nav .san-logo {
		order: 1;
		flex: 0 0 auto;
		justify-content: flex-start;
	}

	.elementor-widget-sea-advanced-nav .san-actions {
		order: 2;
		flex: 0 0 auto;
		margin-left: auto;
	}

	.elementor-widget-sea-advanced-nav .san-infobar {
		padding: 6px 20px;
		flex-wrap: wrap;
		gap: 6px;
	}
}

@media (min-width: 901px) {
	.elementor-widget-sea-advanced-nav .san-hamburger {
		display: none !important;
	}

	.san-mobile {
		display: none !important;
	}
}
