/* ==========================================================================
   F12 Avada Elements - Design Tokens & Styles
   ========================================================================== */

:root {
	--f12-bg: hsl(210, 20%, 98%);
	--f12-fg: hsl(220, 30%, 12%);
	--f12-card: hsl(0, 0%, 100%);
	--f12-card-fg: hsl(220, 30%, 12%);
	--f12-primary: hsl(220, 60%, 20%);
	--f12-primary-fg: hsl(0, 0%, 100%);
	--f12-secondary: hsl(160, 70%, 42%);
	--f12-secondary-fg: hsl(0, 0%, 100%);
	--f12-muted: hsl(220, 14%, 92%);
	--f12-muted-fg: hsl(220, 10%, 46%);
	--f12-border: hsl(220, 14%, 88%);
	--f12-radius: 0.75rem;
	--f12-radius-lg: 1rem;
	--f12-shadow-card: 0 4px 24px -4px hsl(220 60% 12% / 0.08);
	--f12-shadow-card-hover: 0 12px 40px -8px hsl(220 60% 12% / 0.15);
	--f12-glow-accent: 0 0 40px hsl(160 70% 42% / 0.25);
	--f12-hero-bg: hsl(220, 60%, 12%);
	--f12-hero-fg: hsl(220, 14%, 96%);
	--f12-hero-muted: hsl(220, 14%, 72%);
	--f12-gradient-accent: linear-gradient(135deg, hsl(160, 70%, 42%), hsl(170, 80%, 38%));
	--f12-gradient-hero: linear-gradient(180deg, hsl(220, 60%, 12%) 0%, hsl(220, 50%, 18%) 100%);
	--f12-font: inherit;
	--f12-font-mono: ui-monospace, 'SFMono-Regular', monospace;
}

/* ==========================================================================
   Base
   ========================================================================== */

.f12-el {
	font-family: var(--f12-el-font, var(--f12-font));
	color: var(--f12-el-color, var(--f12-fg));
	box-sizing: border-box;
	line-height: 1.6;
}

.f12-el *,
.f12-el *::before,
.f12-el *::after {
	box-sizing: border-box;
}

.f12-el img {
	width: 100% !important;
	max-width: 100%;
	height: auto;
}

/* ==========================================================================
   Section Wrapper
   ========================================================================== */

.f12-section {
	padding: var(--f12-el-padding-top, 6rem) var(--f12-el-padding-right, 0) var(--f12-el-padding-bottom, 6rem) var(--f12-el-padding-left, 0);
	margin: var(--f12-el-margin-top, 0) var(--f12-el-margin-right, 0) var(--f12-el-margin-bottom, 0) var(--f12-el-margin-left, 0);
	background-color: var(--f12-el-bg, transparent);
}

.f12-section__inner {
	max-width: 72rem;
	margin: 0 auto;
	padding: 0 1.5rem;
}

.f12-section__inner--narrow {
	max-width: 48rem;
}

.f12-section__inner--medium {
	max-width: 64rem;
}

/* ==========================================================================
   Section Header
   ========================================================================== */

.f12-section-header {
	text-align: center;
	margin-bottom: 3rem;
}

.f12-section-header__label {
	display: inline-block;
	font-size: 0.75rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--f12-el-label-color, var(--f12-secondary));
}

.f12-section-header__title {
	margin: 0.75rem 0 var(--f12-el-title-mb, 0);
	font-size: var(--f12-el-title-size, 2rem);
	font-weight: 800;
	letter-spacing: -0.025em;
	color: var(--f12-el-title-color, var(--f12-fg));
	line-height: 1.2;
}

.f12-section-header__desc {
	margin: 1rem auto 0;
	max-width: 100%;
	font-size: 1.125rem;
	color: var(--f12-el-desc-color, var(--f12-muted-fg));
}

.f12-section-header__notice {
	margin: 0.75rem auto 0;
	max-width: 100%;
	font-size: 0.9rem;
	color: var(--f12-muted-fg);
	font-style: italic;
}

.f12-section-header__subdesc {
	margin: 0.75rem auto 0;
	max-width: 48rem;
	font-size: 1rem;
	color: var(--f12-el-desc-color, var(--f12-muted-fg));
}

@media (min-width: 768px) {
	.f12-section-header__title {
		font-size: var(--f12-el-title-size, 3rem);
	}
}

/* ==========================================================================
   FAQ Accordion
   ========================================================================== */

.f12-faq {
	background-color: var(--f12-el-bg, hsl(220, 14%, 92%, 0.5));
}

