/* ==========================================================================
   Landing DWI — lekki, samodzielny CSS (paleta i fonty jak reszta strony)
   Fonty (Playfair Display / Outfit) ladowane globalnie w header.php.
   Scope: .landing-dwi  |  Breakpointy: 1200 / 990 / 768 / 560 / 480
   ========================================================================== */

/* ===== Landing kampanijny: header z menu sekcyjnym (tylko na landingu) ===== */
#masthead .fordesktop,
#masthead .menu-main-menu-container,
#masthead .top-search,
#masthead .top-search-div,
#masthead .menu-toggle { display: none !important; }
#masthead .ld-nav { display: flex; gap: 30px; list-style: none; margin: 0; padding: 0; align-items: center; }
#masthead .ld-nav li { margin: 0; }
#masthead .ld-nav a { font-family: "Outfit", sans-serif; font-weight: 500; font-size: 15px; text-transform: uppercase; letter-spacing: .5px; color: #57273c; text-decoration: none; transition: color .25s ease; white-space: nowrap; }
#masthead .ld-nav a:hover { color: #927545; }
/* Burger mobilny (menu sekcyjne landingu) */
#masthead .ld-burger { display: none; }
@media (max-width: 1100px) {
	#masthead .ld-burger { display: flex; flex-direction: column; justify-content: center; gap: 5px; width: 46px; height: 40px; padding: 8px 10px; margin-left: 10px; background: transparent; border: 0; cursor: pointer; flex: none; }
	#masthead .ld-burger span { display: block; width: 24px; height: 2px; border-radius: 2px; background: #57273c; transition: transform .3s ease, opacity .3s ease; }
	#masthead .ld-burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
	#masthead .ld-burger.is-open span:nth-child(2) { opacity: 0; }
	#masthead .ld-burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
	#masthead .ld-nav {
		display: flex; flex-direction: column; gap: 0;
		position: absolute; top: 100%; left: 0; right: 0;
		background: var(--cream, #fbf0e1);
		box-shadow: 0 14px 30px rgba(0,0,0,.18);
		padding: 4px 0;
		max-height: 0; overflow: hidden; opacity: 0; visibility: hidden;
		transition: max-height .35s ease, opacity .3s ease, visibility .3s;
	}
	#masthead .ld-nav.ld-nav--open { max-height: 80vh; opacity: 1; visibility: visible; }
	#masthead .ld-nav li { width: 100%; }
	#masthead .ld-nav a { display: block; padding: 15px 26px; font-size: 16px; border-bottom: 1px solid rgba(87,39,60,.08); }
	#masthead .ld-nav li:last-child a { border-bottom: 0; }
}
.landing-dwi section[id] { scroll-margin-top: 100px; }
/* Fallback logotypow: owl laduje sie z CDN i chowa .owl-carousel do czasu init.
   Gdyby CDN zawiodl, pokazujemy logotypy jako statyczny rzad (zawsze widoczne). */
.landing-dwi .top-logo .owl-carousel:not(.owl-loaded) { display: flex !important; flex-wrap: wrap; justify-content: center; align-items: center; gap: 26px 44px; }
.landing-dwi .top-logo .owl-carousel:not(.owl-loaded) li { list-style: none; margin: 0; }
.landing-dwi .top-logo .owl-carousel:not(.owl-loaded) img { max-height: 62px; width: auto; }

.landing-dwi {
	--cream: #fbf0e1;
	--cream-2: #fcf3e8;
	--ink: #111514;
	--ink-soft: #3a3330;
	--marsala: #632d44;
	--marsala-deep: #57273c;
	--marsala-bright: #922152;
	--gold: #ae9167;
	--gold-deep: #927545;
	--green: #1d4e3f;
	--white: #fff;
	--radius: 6px;
	--maxw: 1500px;

	font-family: "Outfit", sans-serif;
	color: var(--ink);
	font-weight: 300;
	line-height: 1.6;
	overflow-x: hidden;
	interpolate-size: allow-keywords;
	background-color: #22121b;
}
/* sekcje pokrywaja wrapper w 100%; ciemne tlo wrappera chowa ew. kremowe przeswity na granicach */

.landing-dwi * { box-sizing: border-box; }
.landing-dwi svg { fill: none; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }

.landing-dwi .ld-container {
	max-width: var(--maxw);
	width: 100%;
	margin: 0 auto;
	padding-left: 40px;
	padding-right: 40px;
}
@media (max-width: 768px) {
	.landing-dwi .ld-container { padding-left: 22px; padding-right: 22px; }
}

.landing-dwi h1,
.landing-dwi h2,
.landing-dwi h3,
.landing-dwi h4 {
	font-family: "Playfair Display", serif;
	color: var(--marsala-deep);
	line-height: 1.12;
	margin: 0;
	font-weight: 700;
}

