/* ============================================================
   Unusual Suite — Static Website Stylesheet
   Matching Kadence theme design exactly
   ============================================================ */

/* --- Self-hosted Roboto font (variable, 400–700) --- */
@font-face {
	font-family: 'Roboto';
	src: url('roboto-latin-ext.woff2') format('woff2');
	font-weight: 400 700;
	font-stretch: 100%;
	font-style: normal;
	font-display: swap;
	unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
	font-family: 'Roboto';
	src: url('roboto-latin.woff2') format('woff2');
	font-weight: 400 700;
	font-stretch: 100%;
	font-style: normal;
	font-display: swap;
	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* Visually hide content while keeping it in the accessibility tree (screen readers + Lighthouse link-text audit). */
.visually-hidden {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

/* --- CSS Variables (from Kadence palette) --- */
:root {
	--palette1: #161615;
	--palette2: #d9dae2;
	--palette3: #f0f4f7;
	--palette4: #161615;
	--palette7: #EDF2F7;
	--palette9: #ffffff;
	--palette11: #13612e;
	--palette12: #1159af;
	--palette13: #b82105;
	--palette14: #f7630c;
	--palette15: #f5a524;
	--btn-bg: var(--palette1);
	--btn-bg-hover: #6c6f8d;
	--btn-text: var(--palette9);
	--lavender: #f7f4fa;
	--content-width: 1650px;
	--edge-padding: 3rem;
}

/* --- Base --- */
html {
	scroll-behavior: smooth;
	-webkit-text-size-adjust: 100%;
}

body {
	font-family: 'Roboto', sans-serif;
	font-style: normal;
	font-weight: 400;
	font-size: 20px;
	line-height: 1.6;
	color: var(--palette4);
	background: var(--palette9);
	-webkit-hyphens: none;
	hyphens: none;
}

/* --- Typography (exact Kadence sizes) --- */
h1, h2, h3, h4, h5, h6 { font-family: 'Roboto', sans-serif; }

h1 {
	font-weight: 700;
	font-size: 65px;
	line-height: 1.1em;
	color: var(--palette1);
}
h2 {
	font-weight: 700;
	font-size: 55px;
	line-height: 1.2;
	color: var(--palette1);
	margin-bottom: 0.6em;
}
h3 {
	font-weight: 700;
	font-size: 24px;
	line-height: 1.5;
	color: var(--palette1);
}
h4 { font-weight: 700; font-size: 22px; line-height: 1.5; color: var(--palette4); }
h5 { font-weight: 700; font-size: 20px; line-height: 1.5; color: var(--palette4); }

p { margin-bottom: 1em; }
.has-large-font-size { font-size: 32px; }

a { color: var(--palette1); text-decoration: none; }
a:hover { text-decoration: underline; }
.entry-content-wrap a,
.hero-text a { text-decoration: underline; }
.entry-content-wrap a:hover,
.hero-text a:hover { text-decoration: none; }
.entry-content-wrap a.btn,
.hero-text a.btn { text-decoration: none; }

img { max-width: 100%; height: auto; display: block; }

ul, ol { margin-bottom: 1em; padding-left: 1.5em; }
li { margin-bottom: 0.25em; }

strong { font-weight: 700; }

/* --- Layout --- */
.site-container {
	max-width: var(--content-width);
	margin: 0 auto;
	padding: 0 var(--edge-padding);
}

#primary {
	padding-top: 240px;
}
.hero-section + #primary {
	padding-top: 0;
}
.entry-content-wrap {
	padding: 2rem 0;
	box-shadow: 0px 15px 15px -10px rgba(0,0,0,0.05);
}

/* --- Buttons (Kadence button style) --- */
.btn {
	display: inline-block;
	font-family: 'Roboto', sans-serif;
	font-style: normal;
	font-weight: 400;
	font-size: 20px;
	line-height: 1.6;
	border-radius: 50px;
	padding: 2px 40px;
	border: none;
	cursor: pointer;
	text-decoration: none;
	transition: box-shadow 0.3s ease, background-color 0.3s ease;
	box-shadow: 0px 0px 0px -7px rgba(0,0,0,0);
}
.btn:hover {
	text-decoration: none;
	box-shadow: 0px 15px 25px -7px rgba(0,0,0,0.1);
}
.btn--primary {
	background: var(--btn-bg);
	color: var(--btn-text);
}
.btn--primary:hover {
	background: var(--btn-bg-hover);
	color: var(--btn-text);
}
.btn--small {
	font-size: 16px;
	padding: 5px 30px;
}

