/* ==========================================================================
   Rexpop Custom – Stylesheet
   Kino-Dunkel + Popcorn-Amber + Kinovorhang-Rot, Glassmorphism, 3D-Tilt
   ========================================================================== */

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	*, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
}
body { margin: 0; }
img, svg { max-width: 100%; height: auto; display: block; }
ul { margin: 0; padding: 0; list-style: none; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

/* ---------- Design tokens ---------- */
:root {
	--rp-primary: #0f0c1f;
	--rp-accent: #f97316;
	--rp-accent2: #c81e3a;

	--rp-primary-2: #181330;
	--rp-primary-3: #221c3d;
	--rp-on-dark: #f6f3ec;
	--rp-on-dark-soft: #c3bcd6;
	--rp-on-dark-mute: #8f87a8;

	--rp-bg: #ffffff;
	--rp-bg-alt: #f6f5f2;
	--rp-ink: #1c1710;
	--rp-ink-soft: #55493f;
	--rp-border-light: #e7e3da;

	--rp-accent-ink: #ffffff;
	--rp-glass-bg: rgba(255, 255, 255, 0.08);
	--rp-glass-border: rgba(255, 255, 255, 0.16);

	--rp-font-display: 'Fredoka', system-ui, sans-serif;
	--rp-font-body: 'Nunito', system-ui, sans-serif;

	--rp-radius-sm: 10px;
	--rp-radius-md: 16px;
	--rp-radius-lg: 24px;

	--rp-shadow-soft: 0 24px 48px -28px rgba(15, 12, 31, 0.35);
	--rp-shadow-accent: 0 16px 32px -16px rgba(249, 115, 22, 0.45);

	--rp-ease: cubic-bezier(0.16, 1, 0.3, 1);
	--rp-container: 1240px;

	/* z-index scale */
	--z-header: 100;
	--z-drawer-overlay: 200;
	--z-drawer: 210;
}

/* ---------- Base typography ---------- */
body {
	font-family: var(--rp-font-body);
	color: var(--rp-ink);
	background: var(--rp-bg);
	font-size: 16px;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 {
	font-family: var(--rp-font-display);
	font-weight: 600;
	line-height: 1.12;
	letter-spacing: -0.01em;
	margin: 0 0 .5em;
	color: inherit;
	text-wrap: balance;
}
p { margin: 0 0 1em; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: absolute; left: -9999px; top: 0; background: var(--rp-accent); color: #fff; padding: .8em 1.2em; z-index: 999; border-radius: 0 0 8px 0; }
.skip-link:focus { left: 0; }

:focus-visible { outline: 3px solid var(--rp-accent); outline-offset: 3px; border-radius: 4px; }

/* Icon guardrails — nie riesig */
svg { max-width: 100%; height: auto; }
.icon { width: 1.4em; height: 1.4em; max-width: 32px; max-height: 32px; flex: 0 0 auto; vertical-align: middle; }

/* ---------- Layout ---------- */
section { padding: clamp(3rem, 7vw, 6.5rem) clamp(1.25rem, 5vw, 3rem); }
.section-head { max-width: 640px; margin: 0 auto clamp(2rem, 5vw, 3.5rem); text-align: center; }
.section-head h2 { font-size: clamp(1.9rem, 4vw, 2.6rem); }
.section-head p { color: var(--rp-ink-soft); font-size: 1.05rem; }

/* ---------- Buttons ---------- */
.btn {
	display: inline-flex; align-items: center; justify-content: center; gap: .5em;
	font-family: var(--rp-font-display); font-weight: 600; font-size: .98rem;
	padding: .85em 1.6em; border-radius: 999px; border: none; cursor: pointer;
	transition: transform .2s var(--rp-ease), box-shadow .2s var(--rp-ease), background-color .2s var(--rp-ease);
	min-height: 44px;
}
.btn:active { transform: scale(.97); }
.btn--accent { background: var(--rp-accent); color: var(--rp-accent-ink); box-shadow: var(--rp-shadow-accent); }
.btn--accent:hover { background: #ff8a3d; box-shadow: 0 20px 36px -16px rgba(249,115,22,.55); }
.btn--ghost { background: rgba(255,255,255,.12); color: var(--rp-on-dark); border: 1px solid rgba(255,255,255,.28); }
.btn--ghost:hover { background: rgba(255,255,255,.2); }
.btn--outline { background: transparent; color: var(--rp-primary); border: 1.5px solid var(--rp-border-light); }
.btn--outline:hover { border-color: var(--rp-accent); color: var(--rp-accent); }
.btn--sm { padding: .6em 1.2em; font-size: .88rem; }
.btn--lg { padding: 1em 2em; font-size: 1.05rem; }
.btn--block { width: 100%; }

/* ---------- Glass ---------- */
.glass {
	background: var(--rp-glass-bg);
	border: 1px solid var(--rp-glass-border);
	backdrop-filter: blur(16px) saturate(140%);
	-webkit-backdrop-filter: blur(16px) saturate(140%);
}

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
	position: sticky; top: 0; z-index: var(--z-header);
	transition: background-color .3s var(--rp-ease), box-shadow .3s var(--rp-ease), padding .3s var(--rp-ease);
	background: linear-gradient(to bottom, rgba(15,12,31,.55), rgba(15,12,31,0));
}
.site-header.is-scrolled {
	background: rgba(15, 12, 31, 0.82);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	box-shadow: 0 8px 30px -20px rgba(0,0,0,.6);
}
.site-header__inner {
	max-width: var(--rp-container); margin: 0 auto;
	display: flex; align-items: center; justify-content: space-between;
	gap: clamp(.75rem, 2vw, 2rem);
	padding: 1.1rem clamp(1.25rem, 4vw, 2rem);
	transition: padding .3s var(--rp-ease);
}
.site-header.is-scrolled .site-header__inner { padding-top: .7rem; padding-bottom: .7rem; }

.site-logo { display: inline-flex; align-items: center; gap: .5rem; color: var(--rp-on-dark); }
.site-logo__mark { color: var(--rp-accent); display: inline-flex; }
.site-logo__text { font-family: var(--rp-font-display); font-weight: 700; font-size: 1.4rem; color: var(--rp-on-dark); }
.site-logo__text--footer { font-size: 1.6rem; color: var(--rp-on-dark); }

.site-nav { display: none; }
.site-nav__list { display: flex; align-items: center; gap: clamp(1rem, 2vw, 2rem); }
.site-nav__list li { position: relative; }
.site-nav__list > li > a {
	color: var(--rp-on-dark-soft); font-weight: 600; font-size: .98rem;
	padding: .4em 0; position: relative; display: inline-block;
	transition: color .2s var(--rp-ease);
}
.site-nav__list > li > a::after {
	content: ''; position: absolute; left: 0; right: 100%; bottom: -2px; height: 2px;
	background: var(--rp-accent); transition: right .25s var(--rp-ease);
}
.site-nav__list > li > a:hover, .site-nav__list > li > a:focus-visible { color: var(--rp-on-dark); }
.site-nav__list > li > a:hover::after, .site-nav__list > li > a:focus-visible::after { right: 0; }
.site-nav__list .current-menu-item > a { color: var(--rp-on-dark); }

/* Dropdown: Leistungen-Untermenü (nur Desktop-Nav; im mobilen Drawer flach gelistet) */
.site-nav__list .sub-menu {
	position: absolute; top: 100%; left: 50%; transform: translate(-50%, 8px);
	min-width: 200px; margin-top: .6rem; padding: .5rem;
	background: rgba(15, 12, 31, 0.97); border: 1px solid rgba(255,255,255,.14);
	border-radius: var(--rp-radius-md); backdrop-filter: blur(18px);
	display: flex; flex-direction: column; gap: .1rem;
	opacity: 0; visibility: hidden; pointer-events: none;
	transition: opacity .2s var(--rp-ease), transform .2s var(--rp-ease), visibility .2s;
	z-index: 20;
}
.site-nav__list .menu-item-has-children:hover > .sub-menu,
.site-nav__list .menu-item-has-children:focus-within > .sub-menu {
	opacity: 1; visibility: visible; pointer-events: auto; transform: translate(-50%, 0);
}
.site-nav__list .sub-menu a {
	display: block; padding: .65em .9em; border-radius: 8px;
	color: var(--rp-on-dark-soft); font-weight: 600; font-size: .92rem; white-space: nowrap;
}
.site-nav__list .sub-menu a:hover, .site-nav__list .sub-menu a:focus-visible { background: rgba(255,255,255,.08); color: var(--rp-on-dark); }

.site-header__actions { display: flex; align-items: center; gap: .9rem; }
.site-header__actions .btn { display: none; }

.burger {
	display: inline-flex; align-items: center; justify-content: center;
	width: 44px; height: 44px; border-radius: 50%; background: rgba(255,255,255,.1);
	border: 1px solid rgba(255,255,255,.18); color: var(--rp-on-dark);
}
.burger:hover { background: rgba(255,255,255,.18); }

@media (min-width: 900px) {
	.site-nav { display: block; }
	.burger { display: none; }
}
@media (min-width: 1100px) {
	.site-header__actions .btn { display: inline-flex; }
}

/* ---------- Mobile drawer (sibling of header, escapes backdrop-filter containing block) ---------- */
.mobile-drawer {
	position: fixed; top: 0; right: 0; height: 100dvh; width: min(86vw, 360px);
	background: var(--rp-primary); color: var(--rp-on-dark);
	transform: translateX(100%); transition: transform .35s var(--rp-ease);
	z-index: var(--z-drawer); display: flex; flex-direction: column; gap: 1.75rem;
	padding: 1.4rem 1.5rem 2rem; overflow-y: auto;
}
.mobile-drawer.is-open { transform: translateX(0); }
.mobile-drawer__head { display: flex; align-items: center; justify-content: space-between; }
.mobile-drawer__list { display: flex; flex-direction: column; gap: .3rem; }
.mobile-drawer__list a { display: block; padding: .85em .2em; font-family: var(--rp-font-display); font-size: 1.15rem; font-weight: 600; border-bottom: 1px solid rgba(255,255,255,.08); }
.mobile-drawer__list .sub-menu { padding-left: 1rem; }
.mobile-drawer__list .sub-menu a { font-family: var(--rp-font-body); font-size: 1rem; font-weight: 600; opacity: .82; padding: .7em .2em; }
.mobile-drawer__overlay {
	position: fixed; inset: 0; background: rgba(5,4,12,.6);
	opacity: 0; pointer-events: none; transition: opacity .3s var(--rp-ease);
	z-index: var(--z-drawer-overlay);
}
.mobile-drawer__overlay.is-open { opacity: 1; pointer-events: auto; }
body.no-scroll { overflow: hidden; }

@media (min-width: 900px) {
	.mobile-drawer, .mobile-drawer__overlay { display: none; }
}

/* ==========================================================================
   Reveal-on-scroll — nur transform, nie opacity (bleibt in Screenshots/ohne JS sichtbar)
   ========================================================================== */
[data-reveal] {
	transform: translateY(28px);
	transition: transform .7s var(--rp-ease);
	will-change: transform;
}
[data-reveal].is-visible { transform: translateY(0); }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
	position: relative; min-height: min(92vh, 920px); display: flex; align-items: flex-end;
	overflow: hidden; padding: 0; color: var(--rp-on-dark); isolation: isolate;
}
.hero__media { position: absolute; inset: 0; z-index: -1; overflow: hidden; }
.hero__img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.06); }
.hero__scrim {
	position: absolute; inset: 0;
	background:
		linear-gradient(to top, rgba(10,8,20,.96) 0%, rgba(10,8,20,.72) 38%, rgba(10,8,20,.35) 68%, rgba(10,8,20,.55) 100%),
		linear-gradient(to right, rgba(10,8,20,.5), rgba(10,8,20,.15) 55%);
}
.hero__content {
	position: relative; max-width: var(--rp-container); margin: 0 auto; width: 100%;
	padding: clamp(6rem, 18vw, 9rem) clamp(1.25rem, 5vw, 3rem) clamp(3rem, 6vw, 4.5rem);
}
.eyebrow-badge {
	display: inline-flex; align-items: center; gap: .5em;
	background: rgba(249,115,22,.16); color: #ffb77a; border: 1px solid rgba(249,115,22,.35);
	padding: .45em 1em; border-radius: 999px; font-weight: 700; font-size: .85rem; margin: 0 0 1.2rem;
}
.hero__title { font-size: clamp(2.4rem, 6vw, 4.1rem); max-width: 16ch; margin-bottom: .4em; }
.hero__subtitle { max-width: 52ch; font-size: clamp(1rem, 1.6vw, 1.2rem); color: var(--rp-on-dark-soft); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; margin: 1.8rem 0 2.4rem; }
.hero__actions--center { justify-content: center; }