.landing-dwi p { margin: 0 0 1em; }
.landing-dwi .ld-gold { color: var(--gold); }

/* Sekcyjne naglowki */
.landing-dwi .ld-sec-head { text-align: center; max-width: 760px; margin: 0 auto 46px; }
.landing-dwi .ld-sec-head h2 { font-size: 40px; }
.landing-dwi .ld-sec-head p { margin-top: 14px; font-size: 18px; color: var(--ink-soft); }
@media (max-width: 768px) {
	.landing-dwi .ld-sec-head { margin-bottom: 32px; }
	.landing-dwi .ld-sec-head h2 { font-size: 30px; }
}

/* Przyciski */
.landing-dwi .ld-btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: linear-gradient(0deg, #632d44 0%, #932151 40%, #632d44 100%);
	color: #fff;
	font-family: "Outfit", sans-serif;
	font-weight: 500;
	font-size: 17px;
	letter-spacing: .3px;
	padding: 16px 34px;
	text-transform: uppercase;
	text-decoration: none;
	border: 0;
	cursor: pointer;
	transition: filter .3s, transform .3s;
	border-radius: var(--radius);
}
.landing-dwi .ld-btn:hover { filter: brightness(1.25); color: #fff; }
.landing-dwi .ld-btn svg { width: 18px; height: 18px; flex: none; }
.landing-dwi .ld-btn--gold {
	background: linear-gradient(0deg, #927545 0%, #ae9167 50%, #927545 100%);
	color: #2a1c12;
}
.landing-dwi .ld-btn--ghost {
	background: transparent;
	border: 1.5px solid rgba(255,255,255,.55);
	color: #fff;
}
.landing-dwi .ld-btn--ghost:hover { border-color: var(--gold); color: #fff; filter: none; background: rgba(255,255,255,.06); }
.landing-dwi .ld-btn--block { width: 100%; justify-content: center; }
@media (max-width: 768px) {
	.landing-dwi .ld-btn { font-size: 15px; padding: 13px 24px; }
}

/* Sekcje: odstepy */
.landing-dwi section { padding: 84px 0; }
@media (max-width: 768px) { .landing-dwi section { padding: 54px 0; } }

/* ========================= HERO (jasne) ========================= */
.landing-dwi .ld-hero {
	background:
		radial-gradient(1000px 500px at 78% -10%, rgba(174,145,103,.14), transparent 60%),
		linear-gradient(90deg, rgba(251,240,225,.34) 0%, rgba(251,240,225,.26) 55%, rgba(251,240,225,.42) 100%),
		url(img/bg-about1.png) center/cover no-repeat;
	padding: 140px 0 90px; /* gorny zapas na fixed #masthead */
}
@media (max-width: 990px) { .landing-dwi .ld-hero { padding-top: 120px; } }
@media (max-width: 560px) { .landing-dwi .ld-hero { padding-top: 100px; } }
.landing-dwi .ld-hero__grid {
	display: grid;
	grid-template-columns: 1.15fr .85fr;
	gap: 56px;
	align-items: center;
}
.landing-dwi .ld-hero h1 {
	font-size: 68px;
	color: var(--ink);
	letter-spacing: -.5px;
}
.landing-dwi .ld-hero__rule { width: 90px; height: 3px; background: var(--gold); margin: 22px 0; }
.landing-dwi .ld-hero__tagline {
	font-family: "Playfair Display", serif;
	font-weight: 600;
	font-size: 20px;
	color: var(--marsala-bright);
	text-transform: uppercase;
	letter-spacing: .5px;
	margin-bottom: 8px;
}
.landing-dwi .ld-hero__tagline b { color: var(--gold-deep); }
.landing-dwi .ld-hero__lead { font-size: 18px; color: var(--ink-soft); max-width: 560px; }

.landing-dwi .ld-badges { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin: 30px 0 26px; }
.landing-dwi .ld-badge svg { width: 30px; height: 30px; stroke: var(--gold); margin-bottom: 8px; }
.landing-dwi .ld-badge h4 { font-family: "Outfit", sans-serif; font-weight: 600; font-size: 15px; color: var(--marsala-deep); text-transform: uppercase; letter-spacing: .3px; margin-bottom: 4px; }
.landing-dwi .ld-badge p { font-size: 13.5px; color: var(--ink-soft); margin: 0; line-height: 1.45; }

.landing-dwi .ld-hero__actions { display: flex; flex-direction: column; align-items: flex-start; gap: 22px; }
.landing-dwi .ld-hero__actions .ld-btn { flex: none; white-space: nowrap; }
.landing-dwi .ld-rating { display: flex; align-items: center; gap: 12px; }
.landing-dwi .ld-rating img { height: 26px; width: auto; }
.landing-dwi .ld-stars { color: var(--gold); font-size: 16px; letter-spacing: 2px; }
.landing-dwi .ld-rating small { display: block; color: var(--ink-soft); font-size: 12.5px; }
.landing-dwi .ld-rating b { font-size: 15px; }

/* Karta formularza */
.landing-dwi .ld-form-card {
	background: #fff;
	border: 1px solid #ecdcc4;
	border-top: 5px solid var(--gold);
	border-radius: 8px;
	padding: 34px 32px;
	box-shadow: 0 24px 60px -30px rgba(87,39,60,.45);
}
.landing-dwi .ld-form-card h3 { font-size: 26px; text-align: center; color: var(--marsala-deep); }
.landing-dwi .ld-form-card > p { text-align: center; font-size: 15px; color: var(--ink-soft); margin: 8px 0 22px; }
.landing-dwi .ld-form-card input,
.landing-dwi .ld-form-card textarea {
	width: 100%;
	font-family: "Outfit", sans-serif;
	font-size: 15px;
	padding: 13px 15px;
	margin-bottom: 13px;
	border: 1px solid #e2d3bd;
	border-radius: var(--radius);
	background: var(--cream-2);
	color: var(--ink);
}
.landing-dwi .ld-form-card textarea { min-height: 96px; resize: vertical; }
.landing-dwi .ld-form-card input:focus,
.landing-dwi .ld-form-card textarea:focus { outline: none; border-color: var(--gold); background: #fff; }
.landing-dwi .ld-form-note { text-align: center; font-size: 12.5px; color: #8a7c6b; margin: 14px 0 0; }
/* Avatar Giny przy przycisku formularza */
.landing-dwi .ld-form-card { position: relative; }
.landing-dwi .ld-form-avatar {
	position: absolute;
	right: 14px;
	bottom: 58px;
	width: 68px;
	height: 68px;
	border-radius: 50%;
	overflow: hidden;
	border: 3px solid #fff;
	background: var(--cream);
	box-shadow: 0 10px 24px -8px rgba(87,39,60,.55);
	transition: transform .4s ease;
	z-index: 4;
}
.landing-dwi .ld-form-avatar img { width: 100%; height: 100%; object-fit: cover; object-position: center 8%; transform: scale(1.32); transform-origin: center 18%; display: block; }
.landing-dwi .ld-form-avatar:hover { transform: scale(1.15) rotate(8deg); }
/* avatar reaguje tez na hover przycisku Get Help Now */
.landing-dwi .ld-form-card:has(input[type="submit"]:hover) .ld-form-avatar { transform: scale(1.08) rotate(6deg); }
/* Hero: formularz Contact Form 7 — dopasowanie do designu */
.landing-dwi .ld-form-card .wpcf7 { margin: 0; }
.landing-dwi .ld-form-card .wpcf7 p { margin: 0; }
.landing-dwi .ld-form-card .wpcf7-form-control-wrap { display: block; }
/* ciemny font w inputach (CF7 nadpisywalo na bialy) */
.landing-dwi .ld-form-card .wpcf7-form input.wpcf7-form-control:not([type="submit"]),
.landing-dwi .ld-form-card .wpcf7-form textarea.wpcf7-form-control {
	color: var(--ink) !important;
	background: var(--cream-2);
	-webkit-text-fill-color: var(--ink);
}
.landing-dwi .ld-form-card .wpcf7-form input.wpcf7-form-control:not([type="submit"])::placeholder,
.landing-dwi .ld-form-card .wpcf7-form textarea.wpcf7-form-control::placeholder { color: #9a8b76; -webkit-text-fill-color: #9a8b76; }
.landing-dwi .ld-form-card input[type="submit"] {
	width: 100%;
	background: linear-gradient(0deg, #ae9167 0%, #c9ac82 52%, #ae9167 100%);
	color: #2a1c12;
	font-family: "Outfit", sans-serif;
	font-weight: 500;
	font-size: 17px;
	letter-spacing: .3px;
	padding: 16px 34px;
	text-transform: uppercase;
	border: 0;
	border-radius: var(--radius);
	cursor: pointer;
	margin-top: 6px;
	transition: filter .3s;
	animation: ld-softpulse 2.6s ease-in-out infinite;
}
.landing-dwi .ld-form-card input[type="submit"] { transition: filter .35s ease, color .35s ease, box-shadow .35s ease, transform .35s ease; }
.landing-dwi .ld-form-card input[type="submit"]:hover { animation: none; color: #fff; -webkit-text-fill-color: #fff; filter: brightness(1.22); transform: scale(1.04); }
@keyframes ld-softpulse {
	0%, 100% { box-shadow: 0 4px 12px rgba(174,145,103,.25); filter: brightness(1); transform: scale(1); }
	50% { box-shadow: 0 4px 28px rgba(201,172,130,.75); filter: brightness(1.07); transform: scale(1.022); }
}
/* komunikaty walidacji / odpowiedzi CF7 */
.landing-dwi .ld-form-card .wpcf7-not-valid-tip { color: #b31d47; font-size: 12.5px; font-weight: 500; margin: -8px 0 10px; display: block; }
.landing-dwi .ld-form-card .wpcf7-form input.wpcf7-not-valid,
.landing-dwi .ld-form-card .wpcf7-form textarea.wpcf7-not-valid { border-color: #d63b5a !important; background: #fdf1f3; }
.landing-dwi .ld-form-card .wpcf7-response-output { border-color: #ae9167 !important; color: var(--ink-soft); font-size: 13px; margin: 14px 0 0 !important; padding: 10px 14px !important; }
.landing-dwi .ld-form-card .wpcf7-spinner { margin: 0 auto; display: block; }

@media (max-width: 990px) {
	.landing-dwi .ld-hero__grid { grid-template-columns: 1fr; gap: 40px; }
	.landing-dwi .ld-hero h1 { font-size: 52px; }
	.landing-dwi .ld-hero__lead { max-width: none; }
}
@media (max-width: 560px) {
	.landing-dwi .ld-hero h1 { font-size: 40px; }
	.landing-dwi .ld-badges { grid-template-columns: 1fr; gap: 16px; }
	.landing-dwi .ld-hero__actions { gap: 16px; }
}

/* ========================= LOGO BAR ========================= */
.landing-dwi .ld-logos { background: #f3ead9; padding: 34px 0; }
.landing-dwi .ld-logos__label { text-align: center; text-transform: uppercase; letter-spacing: 2px; font-size: 12px; color: #9a8b76; margin-bottom: 18px; }
.landing-dwi .ld-logos__row { display: flex; align-items: center; justify-content: center; gap: 50px; flex-wrap: wrap; }
.landing-dwi .ld-logos__row img {
	height: auto;
	max-height: 66px;
	max-width: 150px;
	width: auto;
	object-fit: contain;
	filter: saturate(.9);
	opacity: .9;
	transition: opacity .3s;
}
.landing-dwi .ld-logos__row img:hover { opacity: 1; }
@media (max-width: 560px) { .landing-dwi .ld-logos__row { gap: 30px; } .landing-dwi .ld-logos__row img { max-height: 52px; max-width: 116px; } }

/* ===== Slider logo (top-logo) — bezpieczne rozmiary w owl ===== */
.landing-dwi .top-logo .owl-carousel li { display: flex; align-items: center; justify-content: center; min-height: 100px; }
.landing-dwi .top-logo .owl-carousel li img { max-height: 84px; width: auto; max-width: 100%; margin: 0 auto; }

/* ========================= SERVICES (6 kafli) — bordowe tlo ========================= */
.landing-dwi .ld-services {
	background:
		linear-gradient(160deg, rgba(99,45,68,.70), rgba(74,32,50,.82)),
		url(img/dwi-bg.jpg) center 30%/cover no-repeat;
}
.landing-dwi .ld-services .ld-sec-head h2 { color: #fff; }
.landing-dwi .ld-services .ld-sec-head p { color: #eccfda; }
.landing-dwi .ld-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.landing-dwi .ld-card {
	background: rgba(255,255,255,.12);
	border: 0;
	border-radius: 10px;
	padding: 34px 28px;
	text-align: center;
	box-shadow: 0 16px 40px -24px rgba(0,0,0,.55);
	transition: transform .3s, box-shadow .3s, background .3s;
}
.landing-dwi .ld-card:hover { transform: translateY(-6px); box-shadow: 0 26px 54px -22px rgba(0,0,0,.6); background: rgba(255,255,255,.15); }
.landing-dwi .ld-card__icon { width: 62px; height: 62px; margin: 0 auto 18px; display: flex; align-items: center; justify-content: center; background: linear-gradient(160deg, #632d44 0%, #922152 55%, #b14a7b 100%); border-radius: 50%; box-shadow: 0 8px 20px -8px rgba(146,33,82,.7); }
.landing-dwi .ld-card__icon svg { width: 28px; height: 28px; stroke: var(--gold); }
.landing-dwi .ld-card h3 { font-family: "Outfit", sans-serif; font-weight: 600; font-size: 18px; color: #fff; text-transform: uppercase; letter-spacing: .3px; margin-bottom: 10px; }
.landing-dwi .ld-card p { font-size: 14.5px; color: rgba(255,255,255,.82); margin: 0; }
@media (max-width: 990px) { .landing-dwi .ld-cards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .landing-dwi .ld-cards { grid-template-columns: 1fr; } }

/* ========================= INFO BAR (ciemny) ========================= */
.landing-dwi .ld-infobar {
	background:
		linear-gradient(rgba(29,78,63,.60), rgba(22,54,45,.72)),
		url(img/bg-founder.jpg) center 35%/cover no-repeat;
	padding: 24px 0;
}
.landing-dwi .ld-infobar__row { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.landing-dwi .ld-infobar__item { display: flex; align-items: center; gap: 12px; color: #eaf3ef; font-size: 15px; font-weight: 300; flex: 1 1 auto; justify-content: center; }
.landing-dwi .ld-infobar__item svg { width: 22px; height: 22px; stroke: var(--gold); flex: none; }
.landing-dwi .ld-infobar__item + .ld-infobar__item { border-left: 1px solid rgba(255,255,255,.16); }
@media (max-width: 1024px) {
	.landing-dwi .ld-infobar__row { display: grid; grid-template-columns: 1fr 1fr; justify-content: stretch; align-items: start; gap: 18px 18px; }
	.landing-dwi .ld-infobar__item { justify-content: flex-start; text-align: left; align-items: flex-start; gap: 10px; flex: 0 0 auto; min-width: 0; font-size: 14px; line-height: 1.35; }
	.landing-dwi .ld-infobar__item svg { margin-top: 2px; }
	.landing-dwi .ld-infobar__item + .ld-infobar__item { border-left: 0; }
}

/* ========================= STEPS (timeline) ========================= */
.landing-dwi .ld-steps { background: var(--cream); }
.landing-dwi .ld-steps__grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 56px; align-items: center; }
.landing-dwi .ld-steps__intro h2 { font-size: 38px; }
.landing-dwi .ld-steps__intro .ld-hero__rule { margin: 20px 0 22px; }
.landing-dwi .ld-steps__intro p { font-size: 17px; color: var(--ink-soft); margin-bottom: 26px; }
.landing-dwi .ld-timeline { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; position: relative; }
.landing-dwi .ld-timeline::before { content: ""; position: absolute; top: 22px; left: 8%; right: 8%; height: 2px; background: repeating-linear-gradient(90deg, var(--gold) 0 10px, transparent 10px 18px); }
.landing-dwi .ld-step { text-align: center; position: relative; }
.landing-dwi .ld-step__num { width: 44px; height: 44px; margin: 0 auto 14px; border-radius: 50%; background: var(--marsala); color: #fff; font-family: "Playfair Display", serif; font-weight: 700; font-size: 18px; line-height: 1; padding-bottom: 3px; display: flex; align-items: center; justify-content: center; position: relative; z-index: 1; box-shadow: 0 0 0 5px var(--cream); }
/* Sekwencyjne podswietlanie etapow */
/* Animacja startuje dopiero gdy timeline wejdzie w ekran (klasa .ld-anim), od kroku 1 */
.landing-dwi .ld-timeline.ld-anim .ld-step__num { animation: ld-step-cycle 7s ease-in-out infinite; }
.landing-dwi .ld-timeline.ld-anim .ld-step:nth-child(1) .ld-step__num { animation-delay: 0s; }
.landing-dwi .ld-timeline.ld-anim .ld-step:nth-child(2) .ld-step__num { animation-delay: 1.2s; }
.landing-dwi .ld-timeline.ld-anim .ld-step:nth-child(3) .ld-step__num { animation-delay: 2.4s; }
.landing-dwi .ld-timeline.ld-anim .ld-step:nth-child(4) .ld-step__num { animation-delay: 3.6s; }
.landing-dwi .ld-timeline.ld-anim .ld-step:nth-child(5) .ld-step__num { animation-delay: 4.8s; }
@keyframes ld-step-cycle {
	0% { background: var(--marsala); box-shadow: 0 0 0 5px var(--cream), 0 0 0 rgba(174,145,103,0); transform: scale(1); }
	8% { background: linear-gradient(160deg, #922152, #b14a7b); box-shadow: 0 0 0 5px var(--cream), 0 0 22px rgba(174,145,103,.9); transform: scale(1.16); }
	18% { background: linear-gradient(160deg, #922152, #b14a7b); box-shadow: 0 0 0 5px var(--cream), 0 0 22px rgba(174,145,103,.9); transform: scale(1.16); }
	30%, 100% { background: var(--marsala); box-shadow: 0 0 0 5px var(--cream), 0 0 0 rgba(174,145,103,0); transform: scale(1); }
}
.landing-dwi .ld-step h4 { font-family: "Outfit", sans-serif; font-weight: 600; font-size: 14px; text-transform: uppercase; color: var(--marsala-deep); margin-bottom: 6px; letter-spacing: .3px; }
.landing-dwi .ld-step p { font-size: 13px; color: var(--ink-soft); margin: 0; }
@media (max-width: 990px) {
	.landing-dwi .ld-steps__grid { grid-template-columns: 1fr; gap: 36px; }
	.landing-dwi .ld-timeline { grid-template-columns: 1fr; gap: 22px; }
	.landing-dwi .ld-timeline::before { display: none; }
	.landing-dwi .ld-step { display: grid; grid-template-columns: 44px 1fr; gap: 16px; text-align: left; align-items: start; }
	.landing-dwi .ld-step__num { margin: 0; }
}

/* ========================= WHY CHOOSE ========================= */
.landing-dwi .ld-why {
	background:
		linear-gradient(90deg, rgba(251,240,225,.62) 0%, rgba(251,240,225,.48) 50%, rgba(251,240,225,.64) 100%),
		url(img/bg-6.jpg) 28% center / 165% no-repeat;
	background-color: var(--cream);
}
.landing-dwi .ld-why__grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 56px; align-items: center; }
.landing-dwi .ld-why { padding-bottom: 0; }
.landing-dwi .ld-why__grid { align-items: stretch; }
.landing-dwi .ld-why__text { align-self: center; padding: 40px 30px 40px 100px; transform: translateY(-26px); }
@media (max-width: 990px) { .landing-dwi .ld-why__text { transform: none; } }
.landing-dwi .ld-why__lead { max-width: 620px; }
@media (max-width: 990px) { .landing-dwi .ld-why__text { padding: 20px 0; } }
.landing-dwi .ld-why__photo { text-align: center; align-self: end; }
.landing-dwi .ld-why__photo img { width: 100%; max-width: 460px; height: auto; display: block; margin: 0 auto; vertical-align: bottom; }
@media (max-width: 990px) {
	.landing-dwi .ld-why__text { padding-bottom: 24px; }
	.landing-dwi .ld-why__photo img { max-width: 360px; }
}
.landing-dwi .ld-why h2 { font-size: 38px; }
.landing-dwi .ld-why__grid .ld-hero__rule { margin: 18px 0 20px; }
.landing-dwi .ld-why__lead { font-size: 20px; line-height: 1.65; color: var(--ink-soft); margin-bottom: 26px; }
@media (max-width: 768px) { .landing-dwi .ld-why__lead { font-size: 18px; } }
.landing-dwi .ld-checks { display: grid; grid-template-columns: 1fr 1fr; gap: 20px 32px; padding: 0; margin: 0; }
.landing-dwi .ld-checks li { list-style: none; display: flex; align-items: center; gap: 14px; font-size: 16.5px; line-height: 1.3; color: var(--ink); font-weight: 500; }
.landing-dwi .ld-check-ico { width: 40px; height: 40px; flex: none; display: flex; align-items: center; justify-content: center; border-radius: 50%; background: rgba(174,145,103,.15); }
.landing-dwi .ld-check-ico svg { width: 22px; height: 22px; stroke: var(--gold-deep); flex: none; }
@media (max-width: 560px) { .landing-dwi .ld-checks { grid-template-columns: 1fr; } }
@media (max-width: 990px) { .landing-dwi .ld-why__grid { grid-template-columns: 1fr; gap: 34px; } }
@media (max-width: 560px) { .landing-dwi .ld-checks { grid-template-columns: 1fr; } }

/* ========================= TESTIMONIALS (ciemne) ========================= */
.landing-dwi .ld-testimonials {
	background:
		linear-gradient(rgba(87,39,60,.74), rgba(64,28,44,.83)),
		url(img/dwi-bg.jpg) center/cover no-repeat;
}
.landing-dwi .ld-testimonials .ld-sec-head h2 { color: #fff; }
.landing-dwi .ld-testimonials .ld-sec-head p { color: #e7cddb; }
.landing-dwi .ld-quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.landing-dwi .ld-quote { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); border-radius: 8px; padding: 30px 28px; }
.landing-dwi .ld-quote__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.landing-dwi .ld-quote__stars { color: var(--gold); letter-spacing: 2px; font-size: 15px; }
.landing-dwi .ld-quote__g { height: 24px; width: 24px; }
.landing-dwi .ld-quote p { color: #f3e7ee; font-size: 15px; margin: 0 0 18px; }
.landing-dwi .ld-quote cite { font-style: normal; color: #fff; font-weight: 600; }
.landing-dwi .ld-quote span { display: block; color: var(--gold); font-size: 13px; }
@media (max-width: 990px) { .landing-dwi .ld-quotes { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; } }
/* Slider opinii (owl) — rowne wysokosci + kropki */
.landing-dwi .ld-testi .owl-stage { display: flex !important; align-items: stretch !important; }
.landing-dwi .ld-testi .owl-stage .owl-item { display: flex !important; height: auto !important; align-items: stretch !important; }
.landing-dwi .ld-testi .owl-item .ld-quote { width: 100%; height: auto; }
.landing-dwi .ld-testi .owl-dots { display: flex; justify-content: center; align-items: center; gap: 14px; margin-top: 34px; }
.landing-dwi .ld-testi .owl-dots .owl-dot { display: inline-flex; flex: 0 0 auto; align-items: center; justify-content: center; width: 12px; height: 12px; padding: 0; margin: 0; background: transparent; border: 0; }
.landing-dwi .ld-testi .owl-dots .owl-dot span { width: 12px !important; height: 12px !important; min-width: 12px; flex: 0 0 12px; aspect-ratio: 1; background: rgba(255,255,255,.32); border-radius: 50%; display: block; margin: 0; transition: background .3s, transform .3s; }
.landing-dwi .ld-testi .owl-dots .owl-dot.active span { background: var(--gold); transform: scale(1.25); }
/* Owl wymusza img{width:100%} — przywracamy male logo Google */
.landing-dwi .ld-testi .owl-item img.ld-quote__g { width: auto; height: 22px; display: inline-block; }

/* ========================= FAQ (natywny akordeon <details>) ========================= */
.landing-dwi .ld-faq {
	background:
		linear-gradient(rgba(26,18,15,.82), rgba(18,12,10,.88)),
		url(img/dwi-bg.jpg) center 30%/cover no-repeat;
}
.landing-dwi .ld-faq .ld-sec-head h2 { color: #fff; }
.landing-dwi .ld-faq .ld-sec-head p { color: #e6d8c4; }
.landing-dwi .ld-faq__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 26px; }
.landing-dwi details.ld-q { background: var(--cream); border: 0; border-radius: var(--radius); padding: 0 20px; transition: transform .25s ease, box-shadow .25s ease, background .25s ease; }
.landing-dwi details.ld-q:hover { transform: translateY(-3px); box-shadow: 0 14px 30px -16px rgba(87,39,60,.5); background: #fff; }
.landing-dwi details.ld-q:hover summary { color: var(--marsala-bright); }
.landing-dwi details.ld-q:hover summary::after { color: var(--marsala-bright); transform: scale(1.2); }
.landing-dwi details.ld-q summary::after { transition: transform .25s ease, color .25s ease; }
.landing-dwi details.ld-q summary {
	list-style: none; cursor: pointer; padding: 18px 0; font-weight: 500; font-size: 16px; color: var(--marsala-deep);
	display: flex; align-items: center; justify-content: space-between; gap: 14px;
}
.landing-dwi details.ld-q summary::-webkit-details-marker { display: none; }
.landing-dwi details.ld-q summary::after { content: "+"; font-size: 22px; color: var(--gold); font-weight: 400; transition: transform .25s; }
.landing-dwi details.ld-q[open] summary::after { content: "\2013"; }
.landing-dwi details.ld-q p { font-size: 14.5px; color: var(--ink-soft); margin: 0; padding-bottom: 18px; }
/* Easing na otwarciu: tresc plynnie sie pojawia (fade + slide) — dziala wszedzie */
.landing-dwi details.ld-q[open] p { animation: ld-faq-fade .34s ease both; }
@keyframes ld-faq-fade {
	from { opacity: 0; transform: translateY(-8px); }
	to { opacity: 1; transform: translateY(0); }
}
.landing-dwi details.ld-q summary::after { transition: transform .3s ease; }
@media (max-width: 768px) { .landing-dwi .ld-faq__grid { grid-template-columns: 1fr; } }

/* ========================= CTA koncowy (ciemny) ========================= */
.landing-dwi .ld-cta {
	background:
		radial-gradient(900px 480px at 12% 12%, rgba(174,145,103,.16), transparent 55%),
		linear-gradient(125deg, rgba(146,33,82,.52) 0%, rgba(99,45,68,.60) 45%, rgba(74,32,50,.68) 78%, rgba(29,78,63,.56) 128%),
		url(img/nyc-lawyer.jpg) center 30%/cover no-repeat;
}
.landing-dwi .ld-cta .ld-btn { white-space: nowrap; }
.landing-dwi .ld-cta__btns .ld-btn--gold { animation: ld-pulse 2.4s ease-in-out infinite; will-change: transform; }
@keyframes ld-pulse {
	0%, 100% { transform: scale(1); }
	50% { transform: scale(1.035); }
}
.landing-dwi .ld-cta__row { display: grid; grid-template-columns: 1.2fr .8fr auto; gap: 40px; align-items: center; }
.landing-dwi .ld-cta h2 { color: #fff; font-size: 34px; }
.landing-dwi .ld-cta h2 b { color: var(--gold); font-weight: 700; }
.landing-dwi .ld-cta__phone { display: flex; align-items: center; gap: 20px; }
.landing-dwi .ld-cta__phone-ico { width: 60px; height: 60px; flex: none; border-radius: 50%; background: linear-gradient(160deg, #927545 0%, #ae9167 60%, #c9ac82 100%); display: flex; align-items: center; justify-content: center; color: #2a1c12; box-shadow: 0 12px 26px -10px rgba(174,145,103,.75); }
.landing-dwi .ld-cta__phone-ico svg { width: 28px; height: 28px; fill: currentColor; stroke: none; }
.landing-dwi .ld-cta__phone small { color: #bcd3ca; text-transform: uppercase; letter-spacing: 1.5px; font-size: 12px; }
.landing-dwi .ld-cta__phone a { display: block; color: #fff; font-family: "Playfair Display", serif; font-weight: 700; font-size: 34px; text-decoration: none; }
.landing-dwi .ld-cta__phone p { color: #bcd3ca; font-size: 14px; margin: 6px 0 0; }
.landing-dwi .ld-cta__btns { display: flex; flex-direction: column; gap: 12px; align-items: stretch; }
.landing-dwi .ld-cta__btns .ld-btn { justify-content: center; }
@media (max-width: 990px) {
	.landing-dwi .ld-cta__row { grid-template-columns: 1fr; text-align: center; gap: 26px; }
	.landing-dwi .ld-cta__phone { justify-content: center; }
	.landing-dwi .ld-cta__phone a { font-size: 30px; }
	.landing-dwi .ld-cta__btns { flex-direction: row; justify-content: center; flex-wrap: wrap; }
}

/* ===== Skosy (ukosne bary jak na home: skew 45deg + gradient marsala->zloto) ===== */
.landing-dwi .ld-skew { position: relative; overflow: hidden; }
.landing-dwi .ld-skew::before,
.landing-dwi .ld-skew::after {
	content: "";
	position: absolute;
	top: -25%;
	height: 165%;
	width: 170px;
	transform: skew(45deg, 0deg);
	background: linear-gradient(120deg, rgba(178,74,123,.32), rgba(146,33,82,.16));
	border-left: 1px solid rgba(201,124,166,.28);
	border-right: 1px solid rgba(201,124,166,.28);
	pointer-events: none;
	z-index: 0;
}
.landing-dwi .ld-skew::before { left: 5%; }
.landing-dwi .ld-skew::after { right: 9%; width: 120px; }
.landing-dwi .ld-skew > * { position: relative; z-index: 1; }
@media (max-width: 768px) {
	.landing-dwi .ld-skew::before { left: -4%; }
	.landing-dwi .ld-skew::after { right: -4%; }
}

/* ===== Stopka landingu: minimalna (pkt 15 klienta) — chowamy pelna stopke motywu
   (menu miast, linki NJ, adres), landing konczy sie sekcja CTA + cienki pasek copyright.
   landing.css laduje sie tylko na tej stronie, wiec reszta serwisu bez zmian. ===== */
.site-footer .container,
.site-footer .bg,
.site-footer .lines { display: none !important; }
.site-footer { padding-top: 0 !important; padding-bottom: 0 !important; background: #2b1622; }

/* ========================= DWI CHARGES (sekcja SEO) ========================= */
.landing-dwi .ld-charges {
	background:
		linear-gradient(135deg, rgba(92,40,62,.72), rgba(66,28,46,.82)),
		url(img/dwi-penalties-bg.jpg) center/cover no-repeat;
}
.landing-dwi .ld-charges .ld-sec-head { max-width: 860px; margin-left: auto; margin-right: auto; }
.landing-dwi .ld-charges .ld-sec-head h2 { color: #fff; text-shadow: 0 2px 14px rgba(0,0,0,.35); }
.landing-dwi .ld-charges .ld-sec-head .ld-charges__intro { font-size: 17px; color: #f6e9f0; line-height: 1.65; margin-top: 14px; text-shadow: 0 1px 10px rgba(0,0,0,.4); }
.landing-dwi .ld-charges__list { list-style: none; margin: 36px auto 0; padding: 0; max-width: 940px; display: grid; grid-template-columns: 1fr 1fr; gap: 16px 26px; }
.landing-dwi .ld-charges__list li { display: flex; align-items: center; gap: 15px; background: rgba(255,255,255,.11); border: 0; border-radius: 12px; padding: 17px 24px; font-size: 16px; font-weight: 500; color: #fff; box-shadow: 0 18px 44px -26px rgba(0,0,0,.7); transition: transform .25s ease, box-shadow .25s ease, background .25s ease; }
.landing-dwi .ld-charges__list li:hover { transform: translateY(-3px); background: rgba(255,255,255,.18); box-shadow: 0 24px 50px -22px rgba(0,0,0,.75); }
.landing-dwi .ld-charges__ico { flex: none; width: 34px; height: 34px; border-radius: 50%; background: linear-gradient(160deg, #922152, #b14a7b); display: flex; align-items: center; justify-content: center; box-shadow: 0 6px 16px -6px rgba(146,33,82,.8); }
.landing-dwi .ld-charges__ico svg { width: 18px; height: 18px; fill: none; stroke: var(--gold); stroke-width: 2.8; stroke-linecap: round; stroke-linejoin: round; }
@media (max-width: 768px) {
	.landing-dwi .ld-charges__list { grid-template-columns: 1fr; gap: 12px; }
}