/* --- Header (Kadence-style: CSS transitions, JS only toggles class) --- */
#masthead {
	position: fixed;
	left: 0;
	right: 0;
	top: 0;
	z-index: 100;
	background-image: url('../img/hg-unusual-menue.png');
	background-repeat: no-repeat;
	background-position: 50% 51%;
	background-size: cover;
}

.header-inner {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	min-height: 227px;
	max-width: var(--content-width);
	margin: 0 auto;
	padding: 0 var(--edge-padding);
	transition: min-height 0.3s ease, background-color 0.3s ease;
}

.header-left {
	padding-top: 5px;
	transition: padding-top 0.3s ease;
}

.site-logo img {
	max-width: 15vw;
	max-height: 210px;
	height: auto;
	aspect-ratio: 1;
	transition: max-height 0.3s ease;
}

.header-right {
	display: flex;
	align-items: center;
	gap: 0;
	padding-top: 30px;
}

/* Primary Navigation */
.primary-nav {
	display: flex;
	align-items: center;
	list-style: none;
	margin: 0;
	padding: 0;
}

.primary-nav > li {
	position: relative;
	margin: 0;
}

.primary-nav > li > a {
	display: flex;
	align-items: center;
	gap: 0.3em;
	padding: 0.09em calc(3em / 2);
	font-weight: 700;
	color: var(--palette1);
	text-decoration: none;
	white-space: nowrap;
}
.primary-nav > li > a:hover {
	text-decoration: none;
	color: var(--palette1);
}

.primary-nav > li > a .home-icon {
	height: 20px;
	margin-bottom: 4px;
}

.nav-arrow {
	display: inline-flex;
	align-items: center;
	width: 16px;
	height: 16px;
	margin-left: 2px;
}
.nav-arrow svg {
	width: 18px;
	height: 18px;
	vertical-align: baseline;
	fill: currentColor;
}

/* Dropdown menu */
.sub-menu {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	list-style: none;
	margin: 0 0 0 -8px;
	padding: 4px 16px;
	background: var(--palette9);
	min-width: 280px;
	z-index: 200;
	opacity: 0;
	transform: translateY(-5px);
	transition: opacity 0.2s ease, transform 0.2s ease;
	box-shadow: 0 0 14px 0 rgba(0,0,0,0.2);
}
.sub-menu li:last-child {
	margin-bottom: 4px;
	padding-bottom: 8px;
}
.primary-nav > li:hover > .sub-menu,
.primary-nav > li.menu-open > .sub-menu {
	display: block;
	opacity: 1;
	transform: translateY(0);
}
.sub-menu li {
	margin: 10px 0 0;
}
.sub-menu li a {
	display: block;
	padding: 0 0 2px;
	color: var(--palette1);
	font-size: 18px;
	font-weight: 700;
	text-decoration: none;
	white-space: nowrap;
	border-bottom: 2px solid white;
}
.sub-menu li a:hover {
	text-decoration: none;
	border-bottom: 2px solid black;
}

/* Language switcher */
.lang-switch {
	margin-top: 10px;
}
.primary-nav > li.lang-switch > a {
	padding: 0.09em 5px;
}
.primary-nav > li.lang-switch + .lang-switch > a {
	padding: 0.09em 5px;
	border-left: 1px solid #000;
}
.lang-switch.is-current a {
	text-decoration: underline;
}

/* Login button in header */
.header-login {
	margin-left: 50px;
	box-shadow: 0px 15px 25px -7px rgba(0,0,0,0.1);
}

/* Sticky header (shrunk state after scrolling) */
#masthead.is-sticky {
	background-color: var(--palette9);
	background-image: none;
}
#masthead.is-sticky .header-inner {
	min-height: 0;
}
#masthead.is-sticky .header-left {
	padding-top: 5px;
}
#masthead.is-sticky .site-logo img {
	max-height: 105px;
	width: auto;
}