.f12-faq__list {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.f12-faq-item {
	border-radius: var(--f12-radius-lg);
	border: 1px solid var(--f12-border);
	background: var(--f12-card);
	padding: 0 1.5rem;
	box-shadow: var(--f12-shadow-card);
	overflow: hidden;
}

.f12-faq-item__trigger {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	padding: 1.25rem 0;
	background: none;
	border: none;
	cursor: pointer;
	text-align: left;
	font-size: 1rem;
	font-weight: 700;
	color: var(--f12-fg);
	font-family: var(--f12-font);
	line-height: 1.4;
}

.f12-faq-item__trigger:hover {
	color: var(--f12-secondary);
}

.f12-faq-item__icon {
	flex-shrink: 0;
	width: 1.25rem;
	height: 1.25rem;
	margin-left: 1rem;
	transition: transform 0.2s ease;
	color: var(--f12-muted-fg);
}

.f12-faq-item.is-open .f12-faq-item__icon {
	transform: rotate(180deg);
}

.f12-faq-item__content {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease, padding 0.3s ease;
}

.f12-faq-item.is-open .f12-faq-item__content {
	max-height: 500px;
}

.f12-faq-item__answer {
	padding: 0 0 1.25rem;
	font-size: 0.875rem;
	line-height: 1.7;
	color: var(--f12-muted-fg);
}

/* ==========================================================================
   Trust Bar
   ========================================================================== */

.f12-trust-bar {
	background-color: var(--f12-el-bg, hsl(220, 14%, 92%, 0.3));
	border-top: 1px solid var(--f12-border);
	border-bottom: 1px solid var(--f12-border);
	padding-top: var(--f12-el-padding-top, 2.5rem);
	padding-bottom: var(--f12-el-padding-bottom, 2.5rem);
}

.f12-trust-bar .f12-section__inner {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 0.75rem;
}

.f12-trust-bar__plugins {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 0.75rem;
}

.f12-trust-bar-item--plugin {
	display: inline-block;
	border-radius: 9999px;
	border: 1px solid var(--f12-border);
	background: var(--f12-card);
	padding: 0.5rem 1rem;
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--f12-fg);
	box-shadow: var(--f12-shadow-card);
}

.f12-trust-bar__points {
	margin-top: 2rem;
	display: grid;
	gap: 1rem;
}

@media (min-width: 640px) {
	.f12-trust-bar__points {
		grid-template-columns: repeat(3, 1fr);
	}
}

.f12-trust-bar-item--point {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
}

.f12-trust-bar-item--point .f12-trust-bar-item__icon {
	flex-shrink: 0;
	width: 1.25rem;
	height: 1.25rem;
	margin-top: 0.125rem;
	color: var(--f12-secondary);
}

.f12-trust-bar-item--point .f12-trust-bar-item__text {
	font-size: 0.875rem;
	color: var(--f12-muted-fg);
}

.f12-trust-bar__badges {
	margin-top: 1.5rem;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
}

.f12-trust-bar-item--badge {
	display: inline-block;
	border-radius: 0.25rem;
	border: 1px solid var(--f12-border);
	background: var(--f12-card);
	padding: 0.25rem 0.75rem;
	font-size: 0.75rem;
	font-family: var(--f12-font-mono);
	font-weight: 500;
	color: var(--f12-muted-fg);
}

/* ==========================================================================
   How It Works
   ========================================================================== */

.f12-how-it-works {
	background-color: var(--f12-el-bg, #ffffff);
}

.f12-how-it-works__steps {
	display: grid;
	gap: 2rem;
	margin-top: 4rem;
	counter-reset: f12-step;
}

@media (min-width: 768px) {
	.f12-how-it-works__steps {
		grid-template-columns: repeat(3, 1fr);
	}
}

.f12-how-it-works-step {
	position: relative;
	text-align: center;
	counter-increment: f12-step;
}

.f12-how-it-works-step__connector {
	display: none;
}

@media (min-width: 768px) {
	.f12-how-it-works-step__connector {
		display: block;
		position: absolute;
		right: 0;
		top: 3rem;
		width: 100%;
		height: 2px;
		background: var(--f12-border);
		transform: translateX(50%);
	}
}

.f12-how-it-works-step__icon-wrap {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 6rem;
	height: 6rem;
	margin: 0 auto 1rem;
	border-radius: var(--f12-radius-lg);
	border: 1px solid var(--f12-border);
	background: var(--f12-card);
	box-shadow: var(--f12-shadow-card);
}

.f12-how-it-works-step__icon-wrap svg {
	width: 2.5rem;
	height: 2.5rem;
	color: var(--f12-secondary);
}

.f12-how-it-works-step__number {
	position: absolute;
	top: -0.5rem;
	right: -0.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 1.75rem;
	height: 1.75rem;
	border-radius: 9999px;
	background: var(--f12-secondary);
	color: var(--f12-secondary-fg);
	font-size: 0.75rem;
	font-weight: 900;
}

.f12-how-it-works-step__number:not(.f12-how-it-works-step__number--custom)::before {
	content: counter(f12-step);
}

.f12-how-it-works-step:last-child .f12-how-it-works-step__connector {
	display: none !important;
}

.f12-how-it-works-step__title {
	font-size: 1.125rem;
	font-weight: 700;
	color: var(--f12-fg);
	margin: 0;
}

.f12-how-it-works-step__desc {
	margin: 0.5rem 0 0;
	font-size: 0.875rem;
	color: var(--f12-muted-fg);
}

/* ==========================================================================
   Features Grid
   ========================================================================== */

.f12-features-grid {
	background-color: var(--f12-el-bg, var(--f12-bg));
}

.f12-features-grid__grid {
	display: grid;
	gap: 1.5rem;
	margin-top: 4rem;
}

@media (min-width: 640px) {
	.f12-features-grid__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1024px) {
	.f12-features-grid__grid {
		grid-template-columns: repeat(4, 1fr);
	}
}

.f12-feature-card {
	border-radius: var(--f12-radius-lg);
	border: 1px solid var(--f12-border);
	background: var(--f12-card);
	padding: 1.5rem;
	box-shadow: var(--f12-shadow-card);
	transition: all 0.3s ease;
}

.f12-feature-card:hover {
	box-shadow: var(--f12-shadow-card-hover);
	transform: translateY(-4px);
}

.f12-feature-card__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 3rem;
	height: 3rem;
	margin-bottom: 1rem;
	border-radius: var(--f12-radius);
	background: hsl(160, 70%, 42%, 0.1);
	color: var(--f12-secondary);
	transition: all 0.3s ease;
}

