/* ==========================================================================
   Wulkdrive — landing page styles (front-page.php + single-wd_service.php)
   ========================================================================== */

/* === Force full-bleed: break out of Kadence content boxed wrapper === */
.wd-landing {
    display: block;
    width: 100%;
}
body.home #content,
body.home .content-container,
body.home .entry-content-wrap,
body.single-wd_service #content,
body.single-wd_service .content-container,
body.single-wd_service .entry-content-wrap,
body.single-wd_city #content,
body.single-wd_city .content-container,
body.single-wd_city .entry-content-wrap {
    max-width: none !important;
    padding: 0 !important;
    margin: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    border: 0 !important;
}
body.home .site-container,
body.single-wd_service .site-container,
body.single-wd_city .site-container {
    max-width: none !important;
    padding: 0 !important;
}
body.home .entry-content,
body.single-wd_service .entry-content,
body.single-wd_city .entry-content {
    max-width: none !important;
    margin: 0 !important;
}
/* Hide Kadence default page title hero on these layouts (we use our own hero) */
body.home .entry-hero,
body.home header.entry-header,
body.single-wd_service .entry-hero,
body.single-wd_service header.entry-header,
body.single-wd_city .entry-hero,
body.single-wd_city header.entry-header {
    display: none !important;
}

.wd-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* === Buttons === */
.wd-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 26px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none !important;
    line-height: 1;
    transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
    border: 2px solid transparent;
    min-height: 48px;
    cursor: pointer;
}
.wd-btn--primary {
    background: var(--accent-action);
    color: #fff !important;
    box-shadow: 0 4px 14px rgba(220, 38, 38, 0.35);
}
.wd-btn--primary:hover {
    background: var(--accent-action-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(220, 38, 38, 0.45);
}
.wd-btn--ghost {
    background: transparent;
    color: #fff !important;
    border-color: rgba(255,255,255,0.4);
}
.wd-btn--ghost:hover {
    background: rgba(255,255,255,0.1);
    border-color: #fff;
}
.wd-btn--lg { padding: 18px 36px; font-size: 18px; min-height: 56px; }

/* === Eyebrow / mini label === */
.wd-eyebrow {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-amber-500);
    margin-bottom: 12px;
}
.wd-eyebrow--dark { color: var(--color-red-600); }

/* === HERO === */
.wd-hero {
    position: relative;
    min-height: 640px;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: #fff;
    isolation: isolate;
}
.wd-hero__bg {
    position: absolute;
    inset: 0;
    z-index: -2;
}
.wd-hero__bg svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.wd-hero__overlay {
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(135deg, rgba(15,30,61,0.92) 0%, rgba(15,30,61,0.75) 50%, rgba(31,50,88,0.88) 100%),
        radial-gradient(circle at 80% 20%, rgba(245,158,11,0.15) 0%, transparent 50%);
}
.wd-hero__inner {
    padding: 96px 24px;
    max-width: 880px;
}
.wd-hero__title {
    font-size: clamp(36px, 6vw, 64px);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: #fff !important;
    margin: 0 0 24px;
}
.wd-hero__title-accent {
    color: var(--color-amber-500);
    background: linear-gradient(120deg, #F59E0B 0%, #FBBF24 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.wd-hero__lead {
    font-size: clamp(17px, 1.7vw, 21px);
    line-height: 1.55;
    color: rgba(255,255,255,0.92);
    max-width: 680px;
    margin: 0 0 36px;
}
.wd-hero__cta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 36px;
}
.wd-hero__trust {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.wd-hero__trust .wd-trust-badge {
    background: rgba(255,255,255,0.1);
    color: #fff;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

/* === Section heads === */
.wd-section-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 56px;
}
.wd-section-head h2 {
    font-size: clamp(28px, 3.5vw, 40px);
    margin: 0 0 16px;
    color: var(--color-navy-900);
    line-height: 1.15;
}
.wd-section-head p {
    font-size: 18px;
    color: var(--color-gray-500);
    line-height: 1.6;
    margin: 0;
}
.wd-section-head--inverted h2 { color: #fff; }
.wd-section-head--inverted p { color: rgba(255,255,255,0.75); }
.wd-section-foot {
    text-align: center;
    margin-top: 48px;
}

/* === USP STRIP === */
.wd-usp {
    background: var(--color-navy-50);
    padding: 80px 0;
}
.wd-usp__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}
.wd-usp__item {
    background: #fff;
    padding: 32px 28px;
    border-radius: 12px;
    border: 1px solid var(--border-default);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.wd-usp__item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(15,30,61,0.08);
}
.wd-usp__icon {
    font-size: 36px;
    margin-bottom: 16px;
    display: inline-flex;
    width: 64px;
    height: 64px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--color-navy-50) 0%, var(--color-navy-100) 100%);
    align-items: center;
    justify-content: center;
}
.wd-usp__item h3 {
    font-size: 18px;
    margin: 0 0 8px;
    color: var(--color-navy-900);
}
.wd-usp__item p {
    font-size: 15px;
    line-height: 1.55;
    color: var(--color-gray-500);
    margin: 0;
}

/* === SERVICES GRID === */
.wd-services {
    padding: 96px 0;
    background: #fff;
}
.wd-services__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
}
.wd-service-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid var(--border-default);
    border-radius: 14px;
    overflow: hidden;
    text-decoration: none !important;
    color: inherit;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.wd-service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(15,30,61,0.12);
    border-color: var(--color-navy-200);
}
.wd-service-card__media {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--color-navy-50);
}
.wd-service-card__media svg {
    width: 100%;
    height: 100%;
    display: block;
}
.wd-service-card__body { padding: 24px; }
.wd-service-card__title {
    font-size: 19px;
    font-weight: 700;
    margin: 0 0 10px;
    color: var(--color-navy-900);
}
.wd-service-card__excerpt {
    font-size: 15px;
    color: var(--color-gray-500);
    line-height: 1.55;
    margin: 0 0 18px;
}
.wd-service-card__cta {
    color: var(--color-red-600);
    font-weight: 600;
    font-size: 15px;
}

/* === TRUST STRIP === */
.wd-trust-strip {
    background: var(--color-navy-900);
    padding: 56px 0;
    color: #fff;
}
.wd-trust-strip__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 24px;
    text-align: center;
}
.wd-trust-strip__num {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 800;
    color: var(--color-amber-500);
    line-height: 1;
    margin-bottom: 8px;
}
.wd-trust-strip__lbl {
    font-size: 15px;
    color: rgba(255,255,255,0.75);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
}

/* === HOW IT WORKS === */
.wd-how {
    padding: 96px 0;
    background: var(--color-gray-50);
}
.wd-how__steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 28px;
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: step;
}
.wd-how__steps li {
    background: #fff;
    padding: 32px 28px;
    border-radius: 12px;
    position: relative;
}
.wd-how__num {
    display: inline-flex;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--color-red-600);
    color: #fff;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 18px;
    margin-bottom: 16px;
}
.wd-how__steps li h3 {
    font-size: 18px;
    margin: 0 0 8px;
    color: var(--color-navy-900);
}
.wd-how__steps li p {
    font-size: 15px;
    color: var(--color-gray-500);
    line-height: 1.55;
    margin: 0;
}

/* === CITIES === */
.wd-cities { padding: 96px 0; }
.wd-cities__grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    max-width: 880px;
    margin: 0 auto;
}
.wd-city-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.08);
    color: #fff !important;
    border: 1px solid rgba(255,255,255,0.2);
    padding: 12px 20px;
    border-radius: 999px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none !important;
    transition: all 0.15s ease;
}
.wd-city-pill:hover {
    background: var(--color-amber-500);
    color: var(--color-navy-900) !important;
    border-color: var(--color-amber-500);
    transform: translateY(-2px);
}

/* === FINAL CTA === */
.wd-final-cta {
    padding: 96px 0;
    background:
        radial-gradient(circle at 70% 30%, rgba(245,158,11,0.1) 0%, transparent 50%),
        linear-gradient(135deg, var(--color-navy-800) 0%, var(--color-navy-950) 100%);
    color: #fff;
    text-align: center;
}
.wd-final-cta__inner { max-width: 720px; margin: 0 auto; padding: 0 24px; }
.wd-final-cta h2 {
    font-size: clamp(30px, 4vw, 44px);
    color: #fff !important;
    margin: 0 0 16px;
    line-height: 1.15;
}
.wd-final-cta > div > p {
    font-size: 18px;
    color: rgba(255,255,255,0.85);
    margin: 0 0 32px;
}
.wd-final-cta__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    margin-bottom: 24px;
}
.wd-final-cta__hours {
    font-size: 14px !important;
    color: rgba(255,255,255,0.6) !important;
    margin-top: 16px !important;
}

/* === SERVICE / CITY single === */
.wd-single-hero {
    background: linear-gradient(135deg, var(--color-navy-900) 0%, var(--color-navy-700) 100%);
    color: #fff;
    padding: 80px 0 64px;
}
.wd-single-hero h1 {
    font-size: clamp(32px, 4.5vw, 48px);
    color: #fff !important;
    margin: 0 0 20px;
    line-height: 1.1;
}
.wd-single-hero__lead {
    font-size: 19px;
    color: rgba(255,255,255,0.9);
    line-height: 1.55;
    max-width: 720px;
}
.wd-single-hero__crumbs {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    margin-bottom: 16px;
}
.wd-single-hero__crumbs a { color: var(--color-amber-500); text-decoration: none; }
.wd-single-body {
    padding: 64px 0;
    background: #fff;
}
.wd-single-body .wd-container {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(280px, 1fr);
    gap: 56px;
}
.wd-single-body .wd-prose { font-size: 17px; line-height: 1.7; color: var(--color-gray-900); }
.wd-single-body .wd-prose h2 {
    margin: 40px 0 16px;
    font-size: 28px;
    color: var(--color-navy-900);
}
.wd-single-body .wd-prose h3 { margin: 32px 0 12px; font-size: 22px; color: var(--color-navy-800); }
.wd-single-body .wd-prose p, .wd-single-body .wd-prose ul { margin-bottom: 16px; }
.wd-single-body .wd-prose ul { padding-left: 22px; }
.wd-single-body .wd-prose img { border-radius: 10px; }

.wd-sidebar {
    position: sticky;
    top: 100px;
    align-self: start;
}
.wd-sidebar__card {
    background: var(--color-navy-50);
    border: 1px solid var(--color-navy-100);
    border-radius: 14px;
    padding: 28px;
    margin-bottom: 20px;
}
.wd-sidebar__card h3 {
    font-size: 18px;
    margin: 0 0 12px;
    color: var(--color-navy-900);
}
.wd-sidebar__card p { font-size: 15px; color: var(--color-gray-700); margin: 0 0 16px; }
.wd-sidebar__card .wd-btn { width: 100%; }

@media (max-width: 880px) {
    .wd-single-body .wd-container { grid-template-columns: 1fr; }
    .wd-sidebar { position: static; }
    .wd-hero { min-height: 540px; }
    .wd-hero__inner { padding: 64px 24px; }
    .wd-services, .wd-how, .wd-cities, .wd-final-cta, .wd-usp { padding: 64px 0; }
}

/* === BRANDS STRIP === */
.wd-brands {
    padding: 56px 0;
    background: #fff;
    border-bottom: 1px solid var(--border-default);
}
.wd-brands__lbl {
    text-align: center;
    color: var(--color-gray-500);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 600;
    margin: 0 0 24px;
}
.wd-brands__grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}
.wd-brands__pill {
    padding: 10px 20px;
    background: var(--color-gray-50);
    border: 1px solid var(--border-default);
    border-radius: 8px;
    font-weight: 700;
    font-size: 15px;
    color: var(--color-navy-800);
    letter-spacing: 0.02em;
}