/* Mobile hamburger */
.mobile-toggle {
	display: none;
	background: none;
	border: none;
	cursor: pointer;
	padding: 0.4em 0.6em;
	color: var(--palette1);
	font-size: 25px;
	line-height: 1;
}
.mobile-toggle svg {
	width: 25px;
	height: 28px;
	fill: currentColor;
}

/* Mobile drawer — kept display:none, toggled to block by JS via is-open */
.mobile-drawer {
	display: none;
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	width: 320px;
	max-width: 85vw;
	background: var(--palette9);
	z-index: 1000;
	overflow-y: auto;
	transform: translateX(100%);
	transition: transform 0.3s ease;
}
.mobile-drawer.is-open {
	display: block;
	transform: translateX(0);
}
.mobile-overlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0,0,0,0.3);
	z-index: 999;
}
.mobile-overlay.is-open {
	display: block;
}
.drawer-header {
	display: flex;
	justify-content: flex-end;
	padding: 1em;
}
.drawer-close {
	background: none;
	border: none;
	font-size: 24px;
	cursor: pointer;
	padding: 0.6em 0.15em;
	color: var(--palette1);
}
.mobile-nav {
	list-style: none;
	margin: 0;
	padding: 0;
}
.mobile-nav li {
	margin: 0;
	border-bottom: 1px solid rgba(255,255,255,0.1);
}
.mobile-nav li a {
	display: block;
	padding: 0.5em 1.5em;
	color: var(--palette1);
	font-size: 16px;
	text-decoration: none;
	background: var(--palette9);
	-webkit-tap-highlight-color: transparent;
}
.mobile-nav .mobile-sub-toggle {
	display: flex;
	align-items: center;
	justify-content: space-between;
	cursor: pointer;
	-webkit-tap-highlight-color: transparent;
}
.mobile-nav .mobile-sub-toggle button {
	background: none;
	border: none;
	border-left: 1px solid rgba(255,255,255,0.1);
	padding: 0.5em 1em;
	cursor: pointer;
	color: var(--palette1);
}
.chevron-icon {
	transition: transform 0.2s ease;
}
.menu-expanded .chevron-icon {
	transform: rotate(180deg);
}
.mobile-nav .sub-menu {
	display: none;
	position: static;
	opacity: 1;
	transform: none;
	min-width: 0;
	background: var(--palette9);
	padding: 0;
	box-shadow: none;
}
.mobile-nav .sub-menu.is-open {
	display: block;
}
.mobile-nav .sub-menu li a {
	padding-left: 2.5em;
	font-weight: 400;
	border-bottom: none;
}

/* ============================================================
   PAGE CONTENT
   ============================================================ */

/* Hero section - transparent header overlay + background screenshot */
.hero-section {
	padding-top: 320px;
	padding-bottom: 1.5rem;
	min-height: 90vh;
	background-image: url('../img/screenshots/en/hero-bg.webp');
	background-size: cover;
	background-position: 100% 100%;
	background-repeat: no-repeat;
}
.hero-content {
	max-width: var(--content-width);
	margin: 0 auto;
	padding: 0 var(--edge-padding);
}
.hero-text {
	max-width: 50%;
}
.hero-text h1 {
	margin-bottom: 0.2em;
}
.hero-text h2 {
	margin-bottom: 0.6em;
}
.hero-text > p {
	margin-bottom: 1.2em;
}
html[lang="de"] .hero-section {
	background-image: url('../img/screenshots/de/hero-bg.webp');
}
html[lang="es"] .hero-section {
	background-image: url('../img/screenshots/es/hero-bg.webp');
}

/* Generic row layout */
.row {
	display: flex;
	gap: 4em;
	align-items: center;
	margin-bottom: 0;
}
.row--top {
	align-items: flex-start;
}
.row--middle {
	align-items: center;
}

/* Column sizing */
.col { flex: 1; }

/* Section spacing */
.section {
	padding: 2rem 0;
}

