/**
 * Aurelius Swiss — Exact Screenshot Match Design
 * 
 * Includes Header, Hero, Features, HIW, Trust Stats, CTA Banner, and Footer.
 * 
 * @package YTrip
 */

/* ==========================================================================
   1. CSS Variables & Reset
   ========================================================================== */
.ytrip-homepage {
	--yt-font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
	--yt-font-serif: "Playfair Display", "Georgia", "Times New Roman", serif;
	--yt-text: #4A4A5A;
	--yt-text-light: #7A7A8A;
	--yt-white: #FFFFFF;
	--yt-bg-light: #F9F9FB;
	--yt-cream: #F7F4EF;
	--yt-gold: #B7803F;
	--yt-border: #E5E5EB;
	--yt-border-light: rgba(255, 255, 255, 0.1);
	--yt-shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.05);
	--yt-shadow-md: 0 12px 32px rgba(0, 0, 0, 0.08);
	--yt-shadow-lg: 0 24px 48px rgba(0, 0, 0, 0.12);
	--yt-transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
	--yt-radius-sm: 8px;
	--yt-radius-md: 16px;
	--yt-radius-lg: 24px;
	--yt-spacing-section: 80px;

	font-family: var(--yt-font-sans);
	color: var(--yt-text);
	line-height: 1.6;
	overflow-x: hidden;
	background-color: var(--yt-white);
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

body.ytrip-aurelius-shell {
	--yt-font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
	--yt-font-serif: "Playfair Display", "Georgia", "Times New Roman", serif;
	--yt-primary: #1A1A2E;
	--yt-accent: #C8102E;
	--yt-accent-light: #D33A52;
	--yt-text: #4A4A5A;
	--yt-text-light: #7A7A8A;
	--yt-white: #FFFFFF;
	--yt-bg-light: #F9F9FB;
	--yt-cream: #F7F4EF;
	--yt-gold: #B7803F;
	--yt-border: #E5E5EB;
	--yt-shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.05);
	--yt-shadow-md: 0 12px 32px rgba(0, 0, 0, 0.08);
	--yt-shadow-lg: 0 24px 48px rgba(0, 0, 0, 0.12);
	--yt-transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
	--yt-radius-sm: 8px;
	--yt-radius-md: 16px;
	--yt-radius-lg: 24px;
	font-family: var(--yt-font-sans);
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

html:has(body.ytrip-aurelius-page),
body.ytrip-aurelius-page {
	height: auto !important;
	max-height: none !important;
	overflow-x: hidden !important;
}

html:has(body.ytrip-aurelius-page) {
	overflow-y: scroll !important;
	scroll-behavior: smooth;
}

body.ytrip-aurelius-page {
	overflow-y: visible !important;
}

body.ytrip-aurelius-page #page,
body.ytrip-aurelius-page .site,
body.ytrip-aurelius-page .site-content,
body.ytrip-aurelius-page .content-area,
body.ytrip-aurelius-page .ast-container,
body.ytrip-aurelius-page #primary,
body.ytrip-aurelius-page .site-main,
body.ytrip-aurelius-page .entry-content {
	height: auto !important;
	max-height: none !important;
	min-height: 0 !important;
	overflow: visible !important;
}

body.ytrip-aurelius-page.yt-menu-open {
	overflow: hidden !important;
}

html.yt-aurelius-menu-open {
	overflow: hidden !important;
}

.ytrip-landing-main,
.ytrip-landing-main:where(.site-main) {
	height: auto !important;
	max-height: none !important;
	min-height: 0;
	overflow: visible !important;
	overscroll-behavior: auto;
}

.ytrip-landing-main .ytrip-homepage {
	height: auto;
	max-height: none;
	overflow-y: visible;
}

.yt-hero,
.yt-hero__image-panel,
.yt-hero__content-wrap {
	max-height: none;
	overflow: hidden;
}

.ytrip-homepage * {
	box-sizing: border-box;
}

/* Base Typography */
.ytrip-homepage h1, .ytrip-homepage h2, .ytrip-homepage h3, .ytrip-homepage h4 {
	margin: 0;
	color: var(--yt-primary);
	line-height: 1.2;
	font-family: var(--yt-font-serif);
	font-weight: 700;
}

.ytrip-homepage p {
	margin: 0 0 1.5rem 0;
}
.ytrip-homepage p:last-child {
	margin-bottom: 0;
}

/* Layout Containers */
.yt-container {
	width: 100%;
	max-width: 1180px;
	margin: 0 auto;
	padding: 0 46px;
}
.ytrip-homepage--width-boxed .yt-container,
.ytrip-homepage--width-wide .yt-container,
.ytrip-homepage--width-full .yt-container { max-width: 1180px; }

/* ==========================================================================
   2. Header & Footer
   ========================================================================== */