.f12-feature-card:hover .f12-feature-card__icon {
	background: var(--f12-secondary);
	color: var(--f12-secondary-fg);
}

.f12-feature-card__icon svg {
	width: 1.5rem;
	height: 1.5rem;
}

.f12-feature-card__title {
	font-size: var(--f12-card-title-size, 1rem) !important;
	font-weight: 700;
	color: var(--f12-fg);
	margin: 0;
}

.f12-feature-card__desc {
	margin: 0.5rem 0 0;
	font-size: var(--f12-card-desc-size, 0.875rem) !important;
	line-height: 1.7;
	color: var(--f12-muted-fg);
}

/* ==========================================================================
   Form Plugins
   ========================================================================== */

.f12-form-plugins {
	background-color: var(--f12-el-bg, hsl(220, 14%, 92%, 0.5));
}

.f12-form-plugins__grid {
	display: grid;
	gap: 1rem;
	margin-top: 3rem;
}

@media (min-width: 640px) {
	.f12-form-plugins__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1024px) {
	.f12-form-plugins__grid {
		grid-template-columns: repeat(5, 1fr);
	}
}

.f12-form-plugin-card {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	border-radius: var(--f12-radius-lg);
	border: 1px solid var(--f12-border);
	background: var(--f12-card);
	padding: 1.5rem;
	box-shadow: var(--f12-shadow-card);
	transition: all 0.3s ease;
}

.f12-form-plugin-card:hover {
	box-shadow: var(--f12-shadow-card-hover);
	transform: translateY(-4px);
}

.f12-form-plugin-card__pro-badge {
	position: absolute;
	top: -0.5rem;
	right: -0.5rem;
	border-radius: 9999px;
	background: var(--f12-secondary);
	padding: 0.125rem 0.5rem;
	font-size: 0.625rem;
	font-weight: 700;
	color: var(--f12-secondary-fg);
	box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.f12-form-plugin-card__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 3.5rem;
	height: 3.5rem;
	margin: 0 auto 1rem;
	border-radius: var(--f12-radius);
	font-size: 1.5rem;
	font-weight: 900;
	color: var(--f12-card);
}

.f12-form-plugin-card__name {
	font-size: var(--f12-card-title-size, 0.875rem) !important;
	font-weight: 700;
	color: var(--f12-fg);
	margin: 0;
}

.f12-form-plugin-card__desc {
	margin: 0.25rem 0 0;
	font-size: var(--f12-card-desc-size, 0.75rem) !important;
	color: var(--f12-muted-fg);
}

.f12-form-plugin-card__availability {
	display: flex;
	gap: 0.75rem;
	margin-top: 0.75rem;
	font-size: 0.75rem;
}

.f12-form-plugin-card__avail-item {
	display: flex;
	align-items: center;
	gap: 0.25rem;
}

.f12-form-plugin-card__avail-item svg {
	width: 0.75rem;
	height: 0.75rem;
}

.f12-form-plugin-card__avail-item--yes svg {
	color: var(--f12-secondary);
}

.f12-form-plugin-card__avail-item--no svg {
	color: hsl(220, 10%, 46%, 0.4);
}

.f12-form-plugins__note {
	margin-top: 2rem;
	text-align: center;
	font-size: 0.875rem;
	color: var(--f12-muted-fg);
}

.f12-form-plugins__note strong {
	color: var(--f12-fg);
}

/* ==========================================================================
   Pro Features
   ========================================================================== */

.f12-pro-features {
	background: var(--f12-el-bg, var(--f12-gradient-hero));
	position: relative;
	overflow: hidden;
}

.f12-pro-features__pattern {
	position: absolute;
	inset: 0;
	opacity: 0.03;
	background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
	pointer-events: none;
}

.f12-pro-features .f12-section__inner {
	position: relative;
	z-index: 1;
}

.f12-pro-features .f12-section-header__label {
	display: inline-flex;
	align-items: center;
	gap: 0.375rem;
	border-radius: 9999px;
	background: hsl(160, 70%, 42%, 0.2);
	padding: 0.25rem 0.75rem;
	font-size: 0.875rem;
	font-weight: 700;
	color: var(--f12-secondary);
	text-transform: none;
	letter-spacing: 0;
}

.f12-pro-features .f12-section-header__title {
	color: var(--f12-el-title-color, var(--f12-hero-fg));
}

.f12-pro-features .f12-section-header__desc {
	color: var(--f12-el-desc-color, var(--f12-hero-muted));
}

.f12-pro-features__grid {
	display: grid;
	gap: 1.5rem;
	margin-top: 4rem;
}

@media (min-width: 640px) {
	.f12-pro-features__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1024px) {
	.f12-pro-features__grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

.f12-pro-feature-card {
	border-radius: var(--f12-radius-lg);
	border: 1px solid hsl(220, 14%, 72%, 0.2);
	background: hsl(220, 14%, 96%, 0.05);
	backdrop-filter: blur(4px);
	padding: 1.5rem;
	transition: all 0.3s ease;
}

.f12-pro-feature-card:hover {
	background: hsl(220, 14%, 96%, 0.1);
	transform: translateY(-4px);
}

.f12-pro-feature-card__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 3rem;
	height: 3rem;
	margin-bottom: 1rem;
	border-radius: var(--f12-radius);
	background: hsl(160, 70%, 42%, 0.2);
	color: var(--f12-secondary);
}