.hero__glass-card {
	display: flex; flex-wrap: wrap; gap: clamp(1.2rem, 3vw, 2.5rem);
	padding: 1.3rem 1.6rem; border-radius: var(--rp-radius-lg); max-width: fit-content;
}
.hero__glass-item { display: flex; align-items: center; gap: .8rem; }
.hero__glass-item svg { color: var(--rp-accent); flex-shrink: 0; }
.hero__glass-item div { display: flex; flex-direction: column; font-size: .92rem; }
.hero__glass-item strong { font-family: var(--rp-font-display); color: var(--rp-on-dark); }
.hero__glass-item span { color: var(--rp-on-dark-soft); }

/* ==========================================================================
   Stats bar
   ========================================================================== */
.stats-bar {
	display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem;
	background: var(--rp-primary); color: var(--rp-on-dark);
	padding: clamp(2rem, 5vw, 3rem) clamp(1.25rem, 5vw, 3rem);
	text-align: center;
}
.stats-bar__item { display: flex; flex-direction: column; gap: .3rem; }
.stats-bar__num { font-family: var(--rp-font-display); font-weight: 700; font-size: clamp(1.8rem, 4vw, 2.6rem); color: var(--rp-accent); }
.stats-bar__label { color: var(--rp-on-dark-soft); font-size: .88rem; }