.yt-header {
	background: transparent;
	padding: 20px 0 0;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
	border-bottom: 0;
	backdrop-filter: none;
}
body.admin-bar .yt-header {
	top: 32px;
}
.yt-header__inner {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	justify-content: initial;
	max-width: none;
}
.yt-header__logo img {
	height: 44px;
	width: auto;
}
.yt-header__logo-text {
	font-size: 1.125rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	color: var(--yt-primary);
	text-decoration: none;
	display: inline-flex;
	align-items: center;
}
.yt-header__nav {
	display: none;
	justify-self: center;
}
.yt-header__menu {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	gap: 42px;
}
.yt-header__menu a {
	text-decoration: none;
	color: #0F1020;
	font-weight: 500;
	font-size: 0.875rem;
	transition: var(--yt-transition);
}
.yt-header__menu a:hover {
	color: var(--yt-accent);
}
.yt-header__action {
	justify-self: end;
}
.yt-header__action .yt-btn {
	height: 38px;
	min-width: 122px;
}
.yt-header__button,
.yt-header__action .yt-header__button,
.yt-header__action a.yt-header__button {
	background: var(--yt-header-button-bg, var(--yt-accent)) !important;
	background: linear-gradient(180deg, color-mix(in srgb, var(--yt-header-button-bg, var(--yt-accent)) 88%, #000 12%) 0%, var(--yt-header-button-bg, var(--yt-accent)) 100%) !important;
	color: var(--yt-header-button-text, var(--yt-white)) !important;
	border-color: transparent !important;
	box-shadow: 0 8px 18px color-mix(in srgb, var(--yt-header-button-bg, var(--yt-accent)) 32%, transparent) !important;
}
.yt-header__button:hover,
.yt-header__button:focus-visible {
	color: var(--yt-header-button-text, var(--yt-white)) !important;
	filter: brightness(0.96);
	transform: translateY(-1px);
}
.yt-header__button .yt-btn__icon {
	color: currentColor !important;
}
.yt-header__mobile-toggle {
	display: block;
	justify-self: end;
	background: none;
	border: none;
	font-size: 1.5rem;
	color: var(--yt-primary);
	cursor: pointer;
	z-index: 102;
}
@media (min-width: 992px) {
	.yt-header__nav { display: block; }
	.yt-header__mobile-toggle { display: none; }
}

.yt-footer {
	background: #F8F8FA;
	padding: 24px 0 28px;
	border-top: 1px solid var(--yt-border);
	font-size: 0.75rem;
}
.yt-footer__inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 24px;
	text-align: center;
}
.yt-footer__logo-text {
	font-size: 1.125rem;
	font-weight: 800;
	color: var(--yt-primary);
	text-decoration: none;
}
.yt-footer__links {
	display: flex;
	gap: 22px;
	flex-wrap: wrap;
	justify-content: center;
}
.yt-footer__links a {
	color: #2F3040;
	text-decoration: none;
}
.yt-footer__links a:hover {
	color: var(--yt-accent);
}
.yt-footer__social {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 14px;
	flex-wrap: wrap;
}
.yt-footer__social a {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: #2F3040;
	text-decoration: none;
	font-size: 0.75rem;
	font-weight: 600;
	white-space: nowrap;
	transition: var(--yt-transition);
}
.yt-footer__social a:hover {
	color: var(--yt-accent);
}
.yt-footer__social svg {
	flex: 0 0 auto;
}
@media (min-width: 768px) {
	.yt-footer__inner {
		flex-direction: row;
		justify-content: space-between;
		text-align: left;
	}
}

/* Sitewide Aurelius shell: controlled header/footer outside the landing page. */
body.ytrip-aurelius-shell.ytrip-hide-theme-chrome #masthead,
body.ytrip-aurelius-shell.ytrip-hide-theme-chrome .site-header,
body.ytrip-aurelius-shell.ytrip-hide-theme-chrome header.site-header,
body.ytrip-aurelius-shell.ytrip-hide-theme-chrome .elementor-location-header,
body.ytrip-aurelius-shell.ytrip-hide-theme-chrome #colophon,
body.ytrip-aurelius-shell.ytrip-hide-theme-chrome .site-footer,
body.ytrip-aurelius-shell.ytrip-hide-theme-chrome footer.site-footer,
body.ytrip-aurelius-shell.ytrip-hide-theme-chrome .elementor-location-footer {
	display: none !important;
}

body.ytrip-hide-aurelius-header .yt-header,
body.ytrip-hide-aurelius-footer .yt-footer {
	display: none !important;
}

body.ytrip-hide-theme-header #masthead,
body.ytrip-hide-theme-header .site-header,
body.ytrip-hide-theme-header header.site-header,
body.ytrip-hide-theme-header .main-header-bar,
body.ytrip-hide-theme-header .elementor-location-header,
body.ytrip-hide-theme-header .wp-site-blocks > header,
body.ytrip-hide-theme-header .wp-block-template-part:has(header) {
	display: none !important;
}

body.ytrip-hide-theme-footer #colophon,
body.ytrip-hide-theme-footer .site-footer,
body.ytrip-hide-theme-footer footer.site-footer,
body.ytrip-hide-theme-footer .elementor-location-footer,
body.ytrip-hide-theme-footer .wp-site-blocks > footer,
body.ytrip-hide-theme-footer .wp-block-template-part:has(footer) {
	display: none !important;
}

body.ytrip-hide-page-title .entry-header,
body.ytrip-hide-page-title .page-header,
body.ytrip-hide-page-title .post-header,
body.ytrip-hide-page-title .ast-archive-description,
body.ytrip-hide-page-title .elementor-page-title,
body.ytrip-hide-page-title .wp-block-post-title,
body.ytrip-hide-page-title h1.entry-title,
body.ytrip-hide-page-title h1.page-title,
body.ytrip-hide-page-title h1.post-title {
	display: none !important;
}

body.ytrip-show-page-title .entry-header,
body.ytrip-show-page-title .page-header,
body.ytrip-show-page-title .post-header,
body.ytrip-show-page-title h1.entry-title,
body.ytrip-show-page-title h1.page-title,
body.ytrip-show-page-title h1.post-title {
	display: revert;
}

body.ytrip-aurelius-shell:not(.ytrip-aurelius-front) .yt-header {
	position: sticky;
	top: 0;
	padding: 12px 0;
	background: rgba(255,255,255,0.92);
	backdrop-filter: blur(16px);
	border-bottom: 1px solid rgba(26,26,46,0.08);
	box-shadow: 0 12px 34px rgba(20,20,28,0.08);
}

body.admin-bar.ytrip-aurelius-shell:not(.ytrip-aurelius-front) .yt-header {
	top: 32px;
}

body.ytrip-aurelius-shell:not(.ytrip-aurelius-front) .yt-header__logo img {
	height: 40px;
}

body.ytrip-aurelius-shell:not(.ytrip-aurelius-front) .yt-header + .site,
body.ytrip-aurelius-shell:not(.ytrip-aurelius-front) .yt-header + #page {
	margin-top: 0;
}

body.ytrip-aurelius-shell:not(.ytrip-aurelius-front) .site-main,
body.ytrip-aurelius-shell:not(.ytrip-aurelius-front) main,
body.ytrip-aurelius-shell:not(.ytrip-aurelius-front) #primary {
	min-height: 56vh;
}