.f12-pro-feature-card__icon svg {
	width: 1.5rem;
	height: 1.5rem;
}

.f12-pro-feature-card__title {
	font-size: var(--f12-card-title-size, 1rem) !important;
	font-weight: 700;
	color: var(--f12-hero-fg);
	margin: 0;
}

.f12-pro-feature-card__desc {
	margin: 0.5rem 0 0;
	font-size: var(--f12-card-desc-size, 0.875rem) !important;
	line-height: 1.7;
	color: var(--f12-hero-muted);
}

/* ==========================================================================
   Showcase
   ========================================================================== */

.f12-showcase {
	background-color: var(--f12-el-bg, var(--f12-bg));
}

.f12-showcase__items {
	display: flex;
	flex-direction: column;
	gap: 5rem;
	margin-top: 4rem;
}

.f12-showcase-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 2.5rem;
}

@media (min-width: 1024px) {
	.f12-showcase-item {
		flex-direction: row;
	}

	.f12-showcase-item:nth-child(even) {
		flex-direction: row-reverse;
	}

	.f12-showcase-item--reversed {
		flex-direction: row-reverse;
	}

	.f12-showcase-item--reversed:nth-child(even) {
		flex-direction: row;
	}
}

/* Avada live builder wraps child elements, inherit flex layout */
[data-element-type="f12_showcase_item"] > .fusion-builder-child-element-content {
	display: flex !important;
	flex-direction: column;
	align-items: center;
	gap: 2.5rem;
	width: 100%;
}

@media (min-width: 1024px) {
	[data-element-type="f12_showcase_item"] > .fusion-builder-child-element-content {
		flex-direction: row;
	}

	[data-element-type="f12_showcase_item"]:nth-child(even) > .fusion-builder-child-element-content {
		flex-direction: row-reverse;
	}
}

.f12-showcase-item__image {
	flex: 1;
}

.f12-showcase-item__image img {
	width: 100%;
	border-radius: var(--f12-radius-lg);
	border: 1px solid var(--f12-border);
	box-shadow: var(--f12-shadow-card-hover);
}

.f12-showcase-item__content {
	flex: 1;
	text-align: center;
}

@media (min-width: 1024px) {
	.f12-showcase-item__content {
		text-align: left;
	}
}

.f12-showcase-item__title {
	font-size: 1.5rem;
	font-weight: 800;
	color: var(--f12-fg);
	margin: 0;
}

@media (min-width: 768px) {
	.f12-showcase-item__title {
		font-size: 1.875rem;
	}
}

.f12-showcase-item__desc {
	margin: 1rem 0 0;
	font-size: 1.125rem;
	line-height: 1.7;
	color: var(--f12-muted-fg);
}

/* ==========================================================================
   Comparison Table
   ========================================================================== */

.f12-comparison-table {
	background-color: var(--f12-el-bg, var(--f12-bg));
}

.f12-comparison-table__wrap {
	margin-top: 3rem;
	overflow: hidden;
	border-radius: var(--f12-radius-lg);
	border: 1px solid var(--f12-border);
	box-shadow: var(--f12-shadow-card);
}

.f12-comparison-table table {
	width: 100%;
	border-collapse: collapse;
	text-align: left;
}

.f12-comparison-table thead tr {
	border-bottom: 1px solid var(--f12-border);
	background: hsl(220, 14%, 92%, 0.5);
}

.f12-comparison-table th {
	padding: 0.75rem 1rem;
	font-size: 0.875rem;
	font-weight: 700;
	color: var(--f12-fg);
}

@media (min-width: 640px) {
	.f12-comparison-table th {
		padding: 0.75rem 1.5rem;
	}
}

.f12-comparison-table th.f12-comparison-table__col-pro {
	color: var(--f12-secondary);
}

.f12-comparison-table__col-free,
.f12-comparison-table__col-pro {
	width: 5rem;
	text-align: center;
}

@media (min-width: 640px) {
	.f12-comparison-table__col-free,
	.f12-comparison-table__col-pro {
		width: 7rem;
	}
}

.f12-comparison-table__category-row {
	border-bottom: 1px solid var(--f12-border);
	background: hsl(220, 14%, 92%, 0.2);
}

.f12-comparison-table__category-row td {
	padding: 0.5rem 1rem;
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: var(--f12-muted-fg);
}

@media (min-width: 640px) {
	.f12-comparison-table__category-row td {
		padding: 0.5rem 1.5rem;
	}
}

.f12-comparison-table__feature-row {
	border-bottom: 1px solid hsl(220, 14%, 88%, 0.5);
	transition: background 0.15s ease;
}

.f12-comparison-table__feature-row:last-child {
	border-bottom: 0;
}

.f12-comparison-table__feature-row:hover {
	background: hsl(220, 14%, 92%, 0.3);
}

.f12-comparison-table__feature-row td {
	padding: 0.625rem 1rem;
	font-size: 0.875rem;
	color: var(--f12-fg);
}

@media (min-width: 640px) {
	.f12-comparison-table__feature-row td {
		padding: 0.625rem 1.5rem;
	}
}

.f12-comparison-table__feature-row td:nth-child(2),
.f12-comparison-table__feature-row td:nth-child(3) {
	text-align: center;
}