/* ==========================================================================
   Slider (Bild-Slider, horizontal scroll-snap, 3D tilt)
   ========================================================================== */
.slider-section { background: var(--rp-bg); perspective: 1400px; }
.slider-track {
	display: flex; gap: 1.5rem; overflow-x: auto; scroll-snap-type: x mandatory;
	padding: .5rem .5rem 1.5rem; margin: 0 -.5rem; -webkit-overflow-scrolling: touch;
	scrollbar-width: thin; scrollbar-color: var(--rp-accent) transparent;
}
.slide-card {
	scroll-snap-align: start; flex: 0 0 clamp(220px, 32vw, 300px);
	background: var(--rp-bg-alt); border-radius: var(--rp-radius-md); overflow: hidden;
	box-shadow: var(--rp-shadow-soft); transition: transform .25s var(--rp-ease);
}
.slide-card__media { aspect-ratio: 4 / 5; overflow: hidden; }
.slide-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--rp-ease); }
.slide-card:hover .slide-card__media img { transform: scale(1.06); }
.slide-card__body { padding: 1.1rem 1.3rem 1.4rem; }
.slide-card__body h3 { font-size: 1.15rem; margin-bottom: .3em; }
.slide-card__body p { color: var(--rp-ink-soft); font-size: .92rem; margin: 0; }