body.ytrip-aurelius-shell:not(.ytrip-aurelius-front):is(.page, .single-post) .entry-content,
body.ytrip-aurelius-shell:not(.ytrip-aurelius-front):is(.page, .single-post) .entry-header,
body.ytrip-aurelius-shell:not(.ytrip-aurelius-front):is(.page, .single-post) .post-thumbnail {
	width: min(100% - 32px, 1040px);
	margin-inline: auto;
}

body.ytrip-aurelius-shell:not(.ytrip-aurelius-front):is(.page, .single-post) .entry-header {
	padding: clamp(44px, 7vw, 82px) 0 clamp(22px, 4vw, 38px);
	text-align: center;
}

body.ytrip-aurelius-shell:not(.ytrip-aurelius-front):is(.page, .single-post) .entry-title {
	font-family: var(--yt-font-serif);
	color: var(--yt-primary);
	font-size: clamp(2.15rem, 5vw, 4.25rem);
	line-height: 1.04;
	letter-spacing: 0;
	margin: 0;
}

body.ytrip-aurelius-shell:not(.ytrip-aurelius-front):is(.page, .single-post) .entry-content {
	padding: 0 0 clamp(56px, 8vw, 92px);
	color: #333642;
	font-family: var(--yt-font-sans);
	font-size: 1.0625rem;
	line-height: 1.8;
}

body.ytrip-aurelius-shell:not(.ytrip-aurelius-front):is(.page, .single-post) .entry-content > * {
	max-width: 820px;
	margin-left: auto;
	margin-right: auto;
}

body.ytrip-aurelius-shell:not(.ytrip-aurelius-front):is(.page, .single-post) .entry-content > .alignwide {
	max-width: 1040px;
}

body.ytrip-aurelius-shell:not(.ytrip-aurelius-front):is(.page, .single-post) .entry-content > .alignfull {
	width: 100vw;
	max-width: none;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
}

body.ytrip-aurelius-shell:not(.ytrip-aurelius-front):is(.page, .single-post) .entry-content h2,
body.ytrip-aurelius-shell:not(.ytrip-aurelius-front):is(.page, .single-post) .entry-content h3 {
	color: var(--yt-primary);
	line-height: 1.16;
	margin-top: 2.2em;
	margin-bottom: 0.75em;
}

body.ytrip-aurelius-shell:not(.ytrip-aurelius-front):is(.page, .single-post) .entry-content h2 {
	font-size: clamp(1.65rem, 3vw, 2.35rem);
}

body.ytrip-aurelius-shell:not(.ytrip-aurelius-front):is(.page, .single-post) .entry-content h3 {
	font-size: clamp(1.3rem, 2.2vw, 1.7rem);
}

body.ytrip-aurelius-shell:not(.ytrip-aurelius-front):is(.page, .single-post) .entry-content a {
	color: var(--yt-accent);
	text-underline-offset: 0.18em;
}

body.ytrip-aurelius-shell:not(.ytrip-aurelius-front):is(.page, .single-post) .entry-content img {
	max-width: 100%;
	height: auto;
	border-radius: 12px;
}

body.ytrip-aurelius-shell:not(.ytrip-aurelius-front):is(.page, .single-post) .entry-content blockquote {
	padding: 24px 28px;
	border-left: 4px solid var(--yt-gold);
	background: #FBFAF8;
	border-radius: 8px;
	color: #222330;
}

body.ytrip-aurelius-shell:not(.ytrip-aurelius-front):is(.page, .single-post) .entry-content .wp-block-button__link,
body.ytrip-aurelius-shell:not(.ytrip-aurelius-front):is(.page, .single-post) .entry-content button,
body.ytrip-aurelius-shell:not(.ytrip-aurelius-front):is(.page, .single-post) .entry-content input[type="submit"] {
	border-radius: 999px;
	background: var(--yt-accent);
	color: #fff;
	font-weight: 800;
	box-shadow: 0 10px 24px rgba(200,16,46,0.18);
}

/* ==========================================================================
   3. Buttons
   ========================================================================== */
.yt-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	padding: 15px 23px;
	font-size: 0.9375rem;
	font-weight: 700;
	font-family: var(--yt-font-sans);
	text-decoration: none;
	border-radius: 50px;
	transition: var(--yt-transition);
	cursor: pointer;
	border: 2px solid transparent;
	line-height: 1;
}

.yt-btn--sm {
	padding: 12px 22px;
	font-size: 0.875rem;
}

.yt-btn__icon {
	font-size: 1.1em;
	display: flex;
	align-items: center;
}