/* Spacer */
.spacer { height: 3rem; }
.spacer--sm { height: 1.5rem; }

.hero-content h1 {
	margin-bottom: 0.5em;
}
.hero-keywords {
	margin-bottom: 1.5em;
}
.hero-keywords p {
	font-size: 2.2rem;
	font-weight: 700;
	line-height: 1.15;
	margin: 0;
}
.hero-keywords--mobile {
	display: none;
}
.hero-keywords img {
	max-width: min(581px, 100%);
}

/* Screenshot images in about section (2x2 grid, staggered) */
.screenshots-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	row-gap: 0;
	column-gap: 1em;
}
.screenshots-grid img {
	border-radius: 4px;
	aspect-ratio: 1;
	width: 100%;
}
.screenshots-grid > *:nth-child(2) {
	margin-top: 3em;
}
.screenshots-grid > *:nth-child(3) {
	margin-top: -3em;
}
.screenshots-grid > *:nth-child(4) {
	margin-top: 0;
}

/* Large screenshot display */
.screenshot-large img {
	width: 100%;
	filter: drop-shadow(0 4px 12px rgba(0,0,0,.12));
}

/* Text centered */
.text-center { text-align: center; }

/* ============================================================
   CARD GRID — reusable 3-column card layout component
   Cards span 1, 2, or 3 columns. Equal height per row (CSS grid).
   ============================================================ */
.card-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}
.card-grid + .card-grid {
	margin-top: 30px;
}
.card-grid--cols-2 {
	grid-template-columns: repeat(2, 1fr);
}
.card {
	border: none;
	border-radius: 30px;
	padding: 50px;
	box-shadow: 0px 0px 74px 0px rgba(0, 0, 0, 0.07);
	background: var(--palette9);
}
.card--span-2 { grid-column: span 2; }
.card--span-3 { grid-column: span 3; }
.card-header {
	display: flex;
	align-items: center;
	gap: 0.75em;
	margin-bottom: 0.75em;
}
.card-header img {
	width: 50px;
	height: 50px;
	object-fit: contain;
	flex-shrink: 0;
}
.card-header h3 {
	margin: 0;
	font-size: 40px;
	line-height: 1.3;
}
.card p:last-child {
	margin-bottom: 0;
}

/* Section heading inside card grid (not a card) */
.card-grid-heading {
	grid-column: 1 / -1;
	display: flex;
	align-items: center;
	padding: 1em 52px;
}
.card-grid-heading--auto {
	grid-column: auto;
}
.card-grid-heading h3 {
	font-size: 45px;
	line-height: 1.3;
}

/* "Everything in one place" section */
.cta-section {
	background: var(--lavender);
	padding: 4rem 3rem;
	margin: 3rem -2rem 0;
	text-align: center;
	border-radius: 0;
}
.cta-section h2 {
	margin-bottom: 0.5em;
	color: var(--palette1);
	font-size: 45px;
}
.cta-section p {
	margin-bottom: 1.5em;
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
}

/* ============================================================
   ACCORDION (FAQ)
   ============================================================ */
#FAQ h2 {
	font-size: 60px;
}
.accordion-wrap {
	max-width: none;
	margin-top: 2em;
}
.accordion-pane + .accordion-pane {
	margin-top: 10px;
}
.accordion-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	padding: 20px;
	background: var(--lavender);
	border: none;
	border-radius: 12px;
	cursor: pointer;
	font-family: 'Roboto', sans-serif;
	font-size: 24px;
	font-weight: 400;
	color: var(--palette1);
	text-align: left;
	line-height: 1.4;
	transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
}
.accordion-header:hover {
	background: var(--palette1);
	color: var(--palette9);
}
.accordion-panel {
	max-height: 0;
	overflow: hidden;
	padding: 0 40px;
	transition: max-height 0.4s ease;
}
.accordion-panel::before {
	content: '';
	display: block;
	height: 20px;
}
.accordion-panel::after {
	content: '';
	display: block;
	height: 30px;
}
.accordion-panel > :first-child { margin-top: 0; }
.accordion-panel > :last-child { margin-bottom: 0; }
.accordion-panel .row {
	gap: 2em;
}
.accordion-panel img {
	filter: drop-shadow(0 4px 12px rgba(0,0,0,.12));
}
.accordion-panel ul {
	padding-left: 1.5em;
}