/* ==========================================================================
   Services grid (3D tilt cards)
   ========================================================================== */
.services-section { background: var(--rp-bg-alt); perspective: 1400px; }
.services-section--page { background: var(--rp-bg); padding-top: 0; }
.services-grid {
	display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 1.75rem; max-width: var(--rp-container); margin: 0 auto;
}
.service-card {
	border-radius: var(--rp-radius-md); overflow: hidden; background: var(--rp-bg);
	box-shadow: var(--rp-shadow-soft); transition: transform .25s var(--rp-ease), box-shadow .25s var(--rp-ease);
	transform-style: preserve-3d;
}
.service-card:hover { box-shadow: 0 30px 50px -22px rgba(15,12,31,.4); }
.service-card__link { display: block; }
.service-card__media { aspect-ratio: 5 / 4; overflow: hidden; }
.service-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--rp-ease); }
.service-card:hover .service-card__media img { transform: scale(1.08) translateZ(0); }
.service-card__body { padding: 1.4rem 1.5rem 1.6rem; }
.service-card__body h2, .service-card__body h3 { font-size: 1.25rem; margin-bottom: .35em; }
.service-card__body p { color: var(--rp-ink-soft); font-size: .95rem; }
.service-card__more { display: inline-flex; align-items: center; gap: .4em; color: var(--rp-accent); font-weight: 700; font-size: .9rem; margin-top: .4rem; }

/* ==========================================================================
   How it works
   ========================================================================== */
.how-section { background: var(--rp-bg); }
.how-steps {
	display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem;
	max-width: var(--rp-container); margin: 0 auto; counter-reset: step;
}
.how-step { position: relative; padding: 2rem 1.6rem 1.8rem; background: var(--rp-bg-alt); border-radius: var(--rp-radius-md); }
.how-step__num {
	display: inline-flex; align-items: center; justify-content: center;
	width: 46px; height: 46px; border-radius: 50%; background: var(--rp-primary); color: var(--rp-accent);
	font-family: var(--rp-font-display); font-weight: 700; margin-bottom: 1rem;
}
.how-step h3 { font-size: 1.2rem; }
.how-step p { color: var(--rp-ink-soft); margin: 0; }