.f12-comparison-table__check {
	display: inline-block;
	width: 1.25rem;
	height: 1.25rem;
	color: var(--f12-secondary);
}

.f12-comparison-table__cross {
	display: inline-block;
	width: 1.25rem;
	height: 1.25rem;
	color: hsl(220, 10%, 46%, 0.3);
}

.f12-comparison-table__string-value {
	display: inline-block;
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--f12-fg);
	line-height: 1.4;
	visibility: visible;
	opacity: 1;
}

/* ==========================================================================
   CTA Section
   ========================================================================== */

.f12-cta {
	background-color: var(--f12-el-bg, var(--f12-bg));
}

.f12-cta__grid {
	display: grid;
	gap: 1.5rem;
	margin-top: 3rem;
}

@media (min-width: 768px) {
	.f12-cta__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

.f12-cta__card {
	display: flex;
	flex-direction: column;
	border-radius: var(--f12-radius-lg);
	background: var(--f12-card);
	padding: 2rem;
	box-shadow: var(--f12-shadow-card);
}

.f12-cta__card--free {
	border: 1px solid var(--f12-border);
}

.f12-cta__card--pro {
	border: 2px solid var(--f12-secondary);
	box-shadow: var(--f12-shadow-card-hover);
}

.f12-cta__badge {
	display: inline-flex;
	width: fit-content;
	border-radius: 9999px;
	padding: 0.25rem 0.75rem;
	font-size: 0.75rem;
	font-weight: 700;
}

.f12-cta__badge--free {
	background: var(--f12-muted);
	color: var(--f12-muted-fg);
}

.f12-cta__badge--pro {
	background: var(--f12-secondary);
	color: var(--f12-secondary-fg);
}

.f12-cta__card-title {
	margin: 1rem 0 0;
	font-size: 1.5rem;
	font-weight: 800;
	color: var(--f12-fg);
}

.f12-cta__card-subtitle {
	margin: 0.25rem 0 0;
	font-size: 0.875rem;
	color: var(--f12-muted-fg);
}

.f12-cta__price {
	margin-top: 1rem;
}

.f12-cta__price-value {
	font-size: 1.875rem;
	font-weight: 900;
	color: var(--f12-fg);
}

.f12-cta__price-period {
	font-size: 0.875rem;
	color: var(--f12-muted-fg);
}

.f12-cta__tier-selector {
	display: flex;
	gap: 0.5rem;
	margin-top: 1rem;
}

.f12-cta__tier-btn {
	flex: 1;
	border-radius: 0.5rem;
	border: 2px solid var(--f12-border);
	background: var(--f12-bg);
	padding: 0.625rem 0.75rem;
	text-align: center;
	cursor: pointer;
	transition: all 0.2s ease;
	font-family: var(--f12-font);
}

.f12-cta__tier-btn:hover {
	border-color: hsl(160, 70%, 42%, 0.4);
}

.f12-cta__tier-btn.is-active {
	border-color: var(--f12-secondary);
	background: hsl(160, 70%, 42%, 0.1);
}

.f12-cta__tier-btn.is-active .f12-cta__tier-label {
	color: var(--f12-fg);
}

.f12-cta__tier-label {
	display: block;
	font-size: 0.875rem;
	font-weight: 700;
	color: var(--f12-muted-fg);
}

.f12-cta__tier-price {
	display: block;
	font-size: 0.75rem;
	color: var(--f12-muted-fg);
}

.f12-cta__features {
	flex: 1;
	margin-top: 1.5rem;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.f12-cta__feature-item {
	display: flex;
	align-items: flex-start;
	gap: 0.5rem;
}

.f12-cta__feature-item svg {
	flex-shrink: 0;
	width: 1rem;
	height: 1rem;
	margin-top: 0.125rem;
	color: var(--f12-secondary);
}

.f12-cta__feature-item span {
	font-size: 0.875rem;
	color: var(--f12-muted-fg);
}

.f12-cta__btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	width: 100%;
	margin-top: 2rem;
	padding: 0.75rem 1.5rem;
	border-radius: var(--f12-radius);
	font-size: 1rem;
	font-weight: 700;
	text-decoration: none;
	transition: all 0.2s ease;
	cursor: pointer;
	font-family: var(--f12-font);
}

.f12-cta__btn svg {
	width: 1.25rem;
	height: 1.25rem;
}

.f12-cta__btn--free {
	border: 1px solid var(--f12-border);
	background: var(--f12-card);
	color: var(--f12-fg);
}

.f12-cta__btn--free:hover {
	background: var(--f12-muted);
}

.f12-cta__btn--pro {
	border: none;
	background: var(--f12-secondary);
	color: var(--f12-secondary-fg);
	box-shadow: 0 4px 14px hsl(160 70% 42% / 0.3);
}

.f12-cta__btn--pro:hover {
	opacity: 0.9;
}

.f12-cta__guarantee {
	margin-top: 0.5rem;
	text-align: center;
	font-size: 0.75rem;
	color: var(--f12-muted-fg);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */

.f12-hero {
	background-color: var(--f12-el-bg, var(--f12-bg));
	margin-top: var(--f12-el-margin-top, 0) !important;
	margin-bottom: var(--f12-el-margin-bottom, 0) !important;
	padding-top: var(--f12-el-padding-top, 0) !important;
	padding-bottom: var(--f12-el-padding-bottom, 0) !important;
}

.f12-hero__topbar {
	border-bottom: 1px solid var(--f12-border);
	background: var(--f12-card);
}

.f12-hero__topbar-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	max-width: 72rem;
	margin: 0 auto;
	padding: 1rem 1.5rem;
}

.f12-hero__brand {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.f12-hero__brand svg {
	width: 1.5rem;
	height: 1.5rem;
	color: var(--f12-secondary);
}

.f12-hero__brand-name {
	font-size: 1.125rem;
	font-weight: 800;
	color: var(--f12-fg);
}

.f12-hero__nav {
	display: flex;
	align-items: center;
	gap: 1rem;
	font-size: 0.875rem;
}

.f12-hero__nav a {
	color: var(--f12-muted-fg);
	text-decoration: none;
	transition: color 0.15s ease;
}

.f12-hero__nav a:hover {
	color: var(--f12-fg);
}

.f12-hero__breadcrumb {
	max-width: 72rem;
	margin: 0 auto;
	padding: 0.75rem 1.5rem;
	font-size: 0.75rem;
	color: var(--f12-muted-fg);
}

.f12-hero__breadcrumb a {
	color: var(--f12-muted-fg);
	text-decoration: none;
}

.f12-hero__breadcrumb a:hover {
	color: var(--f12-fg);
}

.f12-hero__breadcrumb-sep {
	margin: 0 0.5rem;
}

.f12-hero__breadcrumb-current {
	font-weight: 500;
	color: var(--f12-fg);
}

.f12-hero__content {
	max-width: 72rem;
	margin: 0 auto;
	padding: 1rem 1.5rem 4rem;
	display: grid;
	gap: 3rem;
}

@media (min-width: 1024px) {
	.f12-hero__content {
		grid-template-columns: 1fr 1fr;
	}
}

/* Hero Gallery */
.f12-hero__gallery-main {
	overflow: hidden;
	border-radius: var(--f12-radius-lg);
	border: 1px solid var(--f12-border);
	box-shadow: var(--f12-shadow-card-hover);
}

.f12-hero__gallery-main img {
	width: 100%;
	display: block;
}

.f12-hero__gallery-thumbs {
	display: flex;
	gap: 0.75rem;
	margin-top: 1rem;
}

.f12-hero__gallery-thumb {
	overflow: hidden;
	border-radius: 0.5rem;
	border: 2px solid var(--f12-border);
	cursor: pointer;
	transition: all 0.2s ease;
	width: calc(33.333% - 0.5rem);
	opacity: 0.6;
	background: none;
	padding: 0;
}

.f12-hero__gallery-thumb:hover {
	opacity: 1;
}

.f12-hero__gallery-thumb.is-active {
	border-color: var(--f12-secondary);
	box-shadow: var(--f12-shadow-card);
	opacity: 1;
}

.f12-hero__gallery-thumb img {
	width: 100%;
	display: block;
}

.f12-hero__badges {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-top: 1.5rem;
}

.f12-hero__badge {
	display: inline-flex;
	align-items: center;
	gap: 0.25rem;
	border-radius: 9999px;
	padding: 0.25rem 0.75rem;
	font-size: 0.75rem;
	font-weight: 600;
}

.f12-hero__badge--dsgvo {
	background: hsl(160, 70%, 42%, 0.1);
	color: var(--f12-secondary);
}

.f12-hero__badge--dsgvo svg {
	width: 0.75rem;
	height: 0.75rem;
}

.f12-hero__badge--germany {
	background: hsl(220, 60%, 20%, 0.1);
	color: var(--f12-primary);
}

.f12-hero__badge--license {
	background: var(--f12-muted);
	color: var(--f12-muted-fg);
}

/* Hero Info */
.f12-hero__plugin-tag {
	display: inline-flex;
	align-items: center;
	gap: 0.375rem;
	border-radius: 9999px;
	border: 1px solid hsl(160, 70%, 42%, 0.3);
	background: hsl(160, 70%, 42%, 0.1);
	padding: 0.25rem 0.75rem;
	font-size: 0.75rem;
	font-weight: 600;
	color: var(--f12-secondary);
	margin-bottom: 0.75rem;
}

.f12-hero__plugin-tag svg {
	width: 0.75rem;
	height: 0.75rem;
}

.f12-hero__title {
	font-size: 1.875rem;
	font-weight: 900;
	line-height: 1.15;
	letter-spacing: -0.025em;
	color: var(--f12-fg);
	margin: 0;
}

@media (min-width: 768px) {
	.f12-hero__title {
		font-size: 2.25rem;
	}
}

.f12-hero__desc {
	margin: 0.75rem 0 0;
	font-size: 0.875rem;
	line-height: 1.7;
	color: var(--f12-muted-fg);
}

.f12-hero__rating {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin-top: 1rem;
}

.f12-hero__stars {
	display: flex;
}

.f12-hero__stars svg {
	width: 1rem;
	height: 1rem;
	color: var(--f12-secondary);
	fill: var(--f12-secondary);
}

.f12-hero__rating-text {
	font-size: 0.875rem;
	color: var(--f12-muted-fg);
}

/* Hero Pricing Cards */
.f12-hero__pricing {
	margin-top: 1.5rem;
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.f12-hero__pricing-card {
	border-radius: var(--f12-radius);
	background: var(--f12-card);
	padding: 1rem;
}

.f12-hero__pricing-card--free {
	border: 1px solid var(--f12-border);
}

.f12-hero__pricing-card--pro {
	border: 2px solid var(--f12-secondary);
	box-shadow: var(--f12-shadow-card);
}

.f12-hero__pricing-header {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
}

.f12-hero__pricing-label {
	font-size: 0.875rem;
	font-weight: 700;
	color: var(--f12-fg);
}

.f12-hero__pricing-price {
	font-size: 1.5rem;
	font-weight: 900;
	color: var(--f12-fg);
	margin-left: 0.5rem;
}

.f12-hero__pricing-card--pro .f12-hero__pricing-price {
	font-size: 1.875rem;
}

.f12-hero__pricing-period {
	font-size: 0.875rem;
	font-weight: 400;
	color: var(--f12-muted-fg);
}

.f12-hero__pricing-tag {
	border-radius: 9999px;
	padding: 0.125rem 0.5rem;
	font-size: 0.75rem;
	font-weight: 600;
}

.f12-hero__pricing-tag--free {
	background: hsl(160, 70%, 42%, 0.1);
	color: var(--f12-secondary);
}

.f12-hero__pricing-tag--pro {
	background: var(--f12-secondary);
	color: var(--f12-secondary-fg);
	font-weight: 700;
}

.f12-hero__pricing-note {
	margin-top: 0.25rem;
	font-size: 0.75rem;
	color: var(--f12-muted-fg);
}

.f12-hero__tier-selector {
	display: flex;
	gap: 0.5rem;
	margin-top: 0.75rem;
}

.f12-hero__tier-btn {
	flex: 1;
	border-radius: 0.5rem;
	border: 2px solid var(--f12-border);
	background: var(--f12-bg);
	padding: 0.5rem;
	text-align: center;
	cursor: pointer;
	transition: all 0.2s ease;
	font-family: var(--f12-font);
}

.f12-hero__tier-btn:hover {
	border-color: hsl(160, 70%, 42%, 0.4);
}

.f12-hero__tier-btn.is-active {
	border-color: var(--f12-secondary);
	background: hsl(160, 70%, 42%, 0.1);
}

.f12-hero__tier-label {
	display: block;
	font-size: 0.75rem;
	font-weight: 700;
	color: var(--f12-muted-fg);
}

.f12-hero__tier-btn.is-active .f12-hero__tier-label {
	color: var(--f12-fg);
}

.f12-hero__tier-price {
	display: block;
	font-size: 0.6875rem;
	color: var(--f12-muted-fg);
}

.f12-hero__pricing-features {
	margin-top: 0.75rem;
	display: flex;
	flex-direction: column;
	gap: 0.375rem;
}

.f12-hero__pricing-feature {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.f12-hero__pricing-feature svg {
	flex-shrink: 0;
	width: 0.875rem;
	height: 0.875rem;
	color: var(--f12-secondary);
}

.f12-hero__pricing-feature span {
	font-size: 0.75rem;
	color: var(--f12-muted-fg);
}

.f12-hero__pricing-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.375rem;
	width: 100%;
	margin-top: 1rem;
	padding: 0.5rem 1rem;
	border-radius: 0.5rem;
	font-size: 0.875rem;
	font-weight: 600;
	text-decoration: none;
	cursor: pointer;
	transition: all 0.2s ease;
	font-family: var(--f12-font);
}

.f12-hero__pricing-btn svg {
	width: 1rem;
	height: 1rem;
}

.f12-hero__pricing-btn--free {
	border: 1px solid var(--f12-border);
	background: var(--f12-card);
	color: var(--f12-fg);
}

.f12-hero__pricing-btn--free:hover {
	background: var(--f12-muted);
}

.f12-hero__pricing-btn--pro {
	border: none;
	background: var(--f12-secondary);
	color: var(--f12-secondary-fg);
	box-shadow: 0 4px 14px hsl(160 70% 42% / 0.3);
}

.f12-hero__pricing-btn--pro:hover {
	opacity: 0.9;
}

/* Hero Meta */
.f12-hero__meta {
	margin-top: 1.5rem;
	padding-top: 1rem;
	border-top: 1px solid var(--f12-border);
	display: flex;
	flex-direction: column;
	gap: 0.375rem;
	font-size: 0.75rem;
	color: var(--f12-muted-fg);
}

.f12-hero__meta-row {
	display: flex;
	justify-content: space-between;
}

.f12-hero__meta-value {
	font-weight: 500;
	color: var(--f12-fg);
}

/* ==========================================================================
   SVG Icons (inline)
   ========================================================================== */

.f12-icon {
	display: inline-block;
	vertical-align: middle;
}

/* ==========================================================================
   Responsive: hide on mobile
   ========================================================================== */

@media (max-width: 767px) {
	.f12-hide-on-mobile {
		display: none !important;
	}
}

@media (min-width: 768px) and (max-width: 1023px) {
	.f12-hide-on-tablet {
		display: none !important;
	}
}

@media (min-width: 1024px) {
	.f12-hide-on-desktop {
		display: none !important;
	}
}

/* ==========================================================================
   Layouts Section
   ========================================================================== */

.f12-layouts {
	background-color: var(--f12-el-bg, var(--f12-muted-bg, var(--f12-bg)));
}

.f12-layouts__grid {
	display: grid;
	gap: 1.5rem;
	margin-top: 3rem;
}

@media (min-width: 768px) {
	.f12-layouts__grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

.f12-layout-card {
	border-radius: var(--f12-radius-lg);
	border: 1px solid var(--f12-border);
	background: var(--f12-card);
	padding: 2rem;
	box-shadow: var(--f12-shadow-card);
	transition: all 0.3s ease;
}

.f12-layout-card:hover {
	box-shadow: var(--f12-shadow-card-hover);
	transform: translateY(-4px);
}

.f12-layout-card__header {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	margin-bottom: 0.5rem;
}

.f12-layout-card__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 3rem;
	height: 3rem;
	border-radius: 0.75rem;
	background: color-mix(in srgb, var(--f12-secondary) 10%, transparent);
	color: var(--f12-secondary);
	transition: background 0.3s, color 0.3s;
}

.f12-layout-card:hover .f12-layout-card__icon {
	background: var(--f12-secondary);
	color: var(--f12-secondary-fg);
}

.f12-layout-card__icon svg {
	width: 1.5rem;
	height: 1.5rem;
}

.f12-layout-card__badge {
	display: inline-block;
	padding: 0.125rem 0.5rem;
	border-radius: 9999px;
	background: var(--f12-muted);
	color: var(--f12-muted-fg);
	font-size: 0.625rem;
	font-weight: 700;
	line-height: 1.4;
}

.f12-layout-card__title {
	font-size: var(--f12-card-title-size, 1.125rem) !important;
	font-weight: 700;
	color: var(--f12-fg);
	margin: 0.75rem 0 0;
}

.f12-layout-card__desc {
	margin: 0.5rem 0 0;
	font-size: var(--f12-card-desc-size, 0.875rem) !important;
	line-height: 1.7;
	color: var(--f12-muted-fg);
}

/* ==========================================================================
   Architecture (Defense in Depth)
   ========================================================================== */

.f12-architecture {
	background-color: var(--f12-el-bg, hsl(220, 14%, 92%, 0.3));
}

/* Flow visualization */
.f12-architecture__flow {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.75rem;
}

@media (min-width: 768px) {
	.f12-architecture__flow {
		flex-direction: row;
		gap: 0.5rem;
	}
}

.f12-architecture__endpoint {
	border-radius: var(--f12-radius);
	border: 1px solid var(--f12-arch-accent, var(--f12-secondary));
	background: color-mix(in srgb, var(--f12-arch-accent, var(--f12-secondary)) 10%, transparent);
	padding: 0.75rem 1rem;
	text-align: center;
	font-size: 0.875rem;
	font-weight: 700;
	color: var(--f12-arch-accent, var(--f12-secondary));
	white-space: nowrap;
}

.f12-architecture__flow-step {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.5rem;
}

@media (min-width: 768px) {
	.f12-architecture__flow-step {
		flex-direction: row;
		gap: 0.5rem;
	}
}

.f12-architecture__arrow {
	width: 1.25rem;
	height: 1.25rem;
	color: var(--f12-muted-fg);
	flex-shrink: 0;
}

/* Hide horizontal arrows on mobile, show vertical indicator instead */
@media (max-width: 767px) {
	.f12-architecture__flow > .f12-architecture__arrow {
		transform: rotate(90deg);
	}
	.f12-architecture__flow-step .f12-architecture__arrow {
		transform: rotate(90deg);
	}
}

.f12-architecture__flow-card {
	border-radius: var(--f12-radius);
	border: 1px solid var(--f12-arch-card-border, var(--f12-border));
	background: var(--f12-arch-card-bg, var(--f12-card));
	padding: 0.75rem 1rem;
	text-align: center;
	box-shadow: var(--f12-shadow-card);
	white-space: nowrap;
}

.f12-architecture__flow-priority {
	font-size: 0.6875rem;
	font-weight: 600;
	color: var(--f12-muted-fg);
}

.f12-architecture__flow-label {
	font-size: 0.875rem;
	font-weight: 700;
	color: var(--f12-fg);
}

.f12-architecture__flow-blocked {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.25rem;
	margin-top: 0.25rem;
	font-size: 0.6875rem;
	color: hsl(0, 72%, 51%);
}

.f12-architecture__block-icon {
	width: 0.75rem;
	height: 0.75rem;
}

/* Description grid */
.f12-architecture__grid {
	display: grid;
	gap: 1rem;
	margin-top: 3rem;
}

@media (min-width: 640px) {
	.f12-architecture__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

.f12-architecture__card {
	border-radius: var(--f12-radius);
	border: 1px solid var(--f12-arch-card-border, var(--f12-border));
	background: var(--f12-arch-card-bg, var(--f12-card));
	padding: 1.25rem;
	box-shadow: var(--f12-shadow-card);
}

.f12-architecture__card-header {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.f12-architecture__card-number {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 1.5rem;
	height: 1.5rem;
	border-radius: 9999px;
	background: var(--f12-arch-accent, var(--f12-secondary));
	color: var(--f12-secondary-fg);
	font-size: 0.75rem;
	font-weight: 700;
	flex-shrink: 0;
}

.f12-architecture__card-title {
	font-size: 0.875rem;
	font-weight: 700;
	color: var(--f12-fg);
	margin: 0;
}

.f12-architecture__card-desc {
	margin: 0.5rem 0 0;
	font-size: 0.875rem;
	color: var(--f12-muted-fg);
	line-height: 1.6;
}

/* Footer note */
.f12-architecture__footer {
	margin-top: 2rem;
	text-align: center;
	font-size: 0.875rem;
	color: var(--f12-muted-fg);
}