/* === REVIEWS === */
.wd-reviews { padding: 96px 0; background: var(--color-gray-50); }
.wd-reviews__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}
.wd-review {
    background: #fff;
    border-radius: 14px;
    padding: 32px 28px;
    border: 1px solid var(--border-default);
    position: relative;
}
.wd-review::before {
    content: """;
    position: absolute;
    top: -12px;
    left: 24px;
    font-size: 80px;
    line-height: 1;
    color: var(--color-amber-500);
    font-family: Georgia, serif;
}
.wd-review__stars {
    color: var(--color-amber-500);
    font-size: 18px;
    letter-spacing: 2px;
    margin-bottom: 12px;
}
.wd-review__text {
    font-size: 16px;
    line-height: 1.65;
    color: var(--color-gray-700);
    margin: 0 0 20px;
    font-style: italic;
}
.wd-review__author {
    font-size: 14px;
    color: var(--color-gray-500);
}
.wd-review__author strong { color: var(--color-navy-900); }

/* === FAQ === */
.wd-faq { padding: 96px 0; background: #fff; }
.wd-faq__inner { max-width: 820px; }
.wd-faq__item {
    border: 1px solid var(--border-default);
    border-radius: 10px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.wd-faq__item[open] {
    border-color: var(--color-navy-200);
    box-shadow: 0 4px 16px rgba(15,30,61,0.06);
}
.wd-faq__item summary {
    padding: 20px 24px;
    cursor: pointer;
    font-weight: 600;
    font-size: 17px;
    color: var(--color-navy-900);
    list-style: none;
    position: relative;
    padding-right: 56px;
    transition: background 0.15s ease;
}
.wd-faq__item summary:hover { background: var(--color-gray-50); }
.wd-faq__item summary::-webkit-details-marker { display: none; }
.wd-faq__item summary::after {
    content: "+";
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 28px;
    color: var(--color-red-600);
    font-weight: 300;
    transition: transform 0.2s ease;
}
.wd-faq__item[open] summary::after { content: "−"; }
.wd-faq__item p {
    padding: 0 24px 20px;
    margin: 0;
    color: var(--color-gray-700);
    line-height: 1.65;
    font-size: 16px;
}

/* === STICKY MOBILE CALL BUTTON === */
.wd-sticky-call {
    position: fixed;
    bottom: 16px;
    right: 16px;
    z-index: 9999;
    background: var(--color-red-600);
    color: #fff !important;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    text-decoration: none !important;
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.5);
    animation: wdPulse 2s ease-in-out infinite;
}
.wd-sticky-call:hover { transform: scale(1.05); background: var(--color-red-700); }
@keyframes wdPulse {
    0%, 100% { box-shadow: 0 6px 20px rgba(220, 38, 38, 0.5); }
    50% { box-shadow: 0 6px 28px rgba(220, 38, 38, 0.8), 0 0 0 8px rgba(220, 38, 38, 0.15); }
}
@media (max-width: 768px) {
    .wd-sticky-call { display: inline-flex; }
}

/* === Pre-launch banner refresh (over Kadence) === */
.wd-prelaunch-banner {
    background: linear-gradient(90deg, var(--color-amber-500) 0%, var(--color-amber-600) 100%);
    color: var(--color-navy-900);
    text-align: center;
    padding: 8px 16px;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.02em;
}

/* ========================================================
   v0.4.2 — POLISH LAYER: animated hero, hover lifts, accents
   ======================================================== */

/* Animated mesh gradient behind hero */
.wd-hero {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 15% 20%, rgba(245,158,11,.18) 0%, transparent 45%),
        radial-gradient(circle at 85% 30%, rgba(220,38,38,.22) 0%, transparent 50%),
        radial-gradient(circle at 50% 90%, rgba(59,130,246,.15) 0%, transparent 55%),
        linear-gradient(135deg, #0F1E3D 0%, #1E3A8A 50%, #0F1E3D 100%);
}
.wd-hero::before {
    content: "";
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
    pointer-events: none;
    animation: wdGridShift 30s linear infinite;
}
@keyframes wdGridShift {
    from { background-position: 0 0, 0 0; }
    to   { background-position: 56px 56px, 56px 56px; }
}
.wd-hero__inner { position: relative; z-index: 2; padding: 96px 24px 112px; }
.wd-hero__title {
    font-size: clamp(2.4rem, 5vw, 4.2rem);
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #fff;
    margin: 12px 0 20px;
}
.wd-hero__title-accent {
    background: linear-gradient(90deg, #F59E0B 0%, #FBBF24 50%, #F59E0B 100%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: wdShimmer 6s ease-in-out infinite;
}
@keyframes wdShimmer {
    0%, 100% { background-position: 0% 50%; }
    50%      { background-position: 100% 50%; }
}
.wd-hero__lead {
    font-size: 1.15rem;
    color: rgba(255,255,255,.85);
    max-width: 640px;
    line-height: 1.6;
}

/* Buttons — gradient + lift */
.wd-btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none !important;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
    border: 2px solid transparent;
}
.wd-btn--primary {
    background: linear-gradient(135deg, #DC2626 0%, #B91C1C 100%);
    color: #fff !important;
    box-shadow: 0 6px 20px rgba(220,38,38,.35);
}
.wd-btn--primary:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(220,38,38,.5); }
.wd-btn--ghost {
    background: rgba(255,255,255,.08);
    color: #fff !important;
    border-color: rgba(255,255,255,.25);
    backdrop-filter: blur(8px);
}
.wd-btn--ghost:hover { background: rgba(255,255,255,.18); transform: translateY(-2px); }
.wd-btn--lg { padding: 18px 36px; font-size: 1.1rem; }

/* Trust badges — glassy chips */
.wd-trust-badge {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 8px 16px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.18);
    backdrop-filter: blur(10px);
    border-radius: 999px;
    color: #fff;
    font-size: .9rem;
    font-weight: 500;
    margin: 4px 6px 0 0;
}

/* Eyebrow tag */
.wd-eyebrow {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(245,158,11,.15);
    border: 1px solid rgba(245,158,11,.4);
    color: #FBBF24;
    border-radius: 999px;
    font-size: .82rem;
    font-weight: 600;
    letter-spacing: .04em;
    text-transform: uppercase;
}
.wd-eyebrow--dark { background: rgba(15,30,61,.06); border-color: rgba(15,30,61,.18); color: #DC2626; }

/* Section headings — animated underline */
.wd-section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 800;
    letter-spacing: -0.015em;
    margin: 12px 0 8px;
    color: #0F1E3D;
}
.wd-section-title::after {
    content: "";
    display: block;
    width: 64px; height: 4px;
    background: linear-gradient(90deg, #DC2626 0%, #F59E0B 100%);
    border-radius: 2px;
    margin-top: 12px;
}

/* USP cards — hover lift */
.wd-usp { padding: 88px 0; background: linear-gradient(180deg, #fff 0%, #F8FAFC 100%); }
.wd-usp__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; }
.wd-usp__item {
    background: #fff;
    padding: 32px 24px;
    border-radius: 16px;
    border: 1px solid rgba(15,30,61,.08);
    box-shadow: 0 2px 8px rgba(15,30,61,.04);
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.wd-usp__item:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(15,30,61,.12);
    border-color: rgba(245,158,11,.35);
}
.wd-usp__icon {
    width: 56px; height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, #FEF3C7 0%, #FCD34D 100%);
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 28px;
    margin-bottom: 16px;
}
.wd-usp__item h3 { font-size: 1.2rem; margin: 0 0 8px; color: #0F1E3D; font-weight: 700; }
.wd-usp__item p { color: #475569; line-height: 1.6; margin: 0; }

/* Services — accent corner */
.wd-services { padding: 88px 0; }
.wd-service-card {
    position: relative;
    overflow: hidden;
    background: #fff;
    border-radius: 16px;
    border: 1px solid rgba(15,30,61,.08);
    transition: transform .22s, box-shadow .22s;
}
.wd-service-card::before {
    content: "";
    position: absolute; top: 0; right: 0;
    width: 0; height: 0;
    border-style: solid;
    border-width: 0 56px 56px 0;
    border-color: transparent #DC2626 transparent transparent;
    transition: border-color .22s;
}
.wd-service-card:hover { transform: translateY(-4px); box-shadow: 0 14px 32px rgba(15,30,61,.12); }
.wd-service-card:hover::before { border-color: transparent #F59E0B transparent transparent; }

/* Cities pills — neon hover */
.wd-cities { padding: 80px 0; background: linear-gradient(135deg, #0F1E3D 0%, #1E293B 100%); color: #fff; }
.wd-cities .wd-section-title { color: #fff; }
.wd-city-pill {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 12px 20px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(245,158,11,.3);
    border-radius: 999px;
    color: #fff !important;
    text-decoration: none;
    font-weight: 500;
    transition: all .2s;
}
.wd-city-pill:hover {
    background: rgba(245,158,11,.18);
    border-color: #F59E0B;
    box-shadow: 0 0 0 4px rgba(245,158,11,.15);
    transform: translateY(-2px);
}

/* Final CTA — bold gradient */
.wd-final-cta {
    padding: 96px 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(245,158,11,.2), transparent 50%),
        linear-gradient(135deg, #DC2626 0%, #991B1B 100%);
    color: #fff;
    text-align: center;
}
.wd-final-cta .wd-section-title { color: #fff; }
.wd-final-cta .wd-section-title::after { background: #FBBF24; margin-left: auto; margin-right: auto; }

/* Scroll-fade-in */
@media (prefers-reduced-motion: no-preference) {
    .wd-usp__item, .wd-service-card, .wd-city-pill {
        animation: wdFadeUp .6s ease-out backwards;
    }
    .wd-usp__item:nth-child(1) { animation-delay: .05s; }
    .wd-usp__item:nth-child(2) { animation-delay: .12s; }
    .wd-usp__item:nth-child(3) { animation-delay: .19s; }
    .wd-usp__item:nth-child(4) { animation-delay: .26s; }
}
@keyframes wdFadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* === v0.5.1 — Hero SVG art + Stats counter row === */
.wd-hero { display: grid; }
.wd-hero__inner {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 48px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}
.wd-hero__art {
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 24px 40px rgba(0,0,0,.45));
    animation: wdFloat 6s ease-in-out infinite;
}
.wd-hero__art svg { width: 100%; height: auto; max-width: 560px; }
@keyframes wdFloat {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-12px); }
}
@media (max-width: 860px) {
    .wd-hero__inner { grid-template-columns: 1fr; }
    .wd-hero__art   { order: -1; max-width: 380px; margin: 0 auto; }
}

.wd-stats {
    background: linear-gradient(135deg, #0F1E3D 0%, #1E293B 100%);
    color: #fff;
    padding: 56px 0;
    border-top: 4px solid #F59E0B;
    border-bottom: 4px solid #DC2626;
}
.wd-stats__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 32px;
    text-align: center;
}
.wd-stat__num {
    display: block;
    font-size: clamp(2.4rem, 5vw, 3.4rem);
    font-weight: 800;
    letter-spacing: -.02em;
    background: linear-gradient(135deg, #F59E0B 0%, #FBBF24 50%, #F59E0B 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1;
}
.wd-stat__lbl {
    display: block;
    margin-top: 8px;
    color: rgba(255,255,255,.75);
    font-size: .95rem;
    letter-spacing: .02em;
}

/* === v0.5.2 — Comparison table === */
.wd-compare { padding: 88px 0; background: #fff; }
.wd-compare .wd-section-head { text-align: center; margin-bottom: 40px; }
.wd-compare .wd-section-title::after { margin-left: auto; margin-right: auto; }
.wd-compare__table {
    max-width: 980px; margin: 0 auto;
    border-radius: 18px; overflow: hidden;
    box-shadow: 0 20px 50px rgba(15,30,61,.10);
    border: 1px solid rgba(15,30,61,.08);
}
.wd-compare__head, .wd-compare__row {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    align-items: center;
}
.wd-compare__head {
    background: linear-gradient(135deg, #0F1E3D, #1E293B);
    color: #fff;
    padding: 20px 24px;
}
.wd-compare__col strong { display: block; font-size: 1.1rem; }
.wd-compare__col span { display: block; font-size: .82rem; color: rgba(255,255,255,.6); margin-top: 2px; }
.wd-compare__col--us strong { color: #FBBF24; }
.wd-compare__row {
    padding: 18px 24px;
    border-top: 1px solid rgba(15,30,61,.06);
    background: #fff;
    font-size: .98rem;
}
.wd-compare__row:nth-child(even) { background: #F8FAFC; }
.wd-compare__row > span:first-child { font-weight: 600; color: #0F1E3D; }
.wd-yes {
    color: #047857; font-weight: 600;
    background: rgba(16,185,129,.1);
    padding: 6px 12px; border-radius: 999px;
    display: inline-block; width: fit-content;
}
.wd-no {
    color: #991B1B; font-weight: 500;
    background: rgba(220,38,38,.08);
    padding: 6px 12px; border-radius: 999px;
    display: inline-block; width: fit-content;
}
@media (max-width: 720px) {
    .wd-compare__head, .wd-compare__row { grid-template-columns: 1fr; gap: 6px; padding: 16px; }
    .wd-compare__row > span:first-child { font-weight: 700; color: #DC2626; margin-bottom: 4px; }
}

/* Center section heads */
.wd-section-head--center { text-align: center; }
.wd-section-head--center .wd-section-title::after { margin-left: auto; margin-right: auto; }

/* === v0.5.3 — Testimonials + Pricing teaser === */
.wd-testi { padding: 88px 0; background: linear-gradient(180deg, #F8FAFC 0%, #fff 100%); }
.wd-testi__grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px; margin-top: 32px;
}
.wd-testi__card {
    background: #fff; padding: 28px 24px; border-radius: 16px;
    border: 1px solid rgba(15,30,61,.08);
    box-shadow: 0 4px 14px rgba(15,30,61,.05);
    transition: transform .22s, box-shadow .22s;
    position: relative;
}
.wd-testi__card::before {
    content: "“"; position: absolute; top: 8px; right: 18px;
    font-size: 90px; line-height: 1; color: rgba(245,158,11,.18);
    font-family: Georgia, serif; pointer-events: none;
}
.wd-testi__card:hover { transform: translateY(-4px); box-shadow: 0 14px 32px rgba(15,30,61,.10); }
.wd-testi__stars { color: #F59E0B; letter-spacing: 2px; font-size: 1.05rem; margin-bottom: 12px; }
.wd-testi__text { color: #334155; line-height: 1.6; margin: 0 0 20px; font-size: .98rem; }
.wd-testi__foot { display: flex; align-items: center; gap: 12px; }
.wd-testi__avatar {
    width: 44px; height: 44px; border-radius: 50%;
    background: linear-gradient(135deg, #DC2626 0%, #F59E0B 100%);
    color: #fff; font-weight: 700; font-size: .9rem;
    display: inline-flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.wd-testi__meta strong { display: block; color: #0F1E3D; font-size: .95rem; }
.wd-testi__meta small { color: #64748B; font-size: .82rem; }
.wd-testi__cta { text-align: center; margin-top: 32px; }
.wd-btn--ghost-dark {
    background: rgba(15,30,61,.05); color: #0F1E3D !important;
    border-color: rgba(15,30,61,.2);
}
.wd-btn--ghost-dark:hover { background: rgba(15,30,61,.1); }

.wd-pricing { padding: 88px 0; background: #fff; }
.wd-pricing__sub { color: #64748B; max-width: 560px; margin: 12px auto 0; }
.wd-pricing__grid {
    max-width: 760px; margin: 40px auto 0;
    display: grid; gap: 12px;
}
.wd-price {
    display: flex; justify-content: space-between; align-items: baseline; gap: 16px;
    padding: 18px 24px;
    background: #F8FAFC;
    border-radius: 12px;
    border-left: 4px solid #DC2626;
    transition: transform .15s, background .15s;
}
.wd-price:hover { transform: translateX(4px); background: #FEF3C7; }
.wd-price__svc { color: #0F1E3D; font-weight: 600; }
.wd-price__amt { color: #DC2626; font-weight: 800; font-size: 1.15rem; white-space: nowrap; }
.wd-price__amt small { display: block; color: #047857; font-size: .72rem; font-weight: 600; }
.wd-price--feat {
    background: linear-gradient(135deg, #FEF3C7 0%, #FDE68A 100%);
    border-left-color: #F59E0B;
    border: 2px solid #F59E0B;
    border-left-width: 6px;
}
.wd-pricing__note { text-align: center; color: #475569; margin-top: 32px; font-size: .95rem; }

/* === v0.5.4 — Promo banner + section dividers === */
.wd-promo {
    background: linear-gradient(90deg, #F59E0B 0%, #FBBF24 50%, #F59E0B 100%);
    color: #0F1E3D;
    padding: 0;
    border-top: 3px solid #DC2626;
    border-bottom: 3px solid #DC2626;
    position: relative;
    overflow: hidden;
}
.wd-promo::before {
    content: ""; position: absolute; inset: 0;
    background-image: repeating-linear-gradient(
        45deg,
        transparent 0,
        transparent 30px,
        rgba(255,255,255,.18) 30px,
        rgba(255,255,255,.18) 32px
    );
    pointer-events: none;
    opacity: .4;
}
.wd-promo__inner {
    position: relative; z-index: 2;
    display: flex; align-items: center; gap: 20px;
    padding: 20px 24px;
    flex-wrap: wrap;
}
.wd-promo__icon {
    width: 56px; height: 56px;
    background: #0F1E3D;
    color: #FBBF24;
    border-radius: 14px;
    display: inline-flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    animation: wdPromoTick 1.6s ease-in-out infinite;
}
@keyframes wdPromoTick {
    0%, 100% { transform: rotate(0); }
    25%      { transform: rotate(-6deg); }
    75%      { transform: rotate(6deg); }
}
.wd-promo__txt { flex: 1; min-width: 240px; line-height: 1.4; }
.wd-promo__txt strong {
    display: block;
    font-size: .8rem; letter-spacing: .12em; text-transform: uppercase;
    color: #991B1B; margin-bottom: 4px;
}
.wd-promo__txt span { display: block; font-size: 1.05rem; font-weight: 600; }
.wd-promo__txt b { color: #DC2626; font-weight: 800; font-size: 1.15rem; }
.wd-promo .wd-btn--primary { flex-shrink: 0; }

/* Generic section divider — wave SVG (use inline if needed in front-page) */
.wd-divider-wave {
    display: block;
    width: 100%;
    height: 60px;
    background: inherit;
}

/* ========================================================
   v0.5.5 — MOBILE RESPONSIVE AUDIT & POLISH
   Mobile-first: ensures every section works <640px
   ======================================================== */

/* Container has consistent padding on mobile */
.wd-container { padding-left: 16px; padding-right: 16px; box-sizing: border-box; }

/* Tablet: <960px */
@media (max-width: 960px) {
    .wd-hero__inner { padding: 64px 16px 80px; gap: 32px; }
    .wd-hero__title { font-size: clamp(2rem, 6vw, 3.2rem); }
    .wd-hero__lead  { font-size: 1.05rem; }

    .wd-promo__inner { padding: 16px; gap: 12px; }
    .wd-promo__txt span { font-size: 1rem; }

    .wd-stats { padding: 40px 0; }
    .wd-stats__grid { gap: 24px; }
    .wd-stat__num { font-size: clamp(2rem, 6vw, 2.6rem); }

    .wd-usp, .wd-services, .wd-testi, .wd-pricing, .wd-compare, .wd-cities, .wd-final-cta, .wd-faq {
        padding: 56px 0;
    }
    .wd-section-title { font-size: clamp(1.6rem, 4.5vw, 2.2rem); }
}

/* Mobile: <640px — primary breakpoint */
@media (max-width: 640px) {
    /* Hero */
    .wd-hero__inner { padding: 48px 16px 64px; gap: 24px; }
    .wd-hero__title { font-size: 2rem; line-height: 1.1; }
    .wd-hero__lead  { font-size: .98rem; }
    .wd-hero__art   { max-width: 280px; }
    .wd-hero__cta   { display: flex; flex-direction: column; gap: 12px; align-items: stretch; }
    .wd-hero__cta .wd-btn { width: 100%; justify-content: center; padding: 16px 20px; }
    .wd-hero__trust { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 16px; }
    .wd-trust-badge { font-size: .8rem; padding: 6px 12px; }

    /* Promo banner stack */
    .wd-promo__inner { flex-direction: column; align-items: stretch; text-align: center; }
    .wd-promo__icon { margin: 0 auto; }
    .wd-promo .wd-btn--primary { width: 100%; justify-content: center; }
    .wd-promo__txt { text-align: center; }

    /* Stats: 2-up on mobile */
    .wd-stats__grid { grid-template-columns: repeat(2, 1fr); gap: 20px 16px; }
    .wd-stat__num { font-size: 1.8rem; }
    .wd-stat__lbl { font-size: .82rem; }

    /* USP / cards single column */
    .wd-usp__grid { grid-template-columns: 1fr; gap: 16px; }
    .wd-usp__item { padding: 24px 20px; }
    .wd-usp__icon { width: 48px; height: 48px; font-size: 24px; }

    /* Services */
    .wd-services__grid, .wd-service-card-grid {
        grid-template-columns: 1fr !important;
    }

    /* Testimonials single column */
    .wd-testi__grid { grid-template-columns: 1fr; gap: 16px; }
    .wd-testi__card { padding: 22px 18px; }

    /* Pricing: stack labels & amounts */
    .wd-price { flex-direction: column; align-items: flex-start; gap: 4px; padding: 16px 18px; }
    .wd-price__amt { font-size: 1.05rem; }

    /* Brands: smaller pills */
    .wd-brands__grid { gap: 8px; }
    .wd-brands__pill { font-size: .82rem; padding: 6px 12px; }

    /* Cities */
    .wd-cities__grid { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
    .wd-city-pill { font-size: .9rem; padding: 10px 16px; }

    /* FAQ */
    .wd-faq__item { padding: 14px 16px; }
    .wd-faq summary { font-size: 1rem; }

    /* Final CTA */
    .wd-final-cta { padding: 64px 16px; }
    .wd-final-cta__inner .wd-btn { width: 100%; justify-content: center; margin-top: 8px; }

    /* Section titles */
    .wd-section-title { font-size: 1.6rem; }
    .wd-eyebrow { font-size: .72rem; padding: 5px 10px; }

    /* Sticky call: bigger tap target, safer position */
    .wd-sticky-call {
        width: 64px; height: 64px;
        bottom: 20px; right: 20px;
        font-size: 28px;
    }

    /* Pre-launch banner: smaller text */
    .wd-prelaunch-banner { font-size: 11px; padding: 6px 12px; line-height: 1.4; }

    /* Buttons general */
    .wd-btn { padding: 13px 22px; font-size: .96rem; }
    .wd-btn--lg { padding: 15px 26px; font-size: 1rem; }

    /* Compare table mobile already handled at 720px */
    .wd-compare { padding: 48px 0; }
    .wd-compare__head, .wd-compare__row { padding: 14px 16px; }
}

/* Very small phones: <380px */
@media (max-width: 380px) {
    .wd-hero__title { font-size: 1.75rem; }
    .wd-stats__grid { grid-template-columns: 1fr; }
    .wd-stat { padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.08); }
    .wd-stat:last-child { border-bottom: 0; }
}

/* Landscape phones: ensure hero doesn't dominate */
@media (max-width: 900px) and (orientation: landscape) and (max-height: 500px) {
    .wd-hero__inner { padding: 32px 16px; }
    .wd-hero__art { max-width: 220px; }
}

/* Prevent horizontal scroll caused by SVG/wide elements */
html, body { overflow-x: hidden; max-width: 100vw; }
img, svg, video { max-width: 100%; height: auto; }

/* Touch targets ≥44px (iOS HIG / WCAG) */
@media (hover: none) and (pointer: coarse) {
    .wd-btn, .wd-city-pill, .wd-brands__pill, summary, .wd-sticky-call {
        min-height: 44px;
    }
    .wd-faq summary { padding: 12px 0; }
}

/* === v0.5.6 — Live activity widget === */
.wd-live-activity {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 9998;
    display: flex; align-items: center; gap: 12px;
    background: #fff;
    padding: 12px 18px 12px 14px;
    border-radius: 14px;
    box-shadow: 0 12px 32px rgba(15,30,61,.18), 0 0 0 1px rgba(15,30,61,.05);
    max-width: 320px;
    transform: translateY(120%);
    opacity: 0;
    transition: transform .45s cubic-bezier(.2,.8,.3,1), opacity .35s ease;
    font-size: .88rem;
}
.wd-live-activity.is-in { transform: translateY(0); opacity: 1; }
.wd-live-activity__dot {
    width: 10px; height: 10px; border-radius: 50%;
    background: #10B981;
    box-shadow: 0 0 0 0 rgba(16,185,129,.6);
    animation: wdLiveDot 1.6s ease-out infinite;
    flex-shrink: 0;
}
@keyframes wdLiveDot {
    0%   { box-shadow: 0 0 0 0 rgba(16,185,129,.6); }
    100% { box-shadow: 0 0 0 12px rgba(16,185,129,0); }
}
.wd-live-activity__txt { line-height: 1.35; }
.wd-live-activity__txt strong { display: block; color: #0F1E3D; font-size: .92rem; }
.wd-live-activity__txt small { color: #64748B; font-size: .78rem; }
.wd-live-activity__close {
    background: none; border: 0; cursor: pointer;
    color: #94A3B8; font-size: 20px; line-height: 1;
    padding: 0 0 0 6px; margin-left: auto;
}
.wd-live-activity__close:hover { color: #DC2626; }

@media (max-width: 640px) {
    .wd-live-activity {
        left: 12px; right: 12px; bottom: 92px;
        max-width: none;
        font-size: .82rem;
    }
}

/* === v0.5.7 — Service cards icon redesign === */
.wd-services__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin-top: 32px;
}
.wd-service-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    text-decoration: none !important;
    color: inherit;
}
.wd-service-card__media {
    aspect-ratio: 16 / 9;
    background:
        radial-gradient(circle at 30% 30%, rgba(255,255,255,.18), transparent 60%),
        linear-gradient(135deg, #0F1E3D 0%, #1E3A8A 50%, #DC2626 100%);
    display: flex; align-items: center; justify-content: center;
    border-radius: 16px 16px 0 0;
    position: relative;
    overflow: hidden;
}
.wd-service-card__media::after {
    content: ""; position: absolute; inset: 0;
    background-image:
        repeating-linear-gradient(45deg, transparent 0 14px, rgba(255,255,255,.05) 14px 15px);
    pointer-events: none;
}
.wd-service-card__media svg {
    position: relative; z-index: 2;
    transition: transform .35s cubic-bezier(.2,.8,.3,1);
    filter: drop-shadow(0 4px 12px rgba(0,0,0,.3));
}
.wd-service-card:hover .wd-service-card__media svg {
    transform: scale(1.15) rotate(-5deg);
}
.wd-service-card__body { padding: 22px 22px 24px; flex: 1; display: flex; flex-direction: column; }
.wd-service-card__title {
    font-size: 1.15rem; font-weight: 700; color: #0F1E3D;
    margin: 0 0 8px; line-height: 1.3;
}
.wd-service-card__excerpt {
    color: #64748B; font-size: .92rem; line-height: 1.55;
    margin: 0 0 16px; flex: 1;
}
.wd-service-card__cta {
    color: #DC2626; font-weight: 700; font-size: .92rem;
    transition: gap .2s, color .2s;
    display: inline-flex; align-items: center; gap: 4px;
}
.wd-service-card:hover .wd-service-card__cta { gap: 10px; color: #B91C1C; }

/* === v0.6.0 — Tire price table + Service price comparison === */

/* TIRE PRICE TABLE */
.wd-tirep {
    max-width: 880px; margin: 40px auto 32px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(15,30,61,.1);
    box-shadow: 0 16px 40px rgba(15,30,61,.08);
    background: #fff;
}
.wd-tirep__head, .wd-tirep__row {
    display: grid;
    grid-template-columns: 130px 1fr 1fr;
    align-items: center;
}
.wd-tirep__head {
    background: linear-gradient(135deg, #0F1E3D, #1E293B);
    color: #fff;
    padding: 18px 20px;
    font-weight: 700;
}
.wd-tirep__head > div { display: flex; flex-direction: column; }
.wd-tirep__head small { font-weight: 400; font-size: .76rem; color: rgba(255,255,255,.6); margin-top: 2px; }
.wd-tirep__col-stl { color: #93C5FD; }
.wd-tirep__col-alu { color: #FBBF24; }

.wd-tirep__row {
    padding: 14px 20px;
    border-top: 1px solid rgba(15,30,61,.06);
    transition: background .15s;
}
.wd-tirep__row:nth-child(odd) { background: #F8FAFC; }
.wd-tirep__row:hover { background: #FEF3C7; }
.wd-tirep__size {
    font-weight: 800; color: #DC2626;
    font-size: 1.15rem;
}
.wd-tirep__cell { display: flex; flex-direction: column; }
.wd-tirep__amt { color: #0F1E3D; font-weight: 700; font-size: 1.05rem; }
.wd-tirep__sec { color: #64748B; font-size: .82rem; margin-top: 2px; }
.wd-tirep__cell--alu .wd-tirep__amt { color: #B45309; }
.wd-tirep__na { color: #CBD5E1; font-size: 1.4rem; font-weight: 300; }

@media (max-width: 640px) {
    .wd-tirep__head, .wd-tirep__row { grid-template-columns: 60px 1fr 1fr; padding: 12px 14px; gap: 8px; }
    .wd-tirep__size { font-size: 1rem; }
    .wd-tirep__amt { font-size: .95rem; }
    .wd-tirep__sec { font-size: .74rem; }
    .wd-tirep__head { font-size: .85rem; }
    .wd-tirep__head small { font-size: .68rem; }
}

/* Pricing extras row */
.wd-pricing__extras {
    max-width: 880px; margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 12px;
}
.wd-extra {
    background: #F8FAFC;
    padding: 18px 20px;
    border-radius: 12px;
    border-left: 4px solid #DC2626;
    display: flex; flex-direction: column; gap: 4px;
}
.wd-extra strong { color: #0F1E3D; font-size: .95rem; }
.wd-extra span { color: #DC2626; font-weight: 800; font-size: 1.05rem; }
.wd-extra small { color: #64748B; font-weight: 400; font-size: .78rem; }
.wd-extra--feat {
    background: linear-gradient(135deg, #FEF3C7 0%, #FDE68A 100%);
    border-left-color: #F59E0B;
}
.wd-extra--feat span { color: #B45309; }

/* SERVICE PRICE COMPARISON TABLE */
.wd-svcprices { padding: 88px 0; background: linear-gradient(180deg, #F8FAFC 0%, #fff 100%); }
.wd-svcprices__table {
    max-width: 880px; margin: 40px auto 24px;
    border-radius: 16px; overflow: hidden;
    box-shadow: 0 16px 40px rgba(15,30,61,.10);
    border: 1px solid rgba(15,30,61,.08);
    background: #fff;
}
.wd-svcprices__head, .wd-svcprices__row {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr;
    align-items: center;
}
.wd-svcprices__head {
    background: linear-gradient(135deg, #0F1E3D, #1E293B);
    color: #fff;
    padding: 18px 20px;
    font-weight: 700;
}
.wd-svcprices__col-us { color: #FBBF24; display: flex; flex-direction: column; align-items: center; }
.wd-svcprices__col-mk { color: rgba(255,255,255,.65); display: flex; flex-direction: column; align-items: center; }
.wd-svcprices__col-mk small { font-weight: 400; font-size: .72rem; color: rgba(255,255,255,.4); }

.wd-svcprices__row {
    padding: 14px 20px;
    border-top: 1px solid rgba(15,30,61,.06);
    transition: background .15s;
}
.wd-svcprices__row:nth-child(odd) { background: #F8FAFC; }
.wd-svcprices__row:hover { background: #FEF3C7; }

.wd-svcprices__svc { color: #0F1E3D; font-weight: 600; font-size: .96rem; }
.wd-svcprices__svc em { color: #94A3B8; font-style: normal; font-size: .82rem; font-weight: 500; }

.wd-svcprices__us {
    text-align: center;
    color: #047857; font-weight: 800;
    background: rgba(16,185,129,.08);
    padding: 8px 12px;
    border-radius: 8px;
    margin: 0 8px;
    display: inline-flex; flex-direction: column; align-items: center;
    justify-self: center;
    min-width: 100px;
}
.wd-svcprices__save {
    display: block;
    color: #DC2626;
    font-size: .72rem;
    font-weight: 700;
    margin-top: 2px;
}
.wd-svcprices__mk {
    text-align: center;
    color: #64748B; font-weight: 600;
    text-decoration: line-through;
    text-decoration-color: rgba(220,38,38,.4);
}

@media (max-width: 640px) {
    .wd-svcprices__head, .wd-svcprices__row { grid-template-columns: 1.4fr .9fr .9fr; padding: 12px 14px; gap: 6px; font-size: .88rem; }
    .wd-svcprices__svc { font-size: .85rem; }
    .wd-svcprices__us { padding: 6px 8px; min-width: 0; font-size: .85rem; margin: 0; }
    .wd-svcprices__col-mk small { display: none; }
}

/* === v0.6.1 — Section nav + Quote form + Subpage styling === */

/* SECTION NAV (sticky pill bar) */
.wd-secnav {
    background: #fff;
    border-bottom: 1px solid rgba(15,30,61,.08);
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 95;
    box-shadow: 0 2px 12px rgba(15,30,61,.04);
}
.wd-secnav__inner {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
}
.wd-secnav__inner a {
    flex-shrink: 0;
    padding: 8px 16px;
    border-radius: 999px;
    background: #F1F5F9;
    color: #0F1E3D !important;
    text-decoration: none !important;
    font-size: .88rem;
    font-weight: 600;
    transition: all .18s;
    border: 1px solid transparent;
    white-space: nowrap;
}
.wd-secnav__inner a:hover {
    background: #FEF3C7;
    border-color: #F59E0B;
    transform: translateY(-1px);
}
.wd-secnav__cta {
    background: linear-gradient(135deg, #DC2626 0%, #B91C1C 100%) !important;
    color: #fff !important;
    box-shadow: 0 4px 12px rgba(220,38,38,.3);
}
.wd-secnav__cta:hover { background: linear-gradient(135deg, #B91C1C 0%, #991B1B 100%) !important; border-color: transparent !important; }

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

/* QUOTE FORM */
.wd-quote {
    padding: 96px 0;
    background:
        radial-gradient(circle at 90% 10%, rgba(245,158,11,.15), transparent 50%),
        linear-gradient(135deg, #0F1E3D 0%, #1E293B 100%);
    color: #fff;
}
.wd-quote__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: start;
}
.wd-quote .wd-section-title { color: #fff; }
.wd-quote .wd-section-title::after { background: linear-gradient(90deg, #FBBF24, #F59E0B); }
.wd-quote .wd-eyebrow { color: #FBBF24; background: rgba(245,158,11,.12); border-color: rgba(245,158,11,.4); }
.wd-quote__intro p { color: rgba(255,255,255,.78); line-height: 1.7; font-size: 1.02rem; }
.wd-quote__benefits { list-style: none; padding: 0; margin: 24px 0; }
.wd-quote__benefits li { display: flex; gap: 12px; align-items: flex-start; padding: 8px 0; color: rgba(255,255,255,.9); }
.wd-quote__check {
    width: 24px; height: 24px; border-radius: 50%;
    background: #10B981; color: #fff;
    display: inline-flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: .82rem;
    flex-shrink: 0;
}
.wd-quote__alt {
    margin-top: 24px;
    padding: 14px 18px;
    background: rgba(255,255,255,.05);
    border-left: 3px solid #FBBF24;
    border-radius: 0 12px 12px 0;
    font-size: .92rem;
    color: rgba(255,255,255,.85);
}
.wd-quote__alt a { color: #FBBF24 !important; text-decoration: none !important; }
.wd-quote__alt strong { color: #FBBF24; }

.wd-quote__form {
    background: #fff;
    color: #0F1E3D;
    padding: 32px;
    border-radius: 18px;
    box-shadow: 0 24px 60px rgba(0,0,0,.3);
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.wd-field { display: flex; flex-direction: column; gap: 6px; }
.wd-field > span {
    font-weight: 600;
    font-size: .9rem;
    color: #0F1E3D;
}
.wd-field > span small { color: #94A3B8; font-weight: 400; font-size: .78rem; }
.wd-field input[type="text"],
.wd-field input[type="tel"],
.wd-field input[type="email"],
.wd-field textarea {
    padding: 12px 14px;
    border: 1.5px solid #E2E8F0;
    border-radius: 10px;
    font-size: .96rem;
    font-family: inherit;
    transition: border-color .18s, box-shadow .18s;
    background: #fff;
    width: 100%;
    box-sizing: border-box;
}
.wd-field input:focus,
.wd-field textarea:focus {
    outline: none;
    border-color: #DC2626;
    box-shadow: 0 0 0 4px rgba(220,38,38,.1);
}
.wd-field textarea { resize: vertical; min-height: 96px; }
.wd-field--check {
    flex-direction: row;
    align-items: flex-start;
    gap: 10px;
    font-size: .85rem;
    color: #475569;
}
.wd-field--check input { margin-top: 2px; flex-shrink: 0; }
.wd-quote__form .wd-btn { width: 100%; justify-content: center; margin-top: 4px; }
.wd-quote__privacy { text-align: center; color: #64748B; font-size: .78rem; margin-top: 4px; }

@media (max-width: 860px) {
    .wd-quote__inner { grid-template-columns: 1fr; gap: 40px; }
    .wd-quote { padding: 64px 0; }
    .wd-quote__form { padding: 24px; }
}

/* ========================================================
   SUBPAGE STYLING — single posts, pages, archives
   ======================================================== */

/* Generic page wrapper styling — applies to /sample-page/, /kontakt/ etc. */
body.page:not(.home) .entry-content-wrap,
body.single:not(.single-wd_service):not(.single-wd_city) .entry-content-wrap,
body.archive .entry-content-wrap {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(15,30,61,.08);
    border: 1px solid rgba(15,30,61,.06);
    padding: 48px !important;
}
body.page:not(.home) .content-area,
body.single:not(.single-wd_service):not(.single-wd_city) .content-area,
body.archive .content-area {
    background: linear-gradient(180deg, #F8FAFC 0%, #fff 100%);
    padding: 48px 0;
}

/* Headings inside subpages */
body.page:not(.home) .entry-title,
body.single .entry-title,
body.archive .archive-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    color: #0F1E3D;
    letter-spacing: -.02em;
    margin: 0 0 16px;
    position: relative;
    padding-bottom: 16px;
}
body.page:not(.home) .entry-title::after,
body.single .entry-title::after,
body.archive .archive-title::after {
    content: "";
    display: block;
    width: 64px; height: 4px;
    background: linear-gradient(90deg, #DC2626 0%, #F59E0B 100%);
    border-radius: 2px;
    margin-top: 12px;
}

body.page h2, body.single h2, body.archive h2 {
    color: #0F1E3D;
    font-weight: 700;
    margin-top: 1.6em;
}
body.page h3, body.single h3, body.archive h3 { color: #1E293B; }
body.page a, body.single .entry-content a {
    color: #DC2626;
    text-decoration: underline;
    text-decoration-color: rgba(220,38,38,.3);
    text-underline-offset: 3px;
    transition: text-decoration-color .15s;
}
body.page a:hover, body.single .entry-content a:hover { text-decoration-color: #DC2626; }

body.page blockquote, body.single blockquote {
    border-left: 4px solid #F59E0B;
    background: #FEF3C7;
    padding: 16px 20px;
    border-radius: 0 12px 12px 0;
    color: #78350F;
    font-style: italic;
    margin: 24px 0;
}

/* Hero strip for subpages — inject via title area */
body.page:not(.home) .entry-hero-container,
body.single:not(.single-wd_service):not(.single-wd_city) .entry-hero-container,
body.archive .entry-hero-container {
    background: linear-gradient(135deg, #0F1E3D 0%, #1E3A8A 50%, #DC2626 100%) !important;
    color: #fff;
    padding: 64px 0 !important;
    position: relative;
    overflow: hidden;
}
body.page:not(.home) .entry-hero-container::before,
body.archive .entry-hero-container::before {
    content: "";
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
}
body.page:not(.home) .entry-hero-container .entry-hero-section-inner,
body.archive .entry-hero-container .entry-hero-section-inner { position: relative; z-index: 2; }
body.page:not(.home) .entry-hero h1,
body.page:not(.home) .entry-hero .entry-title,
body.archive .entry-hero h1 { color: #fff !important; }
body.page:not(.home) .entry-hero h1::after,
body.archive .entry-hero h1::after { background: #FBBF24 !important; }

/* Sidebar widgets (if any) */
body.page #secondary .widget,
body.single #secondary .widget {
    background: #fff;
    padding: 24px;
    border-radius: 14px;
    box-shadow: 0 4px 14px rgba(15,30,61,.06);
    margin-bottom: 20px;
}
body.page #secondary .widget-title,
body.single #secondary .widget-title {
    color: #DC2626;
    font-weight: 700;
    border-bottom: 2px solid #FEF3C7;
    padding-bottom: 8px;
    margin-bottom: 12px;
}

/* Buttons inside subpages */
body.page .wp-block-button__link,
body.single .wp-block-button__link {
    background: linear-gradient(135deg, #DC2626 0%, #B91C1C 100%) !important;
    color: #fff !important;
    border-radius: 12px !important;
    padding: 14px 28px !important;
    font-weight: 700 !important;
    box-shadow: 0 6px 20px rgba(220,38,38,.3);
    transition: transform .18s, box-shadow .18s;
}
body.page .wp-block-button__link:hover,
body.single .wp-block-button__link:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(220,38,38,.45);
}

@media (max-width: 640px) {
    body.page:not(.home) .entry-content-wrap,
    body.single:not(.single-wd_service):not(.single-wd_city) .entry-content-wrap,
    body.archive .entry-content-wrap {
        padding: 24px !important;
        border-radius: 12px;
    }
}

/* === v0.6.2 — Single Service page — rich layout === */
.wd-service-page { background: #fff; }

/* Hero */
.wd-shero {
    position: relative;
    color: #fff;
    padding: 64px 0 80px;
    overflow: hidden;
    background: linear-gradient(135deg, #0F1E3D 0%, #1E3A8A 50%, #0F1E3D 100%);
}
.wd-shero__bg {
    position: absolute; inset: 0;
    background-image:
        radial-gradient(circle at 80% 20%, rgba(245,158,11,.25), transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(220,38,38,.2), transparent 55%),
        linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
    background-size: auto, auto, 56px 56px, 56px 56px;
    mask-image: radial-gradient(ellipse at center, #000 30%, transparent 80%);
    pointer-events: none;
}
.wd-shero__inner { position: relative; z-index: 2; }
.wd-shero__crumbs {
    display: flex; gap: 8px; align-items: center;
    color: rgba(255,255,255,.6); font-size: .88rem;
    margin-bottom: 24px; flex-wrap: wrap;
}
.wd-shero__crumbs a { color: #FBBF24; text-decoration: none; }
.wd-shero__crumbs a:hover { text-decoration: underline; }
.wd-shero__crumbs span:not(:has(a)) { color: rgba(255,255,255,.4); }

.wd-shero__cols {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 32px;
    align-items: center;
}
.wd-shero__icon {
    width: 120px; height: 120px;
    background: linear-gradient(135deg, rgba(245,158,11,.2), rgba(220,38,38,.2));
    border: 2px solid rgba(245,158,11,.4);
    border-radius: 24px;
    display: inline-flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 12px 32px rgba(0,0,0,.3);
}
.wd-shero__icon svg { filter: drop-shadow(0 4px 8px rgba(0,0,0,.3)); }
.wd-shero__txt h1 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    color: #fff !important;
    margin: 8px 0 12px;
    letter-spacing: -.015em;
    line-height: 1.15;
}
.wd-shero__txt .wd-eyebrow { color: #FBBF24; background: rgba(245,158,11,.15); border-color: rgba(245,158,11,.4); }
.wd-shero__lead {
    color: rgba(255,255,255,.85);
    font-size: 1.05rem;
    line-height: 1.6;
    margin: 0 0 16px;
}
.wd-shero__badges {
    display: flex; flex-wrap: wrap; gap: 8px;
    margin: 16px 0;
}
.wd-shero__cta { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 16px; }

.wd-shero__price {
    background: rgba(255,255,255,.08);
    border: 2px solid #FBBF24;
    border-radius: 18px;
    padding: 24px;
    text-align: center;
    min-width: 200px;
    backdrop-filter: blur(8px);
}
.wd-shero__price small {
    display: block;
    color: rgba(255,255,255,.6);
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: .12em;
    margin-bottom: 6px;
}
.wd-shero__price strong {
    display: block;
    color: #FBBF24;
    font-size: 1.25rem;
    font-weight: 800;
    line-height: 1.2;
}
.wd-shero__price span {
    display: block;
    color: rgba(255,255,255,.5);
    font-size: .76rem;
    margin-top: 6px;
}

@media (max-width: 900px) {
    .wd-shero__cols { grid-template-columns: auto 1fr; }
    .wd-shero__price { grid-column: 1 / -1; max-width: 320px; margin: 0 auto; min-width: 0; }
}
@media (max-width: 640px) {
    .wd-shero { padding: 48px 0 56px; }
    .wd-shero__cols { grid-template-columns: 1fr; gap: 20px; text-align: center; }
    .wd-shero__icon { margin: 0 auto; width: 96px; height: 96px; }
    .wd-shero__icon svg { width: 56px; height: 56px; }
    .wd-shero__badges { justify-content: center; }
    .wd-shero__cta { justify-content: center; }
    .wd-shero__cta .wd-btn { width: 100%; justify-content: center; }
}

/* Body grid override */
.wd-service-page .wd-single-body {
    background: linear-gradient(180deg, #F8FAFC 0%, #fff 100%);
    padding: 64px 0;
}
.wd-service-page .wd-single-body .wd-container {
    display: grid;
    grid-template-columns: minmax(0, 1.7fr) minmax(280px, 1fr);
    gap: 48px;
}
.wd-service-page .wd-prose {
    background: #fff;
    border-radius: 18px;
    padding: 40px;
    box-shadow: 0 8px 32px rgba(15,30,61,.06);
}

/* What's included card */
.wd-incl {
    margin-top: 32px;
    background: linear-gradient(135deg, #ECFDF5 0%, #D1FAE5 100%);
    border-radius: 14px;
    padding: 28px;
    border-left: 5px solid #10B981;
}
.wd-incl h3 { color: #065F46; margin: 0 0 16px; font-size: 1.15rem; }
.wd-incl__list { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 8px; }
.wd-incl__list li {
    color: #065F46;
    padding: 6px 0 6px 24px;
    position: relative;
    font-size: .94rem;
}
.wd-incl__list li::before {
    content: "✓";
    position: absolute; left: 0; top: 6px;
    color: #10B981;
    font-weight: 800;
}

/* Process mini timeline */
.wd-process-mini {
    margin-top: 32px;
    background: #FFFBEB;
    border-radius: 14px;
    padding: 28px;
    border-left: 5px solid #F59E0B;
}
.wd-process-mini h3 { color: #78350F; margin: 0 0 20px; font-size: 1.15rem; }
.wd-process-mini__steps { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
.wd-process-mini__steps li { display: flex; gap: 14px; align-items: flex-start; }
.wd-process-mini__steps li > span {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #DC2626, #F59E0B);
    color: #fff;
    display: inline-flex; align-items: center; justify-content: center;
    font-weight: 800;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(220,38,38,.3);
}
.wd-process-mini__steps strong { display: block; color: #0F1E3D; font-weight: 700; margin-bottom: 2px; }
.wd-process-mini__steps small { color: #64748B; font-size: .88rem; line-height: 1.5; }

/* Sidebar enhancements */
.wd-service-page .wd-sidebar { display: flex; flex-direction: column; gap: 16px; position: sticky; top: 100px; align-self: start; }
.wd-service-page .wd-sidebar__card {
    background: #fff;
    border: 1px solid rgba(15,30,61,.08);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 16px rgba(15,30,61,.05);
}
.wd-sidebar__card--accent {
    background: linear-gradient(135deg, #DC2626 0%, #991B1B 100%) !important;
    color: #fff;
    border: 0 !important;
}
.wd-sidebar__card--accent h3 { color: #fff; margin: 0 0 8px; }
.wd-sidebar__card--accent p { color: rgba(255,255,255,.85); margin: 0 0 16px; font-size: .92rem; line-height: 1.55; }
.wd-sidebar__card--accent .wd-btn--primary {
    width: 100%;
    background: #FBBF24 !important;
    color: #7F1D1D !important;
    box-shadow: 0 4px 12px rgba(0,0,0,.2);
    justify-content: center;
}
.wd-sidebar__card--accent .wd-btn--primary:hover { background: #F59E0B !important; }
.wd-sidebar__hours { color: rgba(255,255,255,.7) !important; font-size: .8rem !important; text-align: center; margin-top: 12px !important; }

.wd-sidebar__links { list-style: none; padding: 0; margin: 0; }
.wd-sidebar__links li { padding: 8px 0; border-bottom: 1px solid #F1F5F9; }
.wd-sidebar__links li:last-child { border-bottom: 0; }
.wd-sidebar__links a {
    color: #0F1E3D !important;
    text-decoration: none !important;
    font-weight: 500;
    font-size: .92rem;
    transition: color .15s;
}
.wd-sidebar__links a:hover { color: #DC2626 !important; }

.wd-sidebar__card--map p { color: #475569; line-height: 1.55; }
.wd-sidebar__card--map .wd-btn { width: 100%; justify-content: center; margin-top: 4px; }

@media (max-width: 900px) {
    .wd-service-page .wd-single-body .wd-container { grid-template-columns: 1fr; }
    .wd-service-page .wd-sidebar { position: static; }
    .wd-service-page .wd-prose { padding: 28px; }
}

/* === v0.6.3 — City page + Hours table + Archive === */
.wd-city-page .wd-shero { padding: 56px 0 64px; }
.wd-shero--city .wd-shero__icon {
    background: linear-gradient(135deg, rgba(220,38,38,.25), rgba(245,158,11,.25));
    border-color: rgba(251,191,36,.5);
}
.wd-shero__cols--centered { grid-template-columns: 1fr; text-align: center; max-width: 720px; margin: 0 auto; }
.wd-shero__cols--centered .wd-shero__badges { justify-content: center; }

.wd-city-services {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
    margin-top: 24px;
}
.wd-city-services .wd-service-card__media { aspect-ratio: 4 / 2; }

/* Hours table */
.wd-hours { list-style: none; padding: 0; margin: 0; }
.wd-hours li {
    display: flex; justify-content: space-between;
    padding: 8px 0;
    font-size: .92rem;
    border-bottom: 1px dashed #E2E8F0;
}
.wd-hours li:last-child { border-bottom: 0; }
.wd-hours li span { color: #475569; }
.wd-hours li strong { color: #0F1E3D; font-weight: 600; }
.wd-hours__off span, .wd-hours__off strong { color: #DC2626; }

/* Archive page */
.wd-archive-page .wd-services__grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.wd-shero--archive .wd-shero__cols { grid-template-columns: 1fr; text-align: center; max-width: 760px; margin: 0 auto; }
.wd-shero--archive .wd-shero__badges { justify-content: center; }

/* v0.6.4 — page templates: kontakt, o-nas, cennik */
.wd-shero--page { padding: 56px 0 48px; }
.wd-shero--page .wd-shero__cols--centered { max-width: 760px; margin: 0 auto; text-align: center; }
.wd-shero--page .wd-shero__cols--centered .wd-shero__badges { justify-content: center; }

/* Contact page */
.wd-contact-grid { padding: 64px 0; background: linear-gradient(180deg,#F8FAFC 0%,#fff 100%); }
.wd-contact__cols { display: grid; grid-template-columns: 1.6fr 1fr; gap: 32px; align-items: start; }
.wd-contact-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 32px; }
.wd-contact-card { display: flex; gap: 14px; align-items: flex-start; padding: 22px; border-radius: 16px; background: #fff; border: 1px solid #E5E7EB; text-decoration: none; color: #0F1E3D; transition: all .25s ease; box-shadow: 0 2px 8px rgba(15,30,61,.04); }
.wd-contact-card:hover { transform: translateY(-3px); box-shadow: 0 10px 24px rgba(15,30,61,.10); border-color: #DC2626; }
.wd-contact-card__icon { width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 22px; background: linear-gradient(135deg,#DC2626,#F59E0B); color: #fff; flex-shrink: 0; }
.wd-contact-card strong { display: block; font-size: 13px; color: #64748B; text-transform: uppercase; letter-spacing: .04em; margin-bottom: 4px; }
.wd-contact-card__big { display: block; font-size: 18px; font-weight: 700; color: #0F1E3D; margin-bottom: 4px; }
.wd-contact-card small { color: #64748B; font-size: 13px; }
.wd-contact__form-wrap { background: #fff; border-radius: 20px; padding: 36px; box-shadow: 0 4px 16px rgba(15,30,61,.06); border: 1px solid #E5E7EB; }
.wd-contact__form-wrap h2 { margin: 0 0 8px; font-size: 28px; color: #0F1E3D; }
.wd-contact__form-lead { color: #475569; margin: 0 0 24px; }
.wd-quote-form--page label { display: block; }

/* O nas page */
.wd-onas-stats { padding: 48px 0; background: #fff; }
.wd-onas-story { padding: 72px 0; background: linear-gradient(180deg,#F8FAFC 0%,#fff 100%); }
.wd-onas-story__inner { display: grid; grid-template-columns: 1.6fr 1fr; gap: 40px; align-items: start; }
.wd-onas-story__txt h2 { font-size: 32px; color: #0F1E3D; margin: 8px 0 16px; }
.wd-onas-story__txt h3 { font-size: 20px; color: #0F1E3D; margin: 24px 0 12px; }
.wd-onas-story__txt p { color: #475569; line-height: 1.7; margin: 0 0 16px; }
.wd-onas-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.wd-onas-list li { padding-left: 28px; position: relative; color: #475569; }
.wd-onas-list li::before { content: '✓'; position: absolute; left: 0; top: 0; width: 20px; height: 20px; border-radius: 50%; background: #10B981; color: #fff; font-size: 12px; font-weight: 700; display: flex; align-items: center; justify-content: center; }
.wd-onas-list li strong { color: #0F1E3D; }
.wd-onas-card { position: sticky; top: 100px; padding: 32px; border-radius: 20px; background: linear-gradient(135deg,#0F1E3D 0%,#1E3A8A 100%); color: #fff; text-align: center; box-shadow: 0 10px 30px rgba(15,30,61,.20); }
.wd-onas-card__icon { width: 80px; height: 80px; margin: 0 auto 16px; display: flex; align-items: center; justify-content: center; }
.wd-onas-card h3 { font-size: 22px; margin: 0 0 12px; color: #FBBF24; }
.wd-onas-card p { margin: 0 0 8px; color: rgba(255,255,255,.9); }
.wd-onas-card .wd-btn { margin-top: 16px; }

.wd-onas-values { padding: 72px 0; }
.wd-onas-values__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 32px; }
.wd-onas-value { padding: 28px; border-radius: 16px; background: #fff; border: 1px solid #E5E7EB; transition: all .25s ease; }
.wd-onas-value:hover { transform: translateY(-4px); box-shadow: 0 10px 24px rgba(15,30,61,.08); border-color: #DC2626; }
.wd-onas-value__icon { width: 56px; height: 56px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 26px; background: linear-gradient(135deg,#DC2626,#F59E0B); margin-bottom: 16px; }
.wd-onas-value h3 { font-size: 18px; color: #0F1E3D; margin: 0 0 8px; }
.wd-onas-value p { color: #475569; line-height: 1.6; margin: 0; font-size: 15px; }

.wd-section-title { font-size: 32px; color: #0F1E3D; margin: 8px 0 12px; }
.wd-section-lead { color: #475569; margin: 0 0 32px; max-width: 720px; font-size: 17px; }

/* Cennik page note */
.wd-tirep__note { margin-top: 16px; padding: 14px 18px; background: #FEF3C7; border-left: 4px solid #F59E0B; border-radius: 8px; color: #78350F; font-size: 14px; }

/* Mobile */
@media (max-width: 960px) {
    .wd-contact__cols, .wd-onas-story__inner { grid-template-columns: 1fr; }
    .wd-contact-cards { grid-template-columns: 1fr; }
    .wd-onas-values__grid { grid-template-columns: repeat(2, 1fr); }
    .wd-onas-card { position: static; }
}
@media (max-width: 640px) {
    .wd-onas-values__grid { grid-template-columns: 1fr; }
    .wd-contact__form-wrap { padding: 24px 18px; }
    .wd-section-title { font-size: 26px; }
    .wd-onas-story__txt h2 { font-size: 26px; }
}

/* v0.6.5 — break out of Kadence #inner-wrap.wrap on landing pages so hero & colored sections go edge-to-edge */
#inner-wrap.wrap:has(> .wd-landing),
#inner-wrap.wrap > .wd-landing {
    max-width: none !important;
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
}
body.page #inner-wrap.wrap,
body.archive #inner-wrap.wrap,
body.single #inner-wrap.wrap {
    /* Fallback for browsers without :has() — apply to all template pages */
    max-width: none;
    padding-left: 0;
    padding-right: 0;
}
.wd-landing { width: 100%; }
.wd-landing > section { width: 100%; }

/* Hide Kadence's default page title block if present (we provide our own hero) */
.wd-landing + .entry-header,
body:has(.wd-landing) .entry-header.page-title-style-normal,
body:has(.wd-landing) header.entry-header.page-title { display: none !important; }

/* Pre-launch banner full width */
.wd-prelaunch-banner { width: 100%; box-sizing: border-box; }

/* Tighten Kadence content-area paddings on our pages */
body.wd-has-landing .content-area,
body:has(.wd-landing) .content-area,
body:has(.wd-landing) #primary,
body:has(.wd-landing) .site-container { padding: 0 !important; max-width: none !important; }

/* Force inner-wrap top spacing minimal so hero starts right under header */
body:has(.wd-landing) #inner-wrap { padding-top: 0 !important; padding-bottom: 0 !important; }

/* v0.6.5 — fallback selectors using body.wd-has-landing class */
body.wd-has-landing #inner-wrap.wrap {
    max-width: none !important;
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
}
body.wd-has-landing .entry-header,
body.wd-has-landing .entry-header.page-title-style-normal { display: none !important; }
body.wd-has-landing #primary,
body.wd-has-landing .site-container,
body.wd-has-landing .content-area { max-width: none !important; padding: 0 !important; }
body.wd-has-landing #inner-wrap > * { max-width: none; }

/* v0.6.6 — gallery placeholder section */
.wd-gallery { padding: 80px 0; background: linear-gradient(180deg,#fff 0%,#F8FAFC 100%); }
.wd-gallery .wd-section-title { text-align: center; }
.wd-gallery .wd-section-lead { text-align: center; margin: 0 auto 40px; }
.wd-gallery .wd-eyebrow { display: block; text-align: center; margin-bottom: 8px; }
.wd-gallery__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.wd-gallery__item { margin: 0; border-radius: 18px; overflow: hidden; background: #fff; border: 1px solid #E5E7EB; box-shadow: 0 4px 14px rgba(15,30,61,.06); transition: all .3s ease; }
.wd-gallery__item:hover { transform: translateY(-6px); box-shadow: 0 16px 36px rgba(15,30,61,.14); border-color: #DC2626; }
.wd-gallery__photo { position: relative; aspect-ratio: 4/3; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.wd-gallery__pattern { position: absolute; inset: 0; width: 100%; height: 100%; opacity: .8; }
.wd-gallery__emoji { position: relative; z-index: 2; font-size: 72px; filter: drop-shadow(0 4px 12px rgba(0,0,0,.4)); transition: transform .4s ease; }
.wd-gallery__item:hover .wd-gallery__emoji { transform: scale(1.15) rotate(-5deg); }
.wd-gallery__placeholder-tag { position: absolute; top: 12px; right: 12px; z-index: 3; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; padding: 4px 10px; background: rgba(255,255,255,.18); color: #fff; border: 1px solid rgba(255,255,255,.3); border-radius: 999px; backdrop-filter: blur(8px); }
.wd-gallery__item figcaption { padding: 18px 20px; }
.wd-gallery__item figcaption strong { display: block; font-size: 17px; color: #0F1E3D; margin-bottom: 4px; }
.wd-gallery__item figcaption small { color: #64748B; font-size: 14px; }

@media (max-width: 960px) { .wd-gallery__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .wd-gallery__grid { grid-template-columns: 1fr; gap: 16px; } .wd-gallery__emoji { font-size: 56px; } }

/* v0.6.7 — header & footer brand override (Navy / Red / Amber) + footer redesign */
body.wd-has-landing #main-header.site-header-wrap {
    background: linear-gradient(180deg, rgba(15,30,61,.98) 0%, rgba(15,30,61,.94) 100%) !important;
    border-bottom: 3px solid #DC2626;
    box-shadow: 0 4px 20px rgba(15,30,61,.12);
    backdrop-filter: blur(8px);
}
body.wd-has-landing #main-header .site-branding .site-title a,
body.wd-has-landing #main-header .site-title,
body.wd-has-landing #main-header .site-title a { color: #fff !important; font-weight: 800; letter-spacing: -.01em; }
body.wd-has-landing #main-header .site-description { color: rgba(255,255,255,.65) !important; }
body.wd-has-landing #main-header .menu li a,
body.wd-has-landing #main-header .header-menu-container a { color: rgba(255,255,255,.92) !important; font-weight: 600; transition: color .2s; }
body.wd-has-landing #main-header .menu li a:hover,
body.wd-has-landing #main-header .menu li.current-menu-item > a { color: #FBBF24 !important; }
body.wd-has-landing #main-header .menu li.current-menu-item > a { position: relative; }
body.wd-has-landing #main-header .menu li.current-menu-item > a::after { content: ''; position: absolute; left: 0; right: 0; bottom: -6px; height: 3px; background: #DC2626; border-radius: 2px; }

/* Mobile header */
body.wd-has-landing #mobile-header { background: #0F1E3D !important; border-bottom: 3px solid #DC2626; }
body.wd-has-landing #mobile-header .site-branding .site-title a { color: #fff !important; }
body.wd-has-landing #mobile-header .menu-toggle-icon { color: #fff !important; }
body.wd-has-landing #mobile-header button { color: #fff !important; }

/* Add small phone CTA in header (visual only — link via theme menu) */
body.wd-has-landing #main-header::after { content: ''; }

/* Footer redesign */
body.wd-has-landing #colophon,
body.wd-has-landing .site-footer {
    background: linear-gradient(180deg,#0F1E3D 0%, #0a1428 100%) !important;
    color: rgba(255,255,255,.85);
    border-top: 3px solid #DC2626;
}
body.wd-has-landing #colophon * { color: rgba(255,255,255,.85); }
body.wd-has-landing #colophon a { color: #FBBF24 !important; text-decoration: none; transition: color .2s; }
body.wd-has-landing #colophon a:hover { color: #fff !important; }
body.wd-has-landing #colophon h2,
body.wd-has-landing #colophon h3,
body.wd-has-landing #colophon h4,
body.wd-has-landing #colophon .widget-title { color: #fff !important; font-weight: 700; letter-spacing: -.01em; margin-bottom: 14px; }
body.wd-has-landing #colophon .site-info { border-top: 1px solid rgba(255,255,255,.08); padding-top: 18px; opacity: .7; font-size: 13px; }
body.wd-has-landing #colophon .menu li a { padding: 6px 0; display: inline-block; }

/* Footer top CTA strip — inject via PHP later if needed */

/* Small refinement: prelaunch banner sticky top */
.wd-prelaunch-banner { position: relative; z-index: 100; }

/* Smooth scroll padding to account for sticky header */
html { scroll-padding-top: 100px; }

/* Branded footer strip */
.wd-footer-strip { background: linear-gradient(180deg,#0F1E3D 0%, #0a1428 100%); color: #fff; border-top: 4px solid #DC2626; padding: 56px 0 0; margin-top: 0; }
.wd-footer-strip__inner { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; padding-bottom: 36px; }
.wd-footer-strip__col h4 { color: #FBBF24; font-size: 14px; text-transform: uppercase; letter-spacing: .08em; margin: 0 0 12px; font-weight: 700; }
.wd-footer-strip__col p { margin: 0 0 8px; line-height: 1.6; color: rgba(255,255,255,.85); }
.wd-footer-strip__col a { color: #fff; text-decoration: none; border-bottom: 1px dotted rgba(255,255,255,.3); transition: all .2s; }
.wd-footer-strip__col a:hover { color: #FBBF24; border-color: #FBBF24; }
.wd-footer-strip__logo { font-size: 24px; font-weight: 800; color: #fff; letter-spacing: -.02em; display: block; margin-bottom: 10px; }
.wd-footer-strip__badges { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 14px; }
.wd-footer-strip__badges span { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14); padding: 6px 12px; border-radius: 999px; font-size: 13px; }
.wd-footer-strip__bottom { background: rgba(0,0,0,.3); padding: 16px 0; border-top: 1px solid rgba(255,255,255,.06); }
.wd-footer-strip__bottom small { color: rgba(255,255,255,.5); font-size: 13px; }
.wd-footer-strip__bottom a { color: rgba(255,255,255,.7); }

/* Hide Kadence default footer when ours is shown */
body.wd-has-landing #colophon, body.wd-has-landing .site-footer { display: none !important; }

@media (max-width: 960px) { .wd-footer-strip__inner { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .wd-footer-strip__inner { grid-template-columns: 1fr; gap: 28px; } }

/* v0.6.8 — top utility bar above header */
.wd-topbar { background: linear-gradient(90deg,#0F1E3D 0%,#1E3A8A 100%); color: #fff; font-size: 13px; padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,.06); position: relative; z-index: 90; }
.wd-topbar__inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.wd-topbar__left, .wd-topbar__right { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.wd-topbar__item { color: rgba(255,255,255,.85); display: inline-flex; align-items: center; gap: 6px; }
.wd-topbar__item strong { color: #fff; font-weight: 600; }
.wd-topbar__item--sep { padding-left: 18px; border-left: 1px solid rgba(255,255,255,.15); }
.wd-topbar__link { color: rgba(255,255,255,.85); text-decoration: none; transition: color .2s; }
.wd-topbar__link:hover { color: #FBBF24; }
.wd-topbar__phone { background: linear-gradient(135deg,#DC2626 0%,#F59E0B 100%); color: #fff !important; padding: 6px 14px; border-radius: 999px; font-weight: 700; text-decoration: none; transition: all .2s; box-shadow: 0 2px 8px rgba(220,38,38,.3); }
.wd-topbar__phone:hover { transform: translateY(-1px); box-shadow: 0 4px 14px rgba(220,38,38,.5); }

@media (max-width: 768px) {
    .wd-topbar { padding: 6px 0; font-size: 12px; }
    .wd-topbar__item--sep { display: none; }
    .wd-topbar__left { font-size: 11px; }
    .wd-topbar__link { display: none; }
}
@media (max-width: 480px) {
    .wd-topbar__inner { justify-content: space-between; }
    .wd-topbar__left .wd-topbar__item:first-child { font-size: 11px; }
}

/* v0.6.8 — hero photo placeholder background — subtle workshop scene */
.wd-shero {
    position: relative;
    background: linear-gradient(135deg,#0F1E3D 0%,#1E3A8A 50%,#0F1E3D 100%);
    overflow: hidden;
}
.wd-shero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 15% 20%, rgba(220,38,38,.18) 0%, transparent 35%),
        radial-gradient(circle at 85% 80%, rgba(245,158,11,.15) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(30,58,138,.3) 0%, transparent 60%);
    z-index: 0;
}
.wd-shero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'><defs><pattern id='grid' width='40' height='40' patternUnits='userSpaceOnUse'><path d='M 40 0 L 0 0 0 40' fill='none' stroke='rgba(255,255,255,0.04)' stroke-width='1'/></pattern></defs><rect width='200' height='200' fill='url(%23grid)'/></svg>"),
        url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 600 400'><g opacity='0.06' fill='none' stroke='rgba(255,255,255,0.6)' stroke-width='2'><circle cx='150' cy='200' r='90'/><circle cx='150' cy='200' r='40'/><circle cx='450' cy='200' r='90'/><circle cx='450' cy='200' r='40'/><line x1='240' y1='200' x2='360' y2='200'/><rect x='200' y='160' width='200' height='80' rx='8'/><circle cx='150' cy='200' r='6' fill='rgba(245,158,11,0.4)'/><circle cx='450' cy='200' r='6' fill='rgba(245,158,11,0.4)'/></g></svg>");
    background-size: 80px 80px, cover;
    background-position: center, center;
    background-repeat: repeat, no-repeat;
    z-index: 0;
    opacity: .8;
}
.wd-shero__inner { position: relative; z-index: 2; }
.wd-shero__bg { display: none; } /* replaced by ::before/::after */

/* v0.6.9 — brands strip */
.wd-brands-strip { padding: 80px 0; background: #fff; border-top: 1px solid #E5E7EB; border-bottom: 1px solid #E5E7EB; }
.wd-brands-strip__head { text-align: center; max-width: 720px; margin: 0 auto 40px; }
.wd-brands-strip__head .wd-section-title { margin: 8px 0 12px; }
.wd-brands-strip__head .wd-section-lead { margin: 0 auto; }
.wd-brands-strip__grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.wd-brand { display: flex; align-items: center; gap: 12px; padding: 14px 16px; background: #F8FAFC; border: 1px solid #E5E7EB; border-radius: 14px; transition: all .25s ease; }
.wd-brand:hover { background: #fff; border-color: #DC2626; transform: translateY(-3px); box-shadow: 0 8px 20px rgba(15,30,61,.10); }
.wd-brand__monogram { width: 44px; height: 44px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 22px; color: #fff; flex-shrink: 0; letter-spacing: -.02em; box-shadow: inset 0 -2px 0 rgba(0,0,0,.15); }
.wd-brand__info { display: flex; flex-direction: column; line-height: 1.2; }
.wd-brand__info strong { font-size: 15px; color: #0F1E3D; font-weight: 700; }
.wd-brand__info small { font-size: 12px; color: #64748B; margin-top: 2px; }
.wd-brands-strip__note { text-align: center; margin: 32px auto 0; padding: 16px 24px; background: #FEF3C7; border-left: 4px solid #F59E0B; border-radius: 8px; color: #78350F; font-size: 14px; max-width: 720px; }

@media (max-width: 960px) { .wd-brands-strip__grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px) { .wd-brands-strip__grid { grid-template-columns: repeat(2, 1fr); gap: 10px; } .wd-brand { padding: 10px 12px; } .wd-brand__monogram { width: 36px; height: 36px; font-size: 18px; } }
@media (max-width: 380px) { .wd-brands-strip__grid { grid-template-columns: 1fr; } }

/* v0.7.0 — mobile phone button variant + sticky cluster mobile + topbar mobile pill */
.wd-btn--mobile { background: linear-gradient(135deg,#10B981 0%,#059669 100%) !important; box-shadow: 0 4px 14px rgba(16,185,129,.3) !important; }
.wd-btn--mobile:hover { box-shadow: 0 6px 20px rgba(16,185,129,.5) !important; transform: translateY(-2px); }

.wd-sticky-cluster__btn--mobile { background: linear-gradient(135deg,#10B981 0%,#059669 100%) !important; }
.wd-sticky-cluster__label--mobile { color: #10B981 !important; }

.wd-topbar__phone--mobile { background: linear-gradient(135deg,#10B981 0%,#059669 100%) !important; box-shadow: 0 2px 8px rgba(16,185,129,.3) !important; }
.wd-topbar__phone--mobile:hover { box-shadow: 0 4px 14px rgba(16,185,129,.5) !important; }

.wd-contact-card--mobile .wd-contact-card__icon { background: linear-gradient(135deg,#10B981 0%,#059669 100%) !important; }
.wd-contact-card--mobile:hover { border-color: #10B981 !important; }

/* Adjust sticky cluster to fit 4 buttons on mobile */
@media (max-width: 480px) {
    .wd-sticky-cluster__btn--sms { display: none; } /* Hide SMS on tiny screens to save space */
    .wd-sticky-cluster__label, .wd-sticky-cluster__label--mobile { display: none; }
}

/* v0.7.1 — banner kbd styling */
.wd-prelaunch-banner kbd { background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.3); border-radius: 4px; padding: 1px 6px; font-family: ui-monospace,Menlo,monospace; font-size: 11px; margin: 0 2px; }

/* v0.7.3 — legal footer row, form hint, sent state, button bg fallback */
.wd-footer-strip__legal { display: flex; flex-wrap: wrap; gap: 8px 24px; justify-content: space-between; align-items: center; padding: 12px 0; }
.wd-footer-strip__legal small { color: rgba(255,255,255,.7); font-size: 12px; line-height: 1.6; }
.wd-footer-strip__legal a { color: rgba(255,255,255,.85); text-decoration: underline; }
.wd-footer-strip__legal a:hover { color: #F59E0B; }

/* Form a11y polish */
.wd-quote__form .wd-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.wd-quote__form .wd-field label { font-weight: 600; font-size: 14px; color: #0F1E3D; }
.wd-quote__form .wd-field--check { flex-direction: row; align-items: flex-start; gap: 10px; }
.wd-quote__form .wd-field--check label { font-weight: 400; font-size: 13px; line-height: 1.5; }
.wd-req { color: #DC2626; font-weight: 700; }
.wd-quote__sent { background: linear-gradient(135deg,#10B981 0%,#059669 100%); color: #fff; padding: 28px 32px; border-radius: 16px; text-align: center; font-size: 17px; line-height: 1.55; box-shadow: 0 12px 32px rgba(16,185,129,.35); }
.wd-quote__sent a { color: #fff; text-decoration: underline; }

/* Button bg fix — explicit fallback in case CSS var doesn't propagate */
.wd-btn.wd-btn--primary { background: #DC2626; color: #fff; }
.wd-btn.wd-btn--primary:hover { background: #B91C1C; }
.wd-btn.wd-btn--primary.wd-btn--mobile { background: #10B981; }
.wd-btn.wd-btn--primary.wd-btn--mobile:hover { background: #059669; }

/* Hide gallery placeholder tag artifact (already removed from PHP, kept defensively) */
.wd-gallery__placeholder-tag { display: none !important; }

/* v0.7.4 — sticky cluster base styles (regression: were missing) */
.wd-sticky-cluster {
    position: fixed; right: 18px; bottom: 18px; z-index: 9990;
    display: flex; flex-direction: column; gap: 10px; align-items: flex-end;
    pointer-events: none;
}
.wd-sticky-cluster__btn {
    pointer-events: auto;
    display: inline-flex; align-items: center; gap: 10px;
    padding: 12px 16px; border-radius: 999px; text-decoration: none;
    font-weight: 700; font-size: 14px; line-height: 1; color: #fff;
    box-shadow: 0 8px 24px rgba(15,30,61,.28), 0 2px 6px rgba(15,30,61,.18);
    transition: transform .15s ease, box-shadow .15s ease, background .2s ease;
    position: relative; min-height: 48px;
}
.wd-sticky-cluster__btn:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(15,30,61,.35); }
.wd-sticky-cluster__btn:active { transform: translateY(0); }
.wd-sticky-cluster__btn--wa     { background: linear-gradient(135deg,#25D366 0%,#128C7E 100%); }
.wd-sticky-cluster__btn--sms    { background: linear-gradient(135deg,#0F1E3D 0%,#1E3A8A 100%); }
.wd-sticky-cluster__btn--phone  { background: linear-gradient(135deg,#DC2626 0%,#991B1B 100%); padding-right: 20px; }
.wd-sticky-cluster__btn--mobile { background: linear-gradient(135deg,#10B981 0%,#059669 100%) !important; padding-right: 20px; }
.wd-sticky-cluster__label { color: #fff; font-weight: 800; letter-spacing: .2px; }
.wd-sticky-cluster__label--mobile { color: #fff !important; }
.wd-sticky-cluster__pulse {
    position: absolute; inset: -4px; border-radius: inherit; pointer-events: none;
    box-shadow: 0 0 0 0 rgba(220,38,38,.55);
    animation: wdPulse 2s infinite;
}
@keyframes wdPulse {
    0%   { box-shadow: 0 0 0 0   rgba(220,38,38,.55); }
    70%  { box-shadow: 0 0 0 14px rgba(220,38,38,0);   }
    100% { box-shadow: 0 0 0 0   rgba(220,38,38,0);   }
}
@media (max-width: 640px) {
    .wd-sticky-cluster { right: 10px; bottom: 10px; gap: 8px; }
    .wd-sticky-cluster__btn { padding: 10px 12px; font-size: 13px; min-height: 44px; }
    .wd-sticky-cluster__btn--phone, .wd-sticky-cluster__btn--mobile { padding-right: 14px; }
}
@media (max-width: 380px) {
    .wd-sticky-cluster__btn--sms { display: none; }
    .wd-sticky-cluster__label, .wd-sticky-cluster__label--mobile { display: none; }
    .wd-sticky-cluster__btn { padding: 10px; }
}
/* Topbar polish (was unstyled before too) */
.wd-topbar {
    background: linear-gradient(90deg,#0F1E3D 0%,#1E3A8A 100%);
    color: #fff; font-size: 13px; line-height: 1.4;
    padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,.08);
}
.wd-topbar__inner { display: flex; flex-wrap: wrap; gap: 8px 24px; align-items: center; justify-content: space-between; }
.wd-topbar__left, .wd-topbar__right { display: flex; flex-wrap: wrap; gap: 8px 18px; align-items: center; }
.wd-topbar__item { color: rgba(255,255,255,.85); }
.wd-topbar__item strong { color: #fff; }
.wd-topbar__link, .wd-topbar__phone {
    color: #fff; text-decoration: none; font-weight: 600;
    transition: color .15s ease;
}
.wd-topbar__link:hover { color: #FBBF24; }
.wd-topbar__phone {
    background: rgba(220,38,38,.85); padding: 4px 10px; border-radius: 999px;
    font-weight: 700; letter-spacing: .2px;
}
.wd-topbar__phone:hover { background: #DC2626; color: #fff; }
.wd-topbar__phone--mobile { background: rgba(16,185,129,.85); }
.wd-topbar__phone--mobile:hover { background: #10B981; }
@media (max-width: 640px) {
    .wd-topbar { font-size: 12px; padding: 6px 0; }
    .wd-topbar__item--sep { display: none; }
}

/* v0.7.5 — navigation button (Google Maps directions) */
.wd-sticky-cluster__btn--nav { background: linear-gradient(135deg,#2563EB 0%,#1E40AF 100%); }
.wd-sticky-cluster__btn--nav:hover { background: linear-gradient(135deg,#1D4ED8 0%,#1E3A8A 100%); }

/* Hero/CTA navigate button — visible inline in CTA blocks */
.wd-btn--nav {
    background: linear-gradient(135deg,#2563EB 0%,#1E40AF 100%); color: #fff;
    display: inline-flex; align-items: center; gap: 8px;
}
.wd-btn--nav:hover { background: linear-gradient(135deg,#1D4ED8 0%,#1E3A8A 100%); color: #fff; }
.wd-btn--nav svg { vertical-align: middle; }

/* v0.7.6 — UX audit fixes */
/* Anchor scroll offset under sticky header */
:target, [id^="wd-"][id$="-anchor"], #galeria, #wd-quote, #wd-faq-anchor { scroll-margin-top: 100px; }

/* FAQ keyboard a11y */
.wd-faq__item summary { cursor: pointer; outline: none; }
.wd-faq__item summary:focus-visible { outline: 3px solid #F59E0B; outline-offset: 3px; border-radius: 6px; }

/* Gallery coming-soon note */
.wd-gallery__coming {
    text-align: center; margin: 28px auto 0; max-width: 520px;
    color: #64748B; font-size: 14px; line-height: 1.6;
    padding: 14px 18px; border: 1px dashed #CBD5E1; border-radius: 12px;
    background: rgba(255,255,255,.6);
}

/* Buttons inside hero CTA gain consistent gap on wrap */
.wd-hero__cta { gap: 12px; }
.wd-hero__cta .wd-btn { white-space: nowrap; }