/* ==========================================================================
   Delivery areas
   ========================================================================== */
.areas-section { background: var(--rp-primary); color: var(--rp-on-dark); }
.areas-section .section-head p { color: var(--rp-on-dark-soft); }
.areas-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; max-width: var(--rp-container); margin: 0 auto; }
.area-card { padding: 2rem 1.5rem; border-radius: var(--rp-radius-md); text-align: center; }
.area-card svg { color: var(--rp-accent); margin: 0 auto .8rem; }
.area-card h3 { font-size: 1.15rem; margin-bottom: .3em; }
.area-card span { color: var(--rp-on-dark-soft); font-size: .92rem; }

/* ==========================================================================
   Partners
   ========================================================================== */
.partners-section { background: var(--rp-bg); }
.partners-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.75rem; max-width: 900px; margin: 0 auto; }
.partner-card { border-radius: var(--rp-radius-md); overflow: hidden; box-shadow: var(--rp-shadow-soft); }
.partner-card img { aspect-ratio: 4 / 3; object-fit: cover; }
.partner-card h3 { font-size: 1.05rem; padding: 1.1rem 1.3rem; margin: 0; }

/* ==========================================================================
   About teaser
   ========================================================================== */
.about-section { display: grid; grid-template-columns: .8fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; max-width: var(--rp-container); margin: 0 auto; }
.about-media { border-radius: var(--rp-radius-lg); overflow: hidden; box-shadow: var(--rp-shadow-soft); }
.about-media img { aspect-ratio: 1 / 1; object-fit: cover; }
.about-copy h2 { font-size: clamp(1.8rem, 3.6vw, 2.4rem); }
.about-copy p { color: var(--rp-ink-soft); font-size: 1.05rem; }

/* ==========================================================================
   CTA
   ========================================================================== */