.yt-btn--primary {
	background: linear-gradient(180deg, #B70708 0%, var(--yt-accent) 100%);
	color: var(--yt-white);
	box-shadow: 0 8px 18px rgba(184, 0, 0, 0.18);
}

.yt-btn--primary:hover {
	background-color: var(--yt-primary);
	color: var(--yt-white);
}

.yt-btn--outline {
	background-color: rgba(255,255,255,0.76);
	color: #141421;
	border-color: #1F1F2A;
}

.yt-btn--outline:hover {
	border-color: var(--yt-primary);
}

.yt-btn--play {
	background-color: rgba(255,255,255,0.68);
	box-shadow: none;
	border-color: #20202A;
}
.yt-btn--play .yt-btn__icon {
	width: 28px;
	height: 28px;
	border-radius: 50%;
	border: 1px solid var(--yt-primary);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.7em;
}

/* ==========================================================================
   4. Hero Section
   ========================================================================== */
.yt-hero {
	position: relative;
	background-color: var(--yt-cream);
	display: flex;
	align-items: center;
	overflow: hidden;
	padding: 119px 0 76px;
	min-height: var(--yt-hero-height-desktop, 735px);
}

.yt-hero__content-wrap,
.yt-hero--split .yt-hero__content-wrap,
.yt-hero--fullscreen .yt-hero__content-wrap {
	position: relative;
	z-index: 2;
}

.yt-hero__content,
.yt-hero--split .yt-hero__content,
.yt-hero--fullscreen .yt-hero__content {
	width: 100%;
	max-width: 430px;
	padding-right: 20px;
}

.yt-hero__image-panel,
.yt-hero--split .yt-hero__image-panel,
.yt-hero--fullscreen .yt-hero__image-panel {
	position: absolute;
	right: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.yt-hero__image-panel::after,
.yt-hero--split .yt-hero__image-panel::after,
.yt-hero--fullscreen .yt-hero__image-panel::after {
	content: '';
	position: absolute;
	inset: 0;
	background:
		linear-gradient(90deg, rgba(250,247,242,0.98) 0%, rgba(250,247,242,0.93) 33%, rgba(250,247,242,0.46) 48%, rgba(250,247,242,0) 68%),
		linear-gradient(180deg, rgba(255,255,255,0.55) 0%, rgba(255,255,255,0) 26%, rgba(255,255,255,0) 100%);
}

.yt-hero__img {
	width: 100%;
	height: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
	object-position: var(--yt-hero-position-desktop, center center);
	image-rendering: auto;
}

.yt-hero__eyebrow {
	font-size: 0.6875rem;
	font-family: var(--yt-font-sans);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.2em;
	color: var(--yt-gold);
	margin-bottom: 2.05rem;
	display: flex;
	align-items: center;
	gap: 16px;
}
.yt-hero__eyebrow::before,
.yt-hero__eyebrow::after {
	content: '';
	display: block;
	width: 20px;
	height: 1px;
	background-color: currentColor;
}
.yt-hero__eyebrow::before {
	position: relative;
}
.yt-hero__eyebrow::before::after {
	content: '';
	position: absolute;
	right: 0;
	top: -2px;
	width: 5px; height: 5px;
	background: currentColor;
	transform: rotate(45deg);
}

.yt-hero__headline {
	font-size: clamp(3rem, 4.1vw, 3.1rem);
	line-height: 1.07;
	letter-spacing: 0;
	color: #181725;
	margin-bottom: 2rem !important;
}

.yt-hero__hl-accent {
	color: #A80708;
}

.yt-hero__subtitle {
	font-family: var(--yt-font-sans);
	font-size: 1rem;
	line-height: 1.7;
	color: #333642;
	margin-bottom: 2rem;
	max-width: 430px;
}

.yt-hero__actions {
	display: flex;
	gap: 1.15rem;
	flex-wrap: wrap;
	margin-bottom: 1.9rem;
}

.yt-hero__trust {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: var(--yt-font-sans);
	font-size: 0.875rem;
	color: var(--yt-text);
	background: transparent;
	padding: 0;
	border-radius: 0;
	border: 0;
}
.yt-hero__trust svg {
	color: var(--yt-gold);
}

.yt-hero--effect-zoom .yt-hero__img {
	animation: ytHeroZoom 18s ease-in-out infinite alternate;
	transform-origin: center;
}

.yt-hero--effect-parallax .yt-hero__img {
	transform: translate3d(0, var(--yt-parallax-y, 0px), 0) scale(1.06);
	will-change: transform;
}

.yt-hero[data-hero-effect="none"] .yt-hero__img {
	animation: none;
	transform: none;
}

.yt-hero--effect-sticky-overlap {
	position: relative;
	z-index: 1;
	isolation: isolate;
}

.yt-hero--effect-sticky-overlap .yt-hero__img {
	transform: translate3d(0, var(--yt-overlap-y, 0px), 0) scale(1.018);
	transform-origin: center;
	will-change: transform;
}

.yt-hero--effect-sticky-overlap::before {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: -24px;
	height: 48px;
	z-index: 3;
	pointer-events: none;
	background: linear-gradient(180deg, rgba(247,244,239,0) 0%, rgba(255,255,255,0.72) 100%);
}

.yt-hero--effect-sticky-overlap + .yt-features {
	margin-top: -8px;
}

.yt-features,
.yt-hiw,
.yt-faq,
.yt-form,
.yt-trust,
.yt-cta-banner,
.yt-footer {
	position: relative;
	z-index: 2;
}

@keyframes ytHeroZoom {
	from { transform: scale(1); }
	to { transform: scale(1.055); }
}

.yt-reveal {
	opacity: 0;
	transform: translateY(22px);
	transition: opacity 520ms ease, transform 520ms ease;
	will-change: opacity, transform;
}

.yt-reveal--visible {
	opacity: 1;
	transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
	html:has(body.ytrip-aurelius-page) {
		scroll-behavior: auto;
	}
	.yt-hero--effect-zoom .yt-hero__img,
	.yt-hero--effect-parallax .yt-hero__img,
	.yt-hero--effect-sticky-overlap .yt-hero__img,
	.yt-reveal {
		animation: none;
		transition: none;
		transform: none;
		opacity: 1;
	}
	.yt-hero--effect-sticky-overlap {
		position: relative;
		top: auto;
	}
}

@media (max-width: 991px) {
	.yt-hero--effect-sticky-overlap {
		position: relative;
		top: auto;
	}
	.yt-hero--effect-sticky-overlap::before {
		display: none;
	}
	.yt-hero--effect-sticky-overlap + .yt-features {
		margin-top: 0;
	}
	body.admin-bar .yt-header {
		top: 46px;
	}
	.yt-header {
		padding-top: 14px;
	}
	.yt-header__inner {
		grid-template-columns: auto 1fr auto;
		padding: 0 22px;
	}
	.yt-header__nav {
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
		width: 100vw;
		max-width: none;
		display: block;
		visibility: hidden;
		opacity: 0;
		transform: translateY(-12px);
		background: rgba(255,255,255,0.92);
		backdrop-filter: blur(18px);
		border-bottom: 1px solid rgba(20,20,28,0.08);
		box-shadow: 0 20px 44px rgba(20,20,28,0.12);
		padding: 86px 18px 20px;
		z-index: 101;
		box-sizing: border-box;
		transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
	}
	body.admin-bar .yt-header__nav {
		top: 46px;
	}
	.yt-header--menu-open .yt-header__nav {
		visibility: visible;
		opacity: 1;
		transform: translateY(0);
	}
	.yt-header__menu {
		flex-direction: column;
		align-items: flex-start;
		gap: 0;
		width: min(100%, 380px);
		margin: 0 auto;
		padding: 8px;
		background: rgba(255,255,255,0.96);
		border: 1px solid rgba(20,20,28,0.08);
		border-radius: 16px;
		box-shadow: 0 18px 44px rgba(20,20,28,0.12);
	}
	.yt-header__menu a {
		display: block;
		width: 100%;
		padding: 13px 14px;
		font-size: 1rem;
		font-weight: 700;
		color: #11111d;
		border-radius: 12px;
	}
	.yt-header__menu a:hover,
	.yt-header__menu a:focus-visible {
		background: rgba(200,16,46,0.08);
		color: var(--yt-accent);
		outline: none;
	}
	.yt-header__logo img {
		height: 34px;
	}
	.yt-header__action {
		display: none;
	}
	.yt-header__mobile-toggle {
		width: 52px;
		height: 44px;
		display: inline-flex;
		align-items: center;
		justify-content: center;
		font-size: 1.125rem;
		color: var(--yt-white);
		background: var(--yt-accent);
		border-radius: 14px;
		box-shadow: 0 10px 24px rgba(200,16,46,0.25);
	}
	.yt-hero {
		min-height: var(--yt-hero-height-mobile, 680px);
		padding: 108px 0 46px;
	}
	.yt-hero--effect-parallax .yt-hero__img {
		transform: none;
	}
	.yt-hero--effect-zoom .yt-hero__img {
		animation: none;
	}
	.yt-hero__content,
	.yt-hero--split .yt-hero__content,
	.yt-hero--fullscreen .yt-hero__content {
		max-width: min(100%, 430px);
		padding-right: 0;
		text-align: left;
	}
	.yt-hero__eyebrow {
		font-size: 0.625rem;
		gap: 10px;
		letter-spacing: 0.18em;
		margin-bottom: 0.85rem;
	}
	.yt-hero__eyebrow::before,
	.yt-hero__eyebrow::after {
		width: 15px;
	}
	.yt-hero__headline {
		font-size: clamp(2.35rem, 8.2vw, 3.05rem);
		line-height: 1.05;
		margin-bottom: 1rem;
	}
	.yt-hero__subtitle {
		font-size: 0.875rem;
		line-height: 1.65;
		max-width: 390px;
		margin-bottom: 1.25rem;
	}
	.yt-hero__actions {
		gap: 0.8rem;
		margin-bottom: 1.15rem;
	}
	.yt-btn {
		min-height: 44px;
		padding: 12px 20px;
		font-size: 0.875rem;
	}
	.yt-hero__image-panel::after,
	.yt-hero--split .yt-hero__image-panel::after,
	.yt-hero--fullscreen .yt-hero__image-panel::after {
		background:
			linear-gradient(90deg, rgba(250,247,242,0.98) 0%, rgba(250,247,242,0.88) 49%, rgba(250,247,242,0.14) 100%),
			linear-gradient(180deg, rgba(255,255,255,0.5) 0%, rgba(255,255,255,0) 38%, rgba(255,255,255,0.1) 100%);
	}
	.yt-hero__img {
		object-position: var(--yt-hero-position-mobile, 85% center);
	}
}

@media (max-width: 640px) {
	.yt-container {
		padding: 0 16px;
	}
	.yt-hero {
		min-height: var(--yt-hero-height-mobile, 650px);
		padding-top: 96px;
		padding-bottom: 36px;
	}
	.yt-hero__headline {
		font-size: clamp(2.05rem, 10.2vw, 2.65rem);
		line-height: 1.04;
	}
	.yt-hero__actions {
		flex-direction: row;
		align-items: center;
	}
	.yt-hero__img {
		object-position: var(--yt-hero-position-mobile, 85% center);
	}
}

@media (max-width: 420px) {
	body.admin-bar .yt-header {
		top: 46px;
	}
	.yt-header__inner {
		padding: 0 10px;
	}
	.yt-header__logo img {
		height: 29px;
		max-width: 150px;
		object-fit: contain;
	}
	.yt-header__mobile-toggle {
		width: 50px;
		height: 40px;
		font-size: 1rem;
	}
	.yt-hero {
		min-height: var(--yt-hero-height-mobile, 625px);
		padding-top: 92px;
	}
	.yt-hero__eyebrow {
		font-size: 0.52rem;
		letter-spacing: 0.14em;
		gap: 8px;
		margin-bottom: 0.65rem;
	}
	.yt-hero__headline {
		font-size: clamp(1.98rem, 9.7vw, 2.45rem);
		max-width: 100%;
	}
	.yt-hero__subtitle {
		font-size: 0.8125rem;
		line-height: 1.55;
		max-width: 315px;
		margin-bottom: 1rem;
	}
	.yt-hero__actions {
		gap: 0.65rem;
	}
	.yt-btn {
		min-height: 42px;
		padding: 11px 16px;
		font-size: 0.75rem;
	}
	.yt-hero__trust {
		font-size: 0.75rem;
	}
	.yt-hero__img {
		object-position: var(--yt-hero-position-mobile, 85% center);
	}
	.yt-hero__image-panel::after,
	.yt-hero--split .yt-hero__image-panel::after,
	.yt-hero--fullscreen .yt-hero__image-panel::after {
		background:
			linear-gradient(90deg, rgba(250,247,242,0.98) 0%, rgba(250,247,242,0.92) 58%, rgba(250,247,242,0.22) 100%),
			linear-gradient(180deg, rgba(255,255,255,0.45) 0%, rgba(255,255,255,0) 42%, rgba(255,255,255,0.18) 100%);
	}
}

/* ==========================================================================
   5. Feature Highlights
   ========================================================================== */
.yt-features {
	background-color: var(--yt-features-bg, var(--yt-white));
	padding: 40px 0 38px;
	border-bottom: 1px solid #ECE9E5;
}

.yt-features__grid {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 0;
	margin: 0;
	padding: 0;
	list-style: none;
}

.yt-feature-card {
	flex: 1;
	min-width: 200px;
	text-align: center;
	padding: 0 38px;
	border-right: 1px solid #D8C3A9;
}
.yt-feature-card:last-child {
	border-right: none;
}

.yt-feature-card__icon {
	color: var(--yt-gold);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 16px;
}
.yt-feature-card__icon svg {
	width: 32px;
	height: 32px;
	stroke-width: 1.5;
}

.yt-feature-card__title {
	font-family: var(--yt-font-sans);
	font-size: 0.875rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	margin-bottom: 8px;
}

.yt-feature-card__desc {
	color: #464853;
	font-family: var(--yt-font-sans);
	font-size: 0.875rem;
	line-height: 1.4;
}

@media (max-width: 768px) {
	.yt-features {
		padding: 28px 0;
	}
	.yt-features__grid {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 22px 0;
	}
	.yt-feature-card {
		min-width: 0;
		border-right: none;
		border-bottom: 0;
		padding: 0 18px;
	}
	.yt-feature-card__icon {
		margin-bottom: 10px;
	}
	.yt-feature-card__icon svg {
		width: 28px;
		height: 28px;
	}
	.yt-feature-card__title {
		font-size: 0.75rem;
	}
	.yt-feature-card__desc {
		font-size: 0.75rem;
		line-height: 1.45;
	}
}

/* ==========================================================================
   6. How It Works
   ========================================================================== */
.yt-hiw {
	padding: 34px 0 54px;
	background-color: var(--yt-hiw-bg, var(--yt-white));
	text-align: center;
}

.yt-section-header {
	margin-bottom: 22px;
}

.yt-section-header__eyebrow {
	font-size: 0.75rem;
	font-weight: 700;
	font-family: var(--yt-font-sans);
	text-transform: uppercase;
	letter-spacing: 0.15em;
	color: var(--yt-gold);
	margin-bottom: 12px;
}

.yt-section-header__title {
	font-size: clamp(1.75rem, 2.55vw, 2rem);
}

.yt-hiw__steps {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 38px;
	position: relative;
	margin: 0;
	padding: 0;
	list-style: none;
}

@media (max-width: 991px) {
	.yt-hiw__steps {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 640px) {
	.yt-hiw__steps {
		grid-template-columns: 1fr;
		gap: 20px;
	}
	.yt-hiw {
		padding: 30px 0 38px;
	}
	.yt-section-header__eyebrow {
		font-size: 0.625rem;
	}
	.yt-section-header__title {
		font-size: 1.75rem;
	}
	.yt-hiw__step {
		min-height: auto;
		padding: 26px 18px 24px;
	}
}

.yt-hiw__step {
	position: relative;
	background: var(--yt-white);
	border: 1px solid var(--yt-border);
	border-radius: var(--yt-radius-sm);
	padding: 35px 20px 27px;
	min-height: 146px;
	text-align: center;
	z-index: 2;
	box-shadow: 0 12px 30px rgba(20, 20, 28, 0.06);
}

.yt-hiw__badge {
	position: absolute;
	top: 18px;
	left: 18px;
	width: 24px;
	height: 24px;
	background-color: var(--yt-gold);
	color: var(--yt-white);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.875rem;
	font-weight: 700;
	font-family: var(--yt-font-sans);
}

.yt-hiw__icon-wrap {
	color: var(--yt-gold);
	margin-bottom: 14px;
}
.yt-hiw__icon-wrap svg {
	width: 38px;
	height: 38px;
	stroke-width: 1.5;
}

.yt-hiw__step:nth-child(3) .yt-hiw__icon-wrap {
	color: #48B56A;
}

.yt-hiw__step-title {
	font-family: var(--yt-font-sans);
	font-size: 0.875rem;
	font-weight: 700;
	margin-bottom: 8px;
}

.yt-hiw__step-desc {
	font-family: var(--yt-font-sans);
	font-size: 0.75rem;
	color: #4F515C;
}

.yt-hiw__arrow {
	position: absolute;
	top: 50%;
	right: -33px;
	transform: translateY(-50%);
	color: #5E5E64;
	z-index: 1;
}

@media (max-width: 991px) {
	.yt-hiw__arrow { display: none; }
}

/* ==========================================================================
   7. Trust & Stats
   ========================================================================== */
.yt-trust {
	padding: 24px 0 16px;
	background-color: var(--yt-trust-bg, var(--yt-white));
}

.yt-trust__inner {
	display: grid;
	grid-template-columns: 300px 1fr;
	background: #FBFAF8;
	border-radius: 8px;
	overflow: hidden;
	border: 1px solid var(--yt-border);
	box-shadow: 0 12px 28px rgba(20,20,28,0.04);
}

.yt-trust__image-wrap {
	min-height: 172px;
}
.yt-trust__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: left center;
}

.yt-trust__body {
	padding: 29px 41px;
	display: grid;
	grid-template-columns: minmax(210px, 1fr) auto;
	align-items: center;
	column-gap: 34px;
}

.yt-trust__copy {
	min-width: 0;
}

.yt-trust__title {
	font-size: clamp(1.5rem, 2.6vw, 2rem);
	line-height: 1.05;
	margin-bottom: 0.75rem;
}

.yt-trust__subtitle {
	font-family: var(--yt-font-sans);
	font-size: 0.8125rem;
	color: var(--yt-text);
	line-height: 1.6;
	margin-bottom: 0;
	max-width: 260px;
}

.yt-trust__stats {
	display: flex;
	gap: 0;
	flex-wrap: wrap;
	margin: 0;
}

.yt-trust__stat {
	display: flex;
	flex-direction: column;
	align-items: center;
	min-width: 124px;
	padding: 0 24px;
	border-left: 1px solid #D8C3A9;
	text-align: center;
}

.yt-trust__stat-number {
	font-family: var(--yt-font-serif);
	font-size: clamp(2rem, 3vw, 2.5rem);
	font-weight: 400;
	color: var(--yt-primary);
	line-height: 1;
	margin-bottom: 8px;
}

.yt-trust__stat-label {
	font-family: var(--yt-font-sans);
	font-size: 0.75rem;
	color: #333642;
	font-weight: 500;
	margin: 0;
}

@media (max-width: 768px) {
	.yt-trust {
		padding: 18px 0 14px;
	}
	.yt-trust__inner {
		grid-template-columns: 1fr;
	}
	.yt-trust__image-wrap {
		height: 165px;
		order: -1;
	}
	.yt-trust__body {
		grid-template-columns: 1fr;
		row-gap: 20px;
		padding: 24px 20px;
		text-align: center;
	}
	.yt-trust__subtitle {
		margin-inline: auto;
	}
	.yt-trust__stats {
		justify-content: center;
		width: 100%;
	}
	.yt-trust__stat {
		border-left: 0;
		min-width: 92px;
		padding: 0 12px;
	}
	.yt-trust__stat-number {
		font-size: 1.9rem;
	}
	.yt-trust__stat-label {
		font-size: 0.6875rem;
	}
}

/* ==========================================================================
   8. FAQ
   ========================================================================== */
.yt-faq {
	background: var(--yt-faq-bg, var(--yt-white));
	padding: 52px 0 28px;
}

.yt-faq__inner {
	display: grid;
	grid-template-columns: minmax(240px, 0.8fr) minmax(0, 1.2fr);
	gap: 48px;
	align-items: start;
}

.yt-faq__intro {
	padding-top: 12px;
}

.yt-faq__title {
	font-size: clamp(1.85rem, 3vw, 2.45rem);
	line-height: 1.08;
	margin-bottom: 14px;
}

.yt-faq__subtitle {
	max-width: 360px;
	color: #4F515C;
	font-family: var(--yt-font-sans);
	font-size: 0.9375rem;
	line-height: 1.75;
}

.yt-faq__list {
	display: grid;
	gap: 12px;
}

.yt-faq__item {
	background:
		linear-gradient(180deg, rgba(255,255,255,0.98), rgba(255,255,255,0.92)),
		linear-gradient(135deg, rgba(183,128,63,0.13), rgba(200,16,46,0.07));
	border: 1px solid rgba(26,26,46,0.09);
	border-radius: 12px;
	box-shadow: 0 14px 34px rgba(20,20,28,0.06);
	overflow: hidden;
}

.yt-faq__question {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 20px 22px;
	cursor: pointer;
	color: var(--yt-primary);
	font-family: var(--yt-font-sans);
	font-size: 1rem;
	font-weight: 800;
	line-height: 1.35;
	list-style: none;
}

.yt-faq__question::-webkit-details-marker {
	display: none;
}

.yt-faq__icon {
	position: relative;
	flex: 0 0 30px;
	width: 30px;
	height: 30px;
	border-radius: 999px;
	background: rgba(183,128,63,0.12);
	border: 1px solid rgba(183,128,63,0.32);
}

.yt-faq__icon::before,
.yt-faq__icon::after {
	content: '';
	position: absolute;
	left: 50%;
	top: 50%;
	width: 12px;
	height: 2px;
	background: var(--yt-gold);
	border-radius: 999px;
	transform: translate(-50%, -50%);
	transition: transform 180ms ease;
}

.yt-faq__icon::after {
	transform: translate(-50%, -50%) rotate(90deg);
}

.yt-faq__item[open] .yt-faq__icon {
	background: var(--yt-accent);
	border-color: var(--yt-accent);
}

.yt-faq__item[open] .yt-faq__icon::before,
.yt-faq__item[open] .yt-faq__icon::after {
	background: var(--yt-white);
}

.yt-faq__item[open] .yt-faq__icon::after {
	transform: translate(-50%, -50%) rotate(0deg);
}

.yt-faq__answer {
	padding: 0 22px 22px;
	color: #4F515C;
	font-family: var(--yt-font-sans);
	font-size: 0.9375rem;
	line-height: 1.75;
}

.yt-faq__answer p {
	margin: 0;
	max-width: 680px;
}

@media (max-width: 768px) {
	.yt-faq {
		padding: 38px 0 22px;
	}
	.yt-faq__inner {
		grid-template-columns: 1fr;
		gap: 22px;
	}
	.yt-faq__intro {
		padding-top: 0;
		text-align: center;
	}
	.yt-faq__subtitle {
		margin-inline: auto;
	}
	.yt-faq__question {
		padding: 18px 16px;
		font-size: 0.9375rem;
	}
	.yt-faq__answer {
		padding: 0 16px 18px;
		font-size: 0.875rem;
	}
}

/* ==========================================================================
   9. CTA Banner
   ========================================================================== */
.yt-cta-banner {
	padding: 0 0 22px 0;
}

.yt-cta-banner__inner {
	background: linear-gradient(180deg, #B70708 0%, var(--yt-accent) 100%);
	border-radius: 8px;
	padding: 25px 46px 25px 39px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
	color: var(--yt-white);
}

.yt-cta-banner__text {
	display: flex;
	align-items: center;
	gap: 32px;
}

.yt-cta-banner__icon {
	color: var(--yt-white);
	opacity: 0.95;
	border: 3px solid currentColor;
	border-radius: 999px;
	width: 58px;
	height: 58px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.yt-cta-banner__icon svg {
	width: 32px;
	height: 32px;
}

.yt-cta-banner__headline {
	font-family: var(--yt-font-sans);
	font-size: 1rem;
	font-weight: 700;
	margin-bottom: 4px;
	color: var(--yt-white);
}

.yt-cta-banner__subtext {
	font-family: var(--yt-font-sans);
	font-size: 0.875rem;
	opacity: 0.9;
	margin: 0;
}

.yt-cta-banner__btn {
	background-color: var(--yt-white);
	color: var(--yt-primary);
	border: none;
	padding: 15px 32px;
	font-family: var(--yt-font-sans);
	font-weight: 700;
	font-size: 1rem;
	border-radius: 7px;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 12px;
	white-space: nowrap;
	transition: var(--yt-transition);
	min-width: 240px;
	justify-content: center;
}
.yt-cta-banner__btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

@media (max-width: 991px) {
	.yt-cta-banner__inner {
		flex-direction: column;
		text-align: center;
		padding: 30px 20px;
	}
	.yt-cta-banner__text {
		flex-direction: column;
		gap: 16px;
	}
}

@media (max-width: 640px) {
	.yt-cta-banner__inner {
		border-radius: 8px;
		padding: 24px 18px;
	}
	.yt-cta-banner__icon {
		width: 48px;
		height: 48px;
	}
	.yt-cta-banner__headline {
		font-size: 0.875rem;
	}
	.yt-cta-banner__subtext {
		font-size: 0.75rem;
	}
	.yt-cta-banner__btn {
		min-width: 0;
		width: 100%;
		max-width: 260px;
		font-size: 0.875rem;
	}
	.yt-footer__inner {
		gap: 18px;
	}
	.yt-footer__links {
		gap: 22px;
	}
	.yt-footer__social {
		gap: 12px;
	}
	.yt-footer__social a {
		font-size: 0.6875rem;
	}
	.yt-footer__logo img {
		height: 42px;
	}
}

/* ==========================================================================
   10. Form Section (CF7 Presets)
   ========================================================================== */
.yt-form {
	position: relative;
	padding: clamp(54px, 7vw, 88px) 0;
	background:
		linear-gradient(135deg, rgba(183,128,63,0.10) 0%, rgba(255,255,255,0) 44%),
		linear-gradient(180deg, var(--yt-form-bg, #FBFAF8) 0%, #FFFFFF 100%);
	overflow: hidden;
}

.yt-form::before {
	content: '';
	position: absolute;
	inset: 24px 0 auto auto;
	width: min(34vw, 420px);
	aspect-ratio: 1;
	background: radial-gradient(circle, rgba(200,16,46,0.10) 0%, rgba(200,16,46,0) 68%);
	pointer-events: none;
}

.yt-form__grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
	gap: clamp(34px, 6vw, 72px);
	align-items: center;
}

.yt-form__content {
	padding-right: 0;
}

.yt-form__badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin: 0 0 18px;
	padding: 8px 12px;
	border: 1px solid rgba(183,128,63,0.28);
	border-radius: 999px;
	background: rgba(255,255,255,0.74);
	color: var(--yt-gold);
	font-family: var(--yt-font-sans);
	font-size: 0.75rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	box-shadow: 0 10px 24px rgba(20,20,28,0.05);
}

.yt-form__badge span {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--yt-accent);
	box-shadow: 0 0 0 5px rgba(200,16,46,0.10);
}

.yt-form__eyebrow {
	font-size: 0.875rem;
	font-family: var(--yt-font-sans);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.15em;
	color: var(--yt-accent);
	margin-bottom: 1rem;
}

.yt-form__headline {
	font-size: clamp(2.15rem, 4vw, 3.35rem);
	line-height: 1.05;
	margin-bottom: 1.1rem;
}

.yt-form__subtitle {
	font-size: 1rem;
	line-height: 1.75;
	color: #4F515C;
	max-width: 440px;
}

.yt-form__note {
	display: flex;
	gap: 14px;
	align-items: flex-start;
	margin-top: 26px;
	padding: 18px;
	max-width: 430px;
	border: 1px solid rgba(26,26,46,0.08);
	border-radius: 12px;
	background: rgba(255,255,255,0.72);
	box-shadow: 0 16px 40px rgba(20,20,28,0.06);
}

.yt-form__note i {
	flex: 0 0 42px;
	width: 42px;
	height: 42px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 12px;
	background: rgba(200,16,46,0.10);
	color: var(--yt-accent);
	font-size: 1.1rem;
}

.yt-form__note p {
	color: #333642;
	font-size: 0.875rem;
	line-height: 1.65;
	margin: 0;
}

.yt-form__wrapper {
	position: relative;
	padding: clamp(22px, 3vw, 34px);
	border: 1px solid rgba(26,26,46,0.10);
	border-radius: 16px;
	background: var(--yt-form-card-bg, #FFFFFF);
	box-shadow: 0 24px 64px rgba(20,20,28,0.11);
}

.yt-form__trust {
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 0 20px;
	padding: 10px 14px;
	border-radius: 999px;
	background: #FBFAF8;
	color: #333642;
	font-size: 0.8125rem;
	font-weight: 700;
	text-align: center;
}

/* Form Styles */
.yt-form__wrapper .wpcf7-form { display: grid; gap: 16px; }
.yt-form__wrapper .wpcf7-form p { margin: 0; }
.yt-form__wrapper .wpcf7-text,
.yt-form__wrapper .wpcf7-textarea,
.yt-form__wrapper .wpcf7-select {
	width: 100%;
	padding: 15px 16px;
	font-size: 0.9375rem;
	font-family: var(--yt-font-sans);
	border: 1px solid rgba(26,26,46,0.12);
	border-radius: 10px;
	background: #FFFFFF;
	color: #181725;
	box-shadow: inset 0 1px 0 rgba(255,255,255,0.8);
}
.yt-form__wrapper .wpcf7-text:focus,
.yt-form__wrapper .wpcf7-textarea:focus,
.yt-form__wrapper .wpcf7-select:focus {
	border-color: rgba(200,16,46,0.42);
	box-shadow: 0 0 0 4px rgba(200,16,46,0.10);
	outline: none;
}
.yt-form__wrapper .wpcf7-submit {
	width: 100%;
	padding: 16px 32px;
	font-size: 1rem;
	font-family: var(--yt-font-sans);
	font-weight: 800;
	background: linear-gradient(180deg, #B70708 0%, var(--yt-accent) 100%);
	color: var(--yt-white);
	border-radius: 50px;
	border: none;
	cursor: pointer;
	box-shadow: 0 14px 28px rgba(200,16,46,0.22);
	transition: transform 180ms ease, box-shadow 180ms ease;
}
.yt-form__wrapper .wpcf7-submit:hover {
	transform: translateY(-1px);
	box-shadow: 0 18px 34px rgba(200,16,46,0.28);
}

@media (max-width: 991px) {
	.yt-form__grid { grid-template-columns: 1fr; }
	.yt-form__content { text-align: center; }
	.yt-form__subtitle,
	.yt-form__note {
		margin-left: auto;
		margin-right: auto;
	}
	.yt-form__note {
		text-align: left;
	}
}

@media (max-width: 640px) {
	.yt-form {
		padding: 40px 0;
	}
	.yt-form__grid {
		gap: 24px;
	}
	.yt-form__headline {
		font-size: 2rem;
	}
	.yt-form__wrapper {
		padding: 18px;
		border-radius: 14px;
	}
	.yt-form__trust {
		border-radius: 12px;
		line-height: 1.45;
	}
}
.yt-footer__logo img {
	height: 54px;
	width: auto;
}

.yt-footer__copy {
	color: #555866;
}