/* ============================================================
   LIGHTBOX (click-to-zoom for screenshots)
   ============================================================ */
.screenshot-large img,
.accordion-panel img {
	cursor: zoom-in;
}
.lightbox-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.7);
	z-index: 100000;
	cursor: default;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease;
}
.lightbox-overlay.is-active {
	opacity: 1;
	visibility: visible;
}
.lightbox-slide-container {
	position: relative;
	max-width: 90%;
	max-height: 90vh;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: zoom-in;
}
.lightbox-overlay.is-zoomed .lightbox-slide-container {
	cursor: zoom-out;
	max-width: 100%;
	max-height: 100vh;
}
.lightbox-overlay.is-zoomed .lightbox-slide-container img {
	max-width: 100vw;
	max-height: 100vh;
}
.lightbox-slide-container img {
	max-width: 100%;
	max-height: 90vh;
	object-fit: contain;
	flex-shrink: 0;
}
.lightbox-close {
	position: fixed;
	top: 16px;
	right: 16px;
	background: rgba(0, 0, 0, 0.5);
	border: none;
	cursor: pointer;
	z-index: 100001;
	width: 48px;
	height: 48px;
	padding: 8px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.lightbox-close img,
.lightbox-arrow img {
	filter: invert(1);
	width: 32px;
	height: 32px;
}
.lightbox-arrow {
	position: fixed;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(0, 0, 0, 0.5);
	border: none;
	width: 48px;
	height: 48px;
	cursor: pointer;
	z-index: 100001;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 8px;
	border-radius: 50%;
}
.lightbox-prev {
	left: 20px;
}
.lightbox-next {
	right: 20px;
}

/* ============================================================
   GALLERY (reusable image carousel with arrows and dots)
   ============================================================ */
.gallery {
	position: relative;
}
.gallery-track {
	overflow: hidden;
	filter: drop-shadow(0 4px 12px rgba(0,0,0,.12));
	flex: 1;
	min-width: 0;
}
.gallery-slides {
	display: flex;
	transition: transform 0.4s ease;
}
.gallery-slides img {
	width: 100%;
	flex-shrink: 0;
	filter: drop-shadow(0 10px 25px rgba(0,0,0,.18));
	cursor: zoom-in;
}
.gallery-dots {
	display: flex;
	justify-content: center;
	gap: 0.25rem;
	margin-top: 0.5rem;
	width: 100%;
}
.gallery-dot {
	width: 24px;
	height: 24px;
	border-radius: 50%;
	border: none;
	background: radial-gradient(circle, #d5cde0 5px, transparent 5px);
	cursor: pointer;
	padding: 0;
}
.gallery-dot.active {
	background: radial-gradient(circle, var(--palette4) 5px, transparent 5px);
}

/* ============================================================
   INFO MODAL (reusable (i) dialog)
   ============================================================ */
.info-modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 100000;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease;
}
.info-modal.is-active {
	opacity: 1;
	visibility: visible;
}
.info-modal-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
}
.info-modal-container {
	position: relative;
	background: var(--palette9);
	border-radius: 12px;
	padding: 40px;
	max-width: 500px;
	width: 90%;
	text-align: center;
	z-index: 1;
}
.info-modal-close {
	position: absolute;
	top: 12px;
	right: 12px;
	background: none;
	border: none;
	font-size: 24px;
	cursor: pointer;
	color: var(--palette4);
	line-height: 1;
	padding: 4px;
}
.info-modal-trigger {
	background: none;
	border: none;
	cursor: pointer;
	vertical-align: middle;
	padding: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--palette4);
	width: 31px;
	height: 31px;
	flex-shrink: 0;
}
.info-modal-trigger svg {
	width: 23px;
	height: 23px;
}

/* ============================================================
   PRICING PAGE
   ============================================================ */