.cta-section {
	background: linear-gradient(135deg, var(--rp-primary), #2a1030 70%, var(--rp-accent2));
	color: var(--rp-on-dark); text-align: center;
}
.cta-section__inner { max-width: 680px; margin: 0 auto; }
.cta-section h2 { font-size: clamp(2rem, 4.4vw, 2.8rem); }
.cta-section p { color: var(--rp-on-dark-soft); font-size: 1.08rem; }

/* ==========================================================================
   Subpage hero + prose
   ========================================================================== */
.page-hero {
	position: relative; background: var(--rp-primary); color: var(--rp-on-dark);
	padding: clamp(7rem, 16vw, 9.5rem) clamp(1.25rem, 5vw, 3rem) clamp(3.5rem, 6vw, 5rem);
	overflow: hidden;
}
.page-hero::before {
	content: ''; position: absolute; inset: 0;
	background: radial-gradient(circle at 15% 20%, rgba(249,115,22,.22), transparent 55%),
		radial-gradient(circle at 85% 80%, rgba(200,30,58,.22), transparent 55%);
}
.page-hero__content { position: relative; max-width: 760px; margin: 0 auto; text-align: center; }
.page-hero__content h1 { font-size: clamp(2.1rem, 5vw, 3.2rem); }
.page-hero__content p { color: var(--rp-on-dark-soft); font-size: 1.08rem; }

.page-content { max-width: 780px; margin: 0 auto; }
.prose h2 { font-size: clamp(1.5rem, 3vw, 1.9rem); margin-top: 1.6em; }
.prose h3 { font-size: 1.25rem; margin-top: 1.4em; }
.prose p { color: var(--rp-ink-soft); max-width: 70ch; }
.prose ul { list-style: none; margin: 1.2em 0; padding: 0; display: flex; flex-direction: column; gap: .6em; }
.prose ul li { position: relative; padding-left: 1.8em; color: var(--rp-ink-soft); }
.prose ul li::before {
	content: ''; position: absolute; left: 0; top: .35em; width: 1.1em; height: 1.1em;
	background: var(--rp-accent); mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23000' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round' d='m5 12.5 4.5 4.5L19 7.5'/%3E%3C/svg%3E") center / contain no-repeat;
}
.prose figure { margin: 1.6em 0; }
.prose figure img { border-radius: var(--rp-radius-md); }

/* ---------- Kontakt ---------- */
.contact-grid { max-width: var(--rp-container); display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.contact-list { display: flex; flex-direction: column; gap: .6rem; margin-top: 1.6rem; padding: 0; }
.contact-list li, .contact-list a { display: flex; align-items: center; gap: .8rem; min-height: 44px; }
.contact-list svg { color: var(--rp-accent); flex-shrink: 0; }
.contact-form-card { background: var(--rp-primary); color: var(--rp-on-dark); padding: clamp(1.6rem, 4vw, 2.4rem); border-radius: var(--rp-radius-lg); }
.contact-form-card h2 { font-size: 1.4rem; }
.contact-form-card .wpcf7-form p { margin-bottom: 1rem; }
.contact-form-card .wpcf7-form label { display: block; font-weight: 600; margin-bottom: .4em; font-size: .92rem; }
.contact-form-card input[type="text"], .contact-form-card input[type="email"], .contact-form-card input[type="tel"], .contact-form-card textarea {
	width: 100%; padding: .8em 1em; border-radius: var(--rp-radius-sm); border: 1px solid rgba(255,255,255,.22);
	background: rgba(255,255,255,.06); color: var(--rp-on-dark); font-family: var(--rp-font-body); font-size: 1rem;
}
.contact-form-card input::placeholder, .contact-form-card textarea::placeholder { color: var(--rp-on-dark-mute); }
.contact-form-card .wpcf7-submit { background: var(--rp-accent); color: #fff; border: none; padding: .85em 1.8em; border-radius: 999px; font-family: var(--rp-font-display); font-weight: 700; cursor: pointer; min-height: 44px; }
.contact-form-card .wpcf7-not-valid-tip { color: #ffb4b4; font-size: .85rem; margin-top: .3em; }
.contact-form-card .wpcf7-response-output { border-radius: var(--rp-radius-sm); margin-top: 1rem; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: var(--rp-primary); color: var(--rp-on-dark-soft); padding: clamp(3rem, 6vw, 5rem) clamp(1.25rem, 5vw, 3rem) 1.5rem; }
.site-footer__grid { max-width: var(--rp-container); margin: 0 auto; display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: clamp(2rem, 4vw, 3rem); }
.footer-col h3 { color: var(--rp-on-dark); font-size: 1.05rem; margin-bottom: 1em; }
.footer-col--brand p { max-width: 34ch; }
.footer-list { display: flex; flex-direction: column; gap: .7rem; }
.footer-list a:hover { color: var(--rp-on-dark); }
.footer-contact { display: flex; flex-direction: column; gap: .4rem; }
.footer-contact li, .footer-contact a { display: flex; align-items: center; gap: .7rem; min-height: 44px; }
.footer-contact svg { color: var(--rp-accent); flex-shrink: 0; }
.footer-contact a:hover { color: var(--rp-on-dark); }
.social-btn {
	display: inline-flex; align-items: center; gap: .6rem; margin-top: 1.2rem;
	padding: .6em 1.1em; border-radius: 999px; border: 1px solid rgba(255,255,255,.2);
	color: var(--rp-on-dark); font-weight: 600; transition: background-color .2s var(--rp-ease);
}
.social-btn:hover { background: rgba(255,255,255,.1); }
.site-footer__bottom { max-width: var(--rp-container); margin: 3rem auto 0; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.1); font-size: .85rem; }

/* ==========================================================================
   Responsive — Tablet ≤900px
   ========================================================================== */
@media (max-width: 900px) {
	.about-section { grid-template-columns: 1fr; }
	.about-media { order: -1; max-width: 420px; margin: 0 auto; }
	.contact-grid { grid-template-columns: 1fr; }
	.how-steps { grid-template-columns: 1fr; }
	.areas-grid { grid-template-columns: 1fr; }
	.site-footer__grid { grid-template-columns: 1fr 1fr; }
	.stats-bar { grid-template-columns: repeat(2, 1fr); row-gap: 2rem; }
}

/* ==========================================================================
   Responsive — Mobile ≤600px
   ========================================================================== */
@media (max-width: 600px) {
	.hero { min-height: 100vh; align-items: flex-end; }
	.hero__glass-card { flex-direction: column; align-items: flex-start; gap: 1rem; }
	.hero__actions { flex-direction: column; align-items: stretch; }
	.hero__actions .btn { width: 100%; }
	.hero__actions--center { align-items: center; }
	.hero__actions--center .btn { width: auto; }
	.services-grid { grid-template-columns: 1fr; }
	.partners-grid { grid-template-columns: 1fr; }
	.site-footer__grid { grid-template-columns: 1fr; gap: 2.2rem; }
	.slide-card { flex-basis: 74vw; }
	section { overflow-x: clip; }
}

body { overflow-x: hidden; }