.pricing-price {
	font-size: 40px;
	font-weight: bold;
	vertical-align: middle;
}
.info-modal-heading {
	font-size: 35px;
}
.pricing-section {
	padding-top: 0;
}
.pricing-section h1 {
	text-align: center;
	margin-bottom: 0;
	font-size: 32px;
	line-height: 1.2;
}

.pricing-grid {
	display: grid;
	grid-template-columns: 1.5fr 1fr 1fr;
}
.pricing-cell {
	padding: 8px 20px;
	display: flex;
	align-items: center;
	font-size: 20px;
	border-bottom: 1px solid var(--palette1);
}
.pricing-label {
	justify-content: flex-start;
	gap: 8px;
}
.pricing-free,
.pricing-pro {
	justify-content: center;
	gap: 8px;
}

/* Column headers */
.pricing-header {
	border-bottom: none;
	flex-direction: column;
	padding: 20px;
	gap: 10px;
}
.pricing-header h2 {
	font-size: 24px;
	line-height: 1.3;
	margin: 0;
}
.pricing-header .btn {
	margin-top: auto;
}
.pricing-header-spacer {
	border-bottom: none;
	justify-content: center;
	align-items: center;
}

/* Pro column highlight */
.pricing-pro-bg {
	background: rgb(240, 244, 247);
}
.pricing-header.pricing-pro-bg {
	border-radius: 30px 30px 0 0;
}

/* Price display */
.pricing-price {
	font-size: 40px;
	font-weight: 700;
	line-height: 1;
	margin: 0;
}
.pricing-price-unit {
	font-size: 20px;
	font-weight: 700;
	vertical-align: middle;
}

/* Toggle switch */
.pricing-toggle {
	display: flex;
	align-items: center;
	gap: 8px;
	justify-content: center;
}
.switch {
	position: relative;
	display: inline-block;
	width: 36px;
	height: 18px;
}
.switch input {
	opacity: 0;
	width: 0;
	height: 0;
}
.slider {
	position: absolute;
	cursor: pointer;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: transparent;
	transition: 0.4s;
}
.slider:before {
	position: absolute;
	content: "";
	height: 10px;
	width: 10px;
	left: 1px;
	bottom: 1px;
	background-color: #000;
	transition: 0.4s;
}
input:checked + .slider {
	background-color: #000;
}
input:checked + .slider:before {
	background-color: #fff;
}
input:focus + .slider {
	box-shadow: 0 0 1px #000;
}
input:checked + .slider:before {
	transform: translateX(19px);
}
.slider.round {
	border-radius: 34px;
	border: 3px solid #000;
}
.slider.round:before {
	border-radius: 50%;
}

/* Check / minus icons */
.icon-check,
.icon-minus {
	width: 16px;
	height: 16px;
}

/* Action buttons row */
.pricing-actions {
	border-bottom: none;
	padding: 40px 20px;
	justify-content: center;
}
.pricing-actions.pricing-pro-bg {
	border-radius: 0 0 30px 30px;
}

/* Pricing buttons */
.pricing-section .btn--primary {
	min-width: 250px;
	max-width: 90%;
	text-align: center;
}

/* Verified badge */
.verified-badge {
	display: inline;
	width: 33px;
	height: 31px;
	vertical-align: middle;
	margin-right: 4px;
}

/* ============================================================
   STICKY "GET STARTED" BUTTON (bottom-right corner)
   ============================================================ */
.sticky-cta {
	position: fixed;
	bottom: 1.5em;
	right: 1.5em;
	z-index: 500;
}
.sticky-cta .btn {
	box-shadow: 0px 4px 12px rgba(0,0,0,0.15);
}

/* ============================================================
   FOOTER
   Desktop: 3-column grid — Privacy left, logo center, Legal right,
   disclaimer centered below the logo.
   Mobile (≤1024px): stacked centered layout with extra bottom padding
   to work around Chrome DevTools device toolbar clipping.
   ============================================================ */
.site-footer {
	background: var(--lavender);
	padding: 20px var(--edge-padding);
	display: grid;
	grid-template-columns: 1fr 180px 1fr;
	grid-template-rows: auto auto;
	align-items: center;
}
.footer-logo {
	grid-column: 2;
	grid-row: 1;
	display: block;
	margin: 0 auto -40px;
	width: 180px;
	height: 180px;
}
.footer-links {
	grid-column: 1;
	grid-row: 1;
	display: flex;
	align-items: center;
	gap: 10px;
	justify-self: start;
}
.footer-links a {
	color: var(--palette1);
	text-decoration: none;
}
.footer-links a:hover {
	text-decoration: underline;
}
.footer-sep {
	color: var(--palette1);
	opacity: 0.4;
}
.footer-social {
	grid-column: 3;
	grid-row: 1;
	display: flex;
	gap: 20px;
	justify-self: end;
}
.footer-social a {
	color: var(--palette1);
	display: inline-flex;
	line-height: 0;
	opacity: 0.85;
	transition: opacity 0.2s ease;
}
.footer-social a:hover {
	opacity: 1;
}
.footer-note {
	grid-column: 1 / -1;
	grid-row: 2;
	text-align: center;
	margin: 1.5em 1em 0.5em;
}

/* ============================================================
   FEATURE PAGE — hero, inline pricing, checkmark list
   ============================================================ */


/* PDF download link with icon */
.pdf-download {
	display: flex;
	align-items: center;
	gap: 0.5em;
}
.pdf-download img {
	width: 32px;
	height: 32px;
	flex-shrink: 0;
}

/* Checkmark list (2-column, icon bullets) */
.check-list {
	list-style: none;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 15px 20px;
	margin-bottom: 1.5em;
}
.check-list li {
	position: relative;
	padding-left: 30px;
	margin: 0;
}
.check-list li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 5px;
	width: 22px;
	height: 22px;
	background: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%23161615' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") no-repeat center / contain;
}
.check-list--single {
	grid-template-columns: 1fr;
}

/* Inline pricing (3-column row: heading | Free | Pro) */
.inline-pricing-section {
	background: #f0f4f7;
	border-radius: 30px;
	padding: 40px;
}
.inline-pricing {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 30px;
}
.inline-pricing-heading {
	display: flex;
	align-items: center;
}
.inline-pricing-heading h2 {
	font-size: 32px;
	line-height: 1.4;
	margin: 0;
}
.inline-pricing-card {
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	padding: 50px 20px 20px;
}
.inline-pricing-card--free {
	background: #fff;
	border-radius: 30px;
}
.inline-pricing-card h3 {
	font-size: 32px;
	margin: 0;
}
.inline-pricing-card .pricing-price {
	font-size: 69px;
	font-weight: 700;
	line-height: 1;
	margin: 0;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media all and (max-width: 1024px) {
	/* Show mobile toggle, hide desktop nav */
	.mobile-toggle {
		display: block;
	}
	.desktop-nav {
		display: none;
	}
	/* mobile-drawer visibility handled by .is-open class */
	.desktop-only {
		display: none;
	}

	#masthead .header-inner,
	#masthead.is-sticky .header-inner {
		min-height: auto;
		padding: 0;
		align-items: center;
	}
	#masthead {
		background: transparent;
		background-image: none;
	}
	#masthead.is-sticky {
		background: var(--palette9);
		box-shadow: 0 1px 2px rgba(0,0,0,0.025);
	}
	#masthead .header-left,
	#masthead.is-sticky .header-left {
		padding-top: 0;
	}
	#masthead .header-right,
	#masthead.is-sticky .header-right {
		padding-top: 0;
		padding-right: 10px;
	}

	#masthead .site-logo img,
	#masthead.is-sticky .site-logo img {
		max-width: 200px;
		max-height: 140px;
		width: 140px;
		height: 140px;
		margin: -25px 0;
	}
	.site-branding {
		padding: 0 15px;
	}

	.mobile-toggle {
		padding: 0.3em 0.5em;
	}
	.mobile-toggle svg {
		width: 20px;
		height: 22px;
	}

	.hero-section {
		padding-top: 0;
		padding-bottom: 2rem;
		min-height: auto;
		position: relative;
		background-size: cover;
		background-position: 50% 0%;
		background-repeat: no-repeat;
	}
	.hero-section::before {
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		height: 40%;
		background: linear-gradient(to bottom, rgba(255,255,255,0.75), transparent);
		pointer-events: none;
		z-index: 0;
	}
	.hero-content {
		padding: 130px var(--edge-padding) 0;
		position: relative;
		z-index: 1;
	}
	.hero-text {
		max-width: 100%;
	}

	:root {
		--edge-padding: 1.5rem;
	}

	.entry-content-wrap {
		padding: 1.5rem 0.5rem;
	}

	.row {
		flex-direction: column;
		gap: 1.5em;
	}

	.check-list {
		grid-template-columns: 1fr;
	}

	.inline-pricing {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.card-grid {
		grid-template-columns: minmax(0, 1fr);
	}
	.card {
		padding: 30px;
	}
	.card-header h3 {
		font-size: 30px;
	}
	.card-grid-heading {
		padding: 1em 30px;
	}
	.card-grid-heading h3 {
		font-size: 35px;
	}
	.card--span-2, .card--span-3, .card--span-6 {
		grid-column: span 1;
	}

	/* Mobile footer: stacked centered layout. */
	.site-footer {
		display: block;
		text-align: center;
		padding: 40px 0 40px;
	}
	.footer-logo {
		margin: 0 auto;
		width: 160px;
		height: 160px;
	}
	.footer-links {
		flex-direction: column;
		align-items: center;
		gap: 0.5em;
		margin: 1em 0 0;
		width: 100%;
	}
	.footer-sep {
		display: none;
	}
	.footer-social {
		justify-content: center;
		margin: 1em 0 0;
		width: 100%;
	}
	.footer-note {
		text-align: center;
		margin: 1.5em 1em 1em;
	}

	/* Pricing mobile: stacked cards (Pro first, Free second) */
	.pricing-grid {
		grid-template-columns: 1fr;
	}
	.pricing-label {
		display: none;
	}
	.pricing-actions:empty {
		display: none;
	}
	.pricing-header-spacer {
		order: 0;
		border-bottom: none;
	}
	.pricing-header.pricing-pro-bg {
		order: 1;
		margin-top: 1.5rem;
		border-radius: 30px 30px 0 0;
	}
	.pricing-pro {
		order: 2;
	}
	.pricing-actions.pricing-pro-bg {
		order: 3;
		border-radius: 0 0 30px 30px;
	}
	.pricing-header:not(.pricing-header-spacer):not(.pricing-pro-bg) {
		order: 4;
		margin-top: 2rem;
	}
	.pricing-free {
		order: 5;
	}
	.pricing-actions:not(:empty):not(.pricing-pro-bg) {
		order: 6;
	}
	.pricing-free[data-label],
	.pricing-pro[data-label] {
		justify-content: space-between;
	}
	.pricing-free[data-label]::before,
	.pricing-pro[data-label]::before {
		content: attr(data-label);
		font-weight: 400;
		text-align: left;
		margin-right: 1rem;
	}
	.pricing-section .btn--primary {
		min-width: auto;
		width: 100%;
	}

}

@media all and (max-width: 767px) {
	h1 { font-size: 45px; }
	h2 { font-size: 35px; }
	#FAQ h2 { font-size: 35px; }
	.inline-pricing-heading h2 { font-size: 32px; }

	:root {
		--edge-padding: 1rem;
	}

	.site-branding {
		padding: 15px;
	}

	.hero-section {
		padding-top: 0;
		min-height: auto;
		margin-bottom: 0;
		background-image: url('../img/screenshots/en/hero-bg-mobile.webp');
		background-size: cover;
		background-position: 50% 0%;
	}
	html[lang="de"] .hero-section {
		background-image: url('../img/screenshots/de/hero-bg-mobile.webp');
	}
	html[lang="es"] .hero-section {
		background-image: url('../img/screenshots/es/hero-bg-mobile.webp');
	}

	.hero-keywords p {
		font-size: 1.3rem;
	}
	.hero-keywords--desktop {
		display: none;
	}
	.hero-keywords--mobile {
		display: block;
	}

	.screenshots-grid {
		grid-template-columns: 1fr;
		gap: 1em;
	}
	.screenshots-grid > *:nth-child(n+2) {
		margin-top: -5em;
	}
}
