.home-hero {
    position: relative;
    display: flex;
    align-items: flex-end;
    min-height: calc(100vh + 60px);
    margin-top: -120px;
    overflow: hidden;
    background: #0a1a30;
}

.home-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    animation: homeHeroZoom 2.8s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.home-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.04);
}

.home-hero-scrim {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        linear-gradient(180deg, rgba(6, 14, 27, 0.78) 0%, rgba(6, 14, 27, 0.5) 30%, rgba(6, 14, 27, 0.52) 55%, rgba(6, 14, 27, 0.92) 100%),
        radial-gradient(130% 90% at 12% 100%, rgba(10, 24, 45, 0.72), transparent 62%);
}

.home-hero-inner {
    position: relative;
    z-index: 2;
    width: min(1240px, calc(100% - 48px));
    margin: 0 auto;
    padding: clamp(120px, 18vh, 190px) 0 clamp(56px, 8vh, 104px);
    color: #fff;
}

.home-hero-kicker {
    margin: 0 0 18px;
    color: #e6c47f;
    font-size: clamp(12px, 1.2vw, 14px);
    font-weight: 600;
    letter-spacing: 0.42em;
    text-transform: uppercase;
}

.home-hero h1 {
    margin: 0;
    line-height: 0.98;
    letter-spacing: -0.03em;
    text-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.home-hero h1 .line-strong {
    display: block;
    font-weight: 800;
    font-size: clamp(2.2rem, 4.6vw, 3.8rem);
}

.home-hero h1 .line-accent {
    display: block;
    margin-top: 0.12em;
    font-weight: 300;
    font-style: italic;
    font-size: clamp(1.5rem, 3.2vw, 2.6rem);
    color: #e6c47f;
}

.home-hero-lead {
    max-width: 54ch;
    margin: 26px 0 0;
    color: rgba(255, 255, 255, 0.86);
    font-weight: 400;
    font-size: clamp(0.98rem, 1.35vw, 1.12rem);
    line-height: 1.6;
}

.home-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 18px;
    align-items: center;
    margin-top: 34px;
}

/* pływające karty statystyk */
.home-hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: clamp(30px, 5vh, 52px);
}

.home-hero-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 150px;
    padding: 14px 20px;
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 16px;
    backdrop-filter: blur(14px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16), 0 14px 34px rgba(0, 0, 0, 0.22);
    animation: homeFloat 7s ease-in-out infinite;
}

.home-hero-stat:nth-child(2) { animation-delay: 1.2s; }
.home-hero-stat:nth-child(3) { animation-delay: 2.4s; }

.home-hero-stat span {
    color: rgba(255, 255, 255, 0.62);
    font-family: "Cinzel", Georgia, serif;
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.home-hero-stat strong {
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: -0.01em;
}

.home-hero-stat.is-price strong {
    color: #e6c47f;
}

/* scrollcue — myszka */
.home-hero-scrollcue {
    position: absolute;
    left: 50%;
    bottom: 22px;
    z-index: 2;
    transform: translateX(-50%);
    width: 22px;
    height: 34px;
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    border-radius: 999px;
}

.home-hero-scrollcue::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 7px;
    width: 3px;
    height: 7px;
    border-radius: 2px;
    background: #e6c47f;
    transform: translate(-50%, 0);
    animation: homeBob 1.6s ease-in-out infinite;
}

/* wejście hero */
.home-hero-kicker,
.home-hero h1 .line-strong,
.home-hero h1 .line-accent,
.home-hero-lead,
.home-hero-actions,
.home-hero-stats {
    opacity: 0;
    animation-name: homeIn;
    animation-duration: 1s;
    animation-timing-function: cubic-bezier(0.2, 0.8, 0.2, 1);
    animation-fill-mode: both;
}

.home-hero-kicker { animation-delay: 120ms; }
.home-hero h1 .line-strong { animation-delay: 220ms; }
.home-hero h1 .line-accent { animation-delay: 340ms; }
.home-hero-lead { animation-delay: 480ms; }
.home-hero-actions { animation-delay: 600ms; }
.home-hero-stats { animation-delay: 740ms; }

@keyframes homeIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes homeHeroZoom {
    from { transform: scale(1.1); }
    to { transform: scale(1); }
}

@keyframes homeFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-7px); }
}

@keyframes homeBob {
    0%, 100% { transform: translate(-50%, 0); }
    50% { transform: translate(-50%, 9px); }
}

/* =========================================================================
   TŁO STRONY (pod sekcjami) — kremowy gradient + orby
   ========================================================================= */
.home-flow {
    position: relative;
    overflow: clip;
    background: radial-gradient(120% 90% at 50% -10%, #fbf8f2, #f2ece2 60%, #ece4d6);
}

.home-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(38px);
    pointer-events: none;
    will-change: transform;
}

.home-orb--gold {
    top: 2%;
    right: -6%;
    width: 42vw;
    height: 42vw;
    background: radial-gradient(circle, rgba(185, 138, 58, 0.26), transparent 66%);
    animation: homeOrbA 22s ease-in-out infinite;
}

.home-orb--navy {
    top: 34%;
    left: -12%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, rgba(16, 35, 63, 0.16), transparent 64%);
    animation: homeOrbB 28s ease-in-out infinite;
}

.home-orb--palm {
    bottom: 4%;
    right: 6%;
    width: 38vw;
    height: 38vw;
    background: radial-gradient(circle, rgba(82, 111, 98, 0.16), transparent 66%);
    animation: homeOrbA 25s ease-in-out infinite reverse;
}

@keyframes homeOrbA {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -22px) scale(1.07); }
}

@keyframes homeOrbB {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-38px, 24px) scale(1.05); }
}

/* =========================================================================
   SEKCJE — wspólne
   ========================================================================= */
.home-section {
    position: relative;
    z-index: 1;
    width: min(1240px, calc(100% - 48px));
    margin: 0 auto;
    padding: clamp(44px, 6vw, 84px) 0 0;
}

.home-flow > section:last-of-type {
    padding-bottom: clamp(60px, 8vw, 110px);
}

.home-eyebrow {
    margin: 0 0 12px;
    color: #a9762b;
    font-family: "Cinzel", Georgia, serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.26em;
    text-transform: uppercase;
}

.home-section h2 {
    margin: 0;
    color: #131b2c;
    font-family: "Montserrat", sans-serif;
    font-weight: 800;
    font-size: clamp(1.7rem, 3.2vw, 2.6rem);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.home-section h2 em {
    font-family: "Cinzel", Georgia, serif;
    font-style: italic;
    font-weight: 500;
    color: #a9762b;
}

.home-section-heading-row {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px 28px;
    margin-bottom: clamp(22px, 3vw, 34px);
}

.home-section-heading-row > .home-section-heading {
    max-width: 640px;
}

.home-section-side-note {
    max-width: 40ch;
    margin: 0;
    color: #6d6a62;
    font-size: 0.95rem;
    line-height: 1.6;
}

.home-text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #b98a3a;
    font-family: "Cinzel", Georgia, serif;
    font-weight: 600;
    font-size: 15px;
    white-space: nowrap;
    transition: color 0.25s ease, gap 0.25s ease;
}

.home-text-link:hover {
    color: #10233f;
}

.home-text-link .home-icon {
    width: 16px;
    height: 16px;
    transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.home-text-link:hover .home-icon {
    transform: translate(3px, -3px);
}

.home-icon {
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* =========================================================================
   PODEJŚCIE — statement + 3 wyróżniki
   ========================================================================= */
.home-intro-head {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
    gap: clamp(20px, 3vw, 48px);
    align-items: end;
    margin-bottom: clamp(24px, 3.4vw, 40px);
}

.home-intro-head h2 {
    max-width: 22ch;
    font-size: clamp(1.8rem, 3.6vw, 3rem);
}

.home-intro-lead {
    margin: 0;
    color: #514e46;
    font-size: 1.02rem;
    line-height: 1.7;
}

.home-intro-highlights {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.home-intro-highlights article {
    padding: clamp(20px, 2.2vw, 28px);
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.75);
    border-radius: 20px;
    backdrop-filter: blur(18px) saturate(150%);
    box-shadow: 0 16px 40px rgba(16, 35, 63, 0.08);
    transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1), border-color 0.35s ease, box-shadow 0.35s ease;
}

.home-intro-highlights article:hover {
    transform: translateY(-4px);
    border-color: rgba(185, 138, 58, 0.4);
    box-shadow: 0 24px 54px rgba(16, 35, 63, 0.13);
}

.home-intro-highlights span {
    display: block;
    color: #a9762b;
    font-family: "Cinzel", Georgia, serif;
    font-size: 0.64rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.home-intro-highlights strong {
    display: block;
    margin-top: 8px;
    color: #10233f;
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: -0.01em;
}

.home-intro-highlights p {
    margin: 10px 0 0;
    color: #6d6a62;
    font-size: 0.92rem;
    line-height: 1.6;
}

/* =========================================================================
   WYBRANE OFERTY — karty spójne z oferty.php
   ========================================================================= */
.home-offer-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.home-offer-card {
    min-width: 0;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #ece3cf;
    border-radius: 20px;
    box-shadow: 0 12px 30px rgba(16, 35, 63, 0.07);
    transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.35s ease, border-color 0.35s ease;
}

.home-offer-card:hover {
    transform: translateY(-6px);
    border-color: rgba(185, 138, 58, 0.3);
    box-shadow: 0 26px 56px rgba(16, 35, 63, 0.16);
}

.home-offer-card > a {
    display: flex;
    flex-direction: column;
    height: 100%;
    color: inherit;
    text-decoration: none;
}

.home-offer-media {
    position: relative;
    display: block;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--sand);
}

.home-offer-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.home-offer-card:hover .home-offer-media img {
    transform: scale(1.05);
}

.home-offer-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    display: inline-flex;
    align-items: center;
    max-width: calc(100% - 28px);
    min-height: 30px;
    padding: 0 13px;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
    line-height: 1.2;
    backdrop-filter: blur(6px);
    box-shadow: 0 8px 22px rgba(15, 40, 74, 0.14);
}

.home-offer-badge.is-neutral { color: #fff; background: rgba(16, 35, 63, 0.82); border: 1px solid rgba(185, 138, 58, 0.4); }
.home-offer-badge.is-urgent { color: #fff; background: rgba(143, 38, 31, 0.9); border: 1px solid rgba(255, 255, 255, 0.2); }
.home-offer-badge.is-positive { color: #fff; background: rgba(28, 107, 61, 0.9); border: 1px solid rgba(255, 255, 255, 0.2); }
.home-offer-badge.is-info { color: #241703; background: rgba(230, 196, 127, 0.95); border: 1px solid rgba(255, 255, 255, 0.35); }

.home-offer-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 11px;
    padding: 22px;
}

.home-offer-location {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #6d6a62;
    font-size: 0.82rem;
    font-weight: 600;
}

.home-offer-location .home-icon {
    width: 15px;
    height: 15px;
    color: #b98a3a;
}

.home-offer-body h3 {
    margin: 0;
    color: #131b2c;
    font-weight: 700;
    font-size: clamp(1.15rem, 1.6vw, 1.3rem);
    line-height: 1.2;
}

.home-offer-body > a p,
.home-offer-body p {
    margin: 0;
    color: #6d6a62;
    font-size: 0.92rem;
    line-height: 1.55;
}

.home-offer-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: space-between;
    gap: 8px 14px;
    margin-top: 4px;
    padding-top: 15px;
    border-top: 1px solid #f0e9db;
}

.home-offer-meta strong {
    color: #10233f;
    font-size: 1.35rem;
    font-weight: 800;
    line-height: 1.05;
}

.home-offer-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #8a8578;
    font-size: 0.82rem;
    font-weight: 600;
}

.home-offer-meta span .home-icon {
    width: 15px;
    height: 15px;
    color: #b98a3a;
}

.home-offer-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 6px;
    color: #b98a3a;
    font-weight: 700;
    font-size: 0.92rem;
}

.home-offer-cta .home-icon {
    width: 16px;
    height: 16px;
    transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.home-offer-card:hover .home-offer-cta .home-icon {
    transform: translate(3px, -3px);
}

.home-empty-state {
    padding: clamp(34px, 5vw, 56px);
    text-align: center;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid #ece3cf;
    border-radius: 20px;
    box-shadow: 0 18px 45px rgba(16, 35, 63, 0.08);
}

.home-empty-state h3 {
    margin: 0 0 10px;
    color: #131b2c;
    font-weight: 800;
    font-size: clamp(1.4rem, 2.6vw, 2rem);
}

.home-empty-state p:not(.home-eyebrow) {
    max-width: 52ch;
    margin: 0 auto;
    color: #6d6a62;
    line-height: 1.65;
}

/* =========================================================================
   DLACZEGO DESTINARIO — granatowy pas
   ========================================================================= */
.home-why-panel {
    position: relative;
    overflow: hidden;
    padding: clamp(32px, 4.4vw, 60px) clamp(24px, 3.4vw, 56px);
    color: #fff;
    background: linear-gradient(150deg, #1b3a68, #10233f 58%, #0b1d34);
    border: 1px solid rgba(185, 138, 58, 0.26);
    border-radius: 30px;
    box-shadow: 0 30px 70px rgba(16, 35, 63, 0.24);
}

.home-why-panel::before {
    content: "";
    position: absolute;
    right: -90px;
    top: -110px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(185, 138, 58, 0.28), transparent 66%);
    filter: blur(16px);
    pointer-events: none;
}

.home-why-panel > * {
    position: relative;
    z-index: 1;
}

.home-why-panel .home-eyebrow {
    color: #e0bd77;
}

.home-why-panel h2 {
    color: #fff;
}

.home-why-head {
    max-width: 640px;
    margin: 0 auto clamp(26px, 3.4vw, 42px);
    text-align: center;
}

.home-benefit-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.home-benefit-card {
    padding: clamp(20px, 2.2vw, 28px);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    backdrop-filter: blur(8px);
    transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.home-benefit-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(185, 138, 58, 0.45);
    transform: translateY(-3px);
}

.home-card-icon {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    margin-bottom: 16px;
    color: #e0bd77;
    background: rgba(185, 138, 58, 0.16);
    border: 1px solid rgba(185, 138, 58, 0.28);
    border-radius: 13px;
}

.home-benefit-card h3 {
    margin: 0 0 8px;
    color: #fff;
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.25;
}

.home-benefit-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.88rem;
    line-height: 1.6;
}

/* =========================================================================
   PERSPEKTYWA INWESTYCYJNA — szklany panel + znak wodny
   ========================================================================= */
.home-investment-block {
    position: relative;
}

.home-watermark {
    position: absolute;
    top: -6%;
    left: 50%;
    z-index: 0;
    transform: translateX(-50%);
    white-space: nowrap;
    pointer-events: none;
    font-family: "Cinzel", Georgia, serif;
    font-size: clamp(5rem, 16vw, 14rem);
    font-weight: 700;
    letter-spacing: 0.06em;
    color: rgba(16, 35, 63, 0.04);
}

.home-investment-panel {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: clamp(24px, 3.4vw, 52px);
    align-items: center;
    padding: clamp(28px, 3.6vw, 48px);
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.75);
    border-radius: 26px;
    backdrop-filter: blur(22px) saturate(160%);
    box-shadow: 0 22px 52px rgba(16, 35, 63, 0.1);
}

.home-investment-panel > div:first-child p:not(.home-eyebrow) {
    max-width: 56ch;
    margin: 16px 0 0;
    color: #514e46;
    font-size: 1rem;
    line-height: 1.7;
}

.home-investment-notes {
    display: grid;
    gap: 12px;
}

.home-investment-notes > div {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.65);
    border: 1px solid rgba(185, 138, 58, 0.22);
    border-radius: 16px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.home-investment-notes > div:hover {
    transform: translateX(4px);
    border-color: rgba(185, 138, 58, 0.5);
}

.home-investment-notes strong {
    flex: 0 0 auto;
    color: #a9762b;
    font-family: "Cinzel", Georgia, serif;
    font-size: 1.3rem;
    font-weight: 700;
}

.home-investment-notes span {
    color: #2c2a24;
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.4;
}

/* =========================================================================
   LOKALIZACJE
   ========================================================================= */
.home-location-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.home-location-card {
    position: relative;
    overflow: hidden;
    padding: clamp(20px, 2.2vw, 28px);
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid #ece3cf;
    border-radius: 20px;
    box-shadow: 0 12px 30px rgba(16, 35, 63, 0.06);
    transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1), border-color 0.35s ease, box-shadow 0.35s ease;
}

.home-location-card::after {
    content: "";
    position: absolute;
    right: -36px;
    top: -36px;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(185, 138, 58, 0.14), transparent 66%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.home-location-card:hover {
    transform: translateY(-5px);
    border-color: rgba(185, 138, 58, 0.38);
    box-shadow: 0 24px 52px rgba(16, 35, 63, 0.13);
}

.home-location-card:hover::after {
    opacity: 1;
}

.home-location-card > span {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    margin-bottom: 14px;
    color: #b98a3a;
    background: rgba(185, 138, 58, 0.1);
    border: 1px solid rgba(185, 138, 58, 0.24);
    border-radius: 12px;
}

.home-location-card h3 {
    margin: 0 0 8px;
    color: #131b2c;
    font-size: 1.1rem;
    font-weight: 700;
}

.home-location-card p {
    margin: 0;
    color: #6d6a62;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* =========================================================================
   PROCES — 4 kroki ze złotą linią
   ========================================================================= */
.home-process-head {
    max-width: 620px;
    margin: 0 auto clamp(28px, 3.6vw, 44px);
    text-align: center;
}

.home-process-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.home-process-grid::before {
    content: "";
    position: absolute;
    top: 44px;
    left: 6%;
    right: 6%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(185, 138, 58, 0.45) 16%, rgba(185, 138, 58, 0.45) 84%, transparent);
    pointer-events: none;
}

.home-process-card {
    position: relative;
    padding: clamp(18px, 2vw, 26px);
    text-align: center;
    background: rgba(255, 255, 255, 0.66);
    border: 1px solid rgba(255, 255, 255, 0.78);
    border-radius: 20px;
    backdrop-filter: blur(16px) saturate(150%);
    box-shadow: 0 14px 36px rgba(16, 35, 63, 0.08);
    transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1), border-color 0.35s ease;
}

.home-process-card:hover {
    transform: translateY(-4px);
    border-color: rgba(185, 138, 58, 0.4);
}

.home-process-card > span {
    display: inline-grid;
    place-items: center;
    width: 52px;
    height: 52px;
    margin-bottom: 14px;
    color: #a9762b;
    background: #fff;
    border: 1px solid rgba(185, 138, 58, 0.38);
    border-radius: 50%;
    font-family: "Cinzel", Georgia, serif;
    font-size: 1.05rem;
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(169, 118, 43, 0.16);
}

.home-process-card h3 {
    margin: 0 0 8px;
    color: #131b2c;
    font-size: 1.02rem;
    font-weight: 700;
    line-height: 1.25;
}

.home-process-card p {
    margin: 0;
    color: #6d6a62;
    font-size: 0.88rem;
    line-height: 1.6;
}

/* =========================================================================
   FINAŁOWE CTA — granatowy panel
   ========================================================================= */
.home-final-cta {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 24px 40px;
    padding: clamp(32px, 4.4vw, 56px) clamp(26px, 3.6vw, 60px);
    overflow: hidden;
    color: #fff;
    background: linear-gradient(150deg, #1b3a68, #10233f 58%, #0b1d34);
    border: 1px solid rgba(185, 138, 58, 0.26);
    border-radius: 30px;
    box-shadow: 0 30px 70px rgba(16, 35, 63, 0.24);
}

.home-final-cta::before {
    content: "";
    position: absolute;
    left: -80px;
    bottom: -110px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(185, 138, 58, 0.26), transparent 66%);
    filter: blur(14px);
    pointer-events: none;
}

.home-final-cta > * {
    position: relative;
    z-index: 1;
}

.home-final-cta > div {
    max-width: 640px;
}

.home-final-pill {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    margin-bottom: 16px;
    padding: 0 14px;
    color: #e0bd77;
    background: rgba(185, 138, 58, 0.14);
    border: 1px solid rgba(185, 138, 58, 0.34);
    border-radius: 999px;
    font-family: "Cinzel", Georgia, serif;
    font-size: 0.66rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.home-final-cta .home-eyebrow {
    color: #e0bd77;
}

.home-final-cta h2 {
    color: #fff;
}

.home-final-cta p:not(.home-eyebrow) {
    margin: 14px 0 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.65;
}

/* =========================================================================
   SYSTEM PRZYCISKÓW .dg-btn (spójny z resztą stron)
   ========================================================================= */
.dg-btn {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    cursor: pointer;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    line-height: 1;
    border: 0;
    border-radius: 999px;
    text-align: center;
    text-decoration: none;
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.4s ease;
}

.dg-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background: linear-gradient(115deg, transparent 34%, rgba(255, 255, 255, 0.4) 50%, transparent 66%);
    transform: translateX(-130%);
    transition: transform 0.75s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.dg-btn:hover::before { transform: translateX(130%); }
.dg-btn:hover { transform: translateY(-2px); }
.dg-btn:active { transform: translateY(0); }

.dg-btn:focus-visible {
    outline: 2px solid rgba(185, 138, 58, 0.7);
    outline-offset: 3px;
}

.dg-btn .dg-arrow { transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1); }
.dg-btn:hover .dg-arrow { transform: translate(3px, -3px); }

.dg-btn--navy {
    color: #fff;
    background: linear-gradient(150deg, #1b3a68, #10233f 58%, #0b1d34);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18), 0 6px 18px rgba(16, 35, 63, 0.16);
}

.dg-btn--navy:hover {
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22), 0 10px 26px rgba(16, 35, 63, 0.2), 0 0 24px rgba(185, 138, 58, 0.28);
}

.dg-btn--gold {
    color: #241703;
    background: linear-gradient(150deg, #e6c47f, #c79a45 54%, #ac7a2e);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5), 0 6px 18px rgba(169, 118, 43, 0.22);
}

.dg-btn--gold:hover {
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5), 0 5px 14px rgba(169, 118, 43, 0.16);
}

.dg-btn--glass {
    color: var(--navy);
    background: rgba(255, 255, 255, 0.55);
    border: 1px solid rgba(16, 35, 63, 0.12);
    backdrop-filter: blur(12px);
    box-shadow: 0 6px 18px rgba(16, 35, 63, 0.06);
}

.dg-btn--glass:hover {
    background: rgba(255, 255, 255, 0.72);
    border-color: rgba(185, 138, 58, 0.45);
}

.dg-btn--darkglass {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(10px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.dg-btn--darkglass:hover {
    background: rgba(185, 138, 58, 0.2);
    border-color: rgba(185, 138, 58, 0.55);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22), 0 0 22px rgba(185, 138, 58, 0.3);
}

.dg-btn--lg { min-height: 54px; padding: 15px 30px; font-size: 15px; white-space: nowrap; }
.dg-btn--md { min-height: 46px; padding: 12px 22px; font-size: 14px; }

/* =========================================================================
   REVEAL PRZY SCROLLU (klasy dodaje home-landing.js)
   ========================================================================= */
.home-landing.has-home-animations [data-home-reveal] {
    opacity: 0;
    transform: translateY(42px);
    transition: opacity 0.9s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.9s cubic-bezier(0.2, 0.8, 0.2, 1);
    will-change: opacity, transform;
}

.home-landing.has-home-animations [data-home-reveal].is-visible {
    opacity: 1;
    transform: none;
}

.home-landing.has-home-animations [data-home-reveal] [data-home-stagger] > * {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
    transition-delay: var(--home-stagger-delay, 0ms);
}

.home-landing.has-home-animations [data-home-reveal].is-visible [data-home-stagger] > * {
    opacity: 1;
    transform: none;
}

/* stopka ponad ewentualnymi elementami absolutnymi */
.site-footer {
    position: relative;
    z-index: 3;
}

/* =========================================================================
   RESPONSYWNOŚĆ
   ========================================================================= */
@media (max-width: 1100px) {
    .home-benefit-grid,
    .home-location-grid,
    .home-process-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-process-grid::before {
        display: none;
    }

    .home-offer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 860px) {
    .home-intro-head,
    .home-investment-panel {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .home-intro-highlights {
        grid-template-columns: 1fr;
    }

    .home-hero-scrollcue {
        display: none;
    }
}

@media (max-width: 680px) {
    .home-offer-grid,
    .home-benefit-grid,
    .home-location-grid,
    .home-process-grid {
        grid-template-columns: 1fr;
    }

    .home-hero-actions {
        width: 100%;
    }

    .home-hero-actions .dg-btn {
        flex: 1 1 100%;
        white-space: nowrap;
    }

    .home-hero-actions .dg-btn--lg {
        padding-left: 18px;
        padding-right: 18px;
        font-size: clamp(12.5px, 3.6vw, 15px);
    }

    .home-hero-stats {
        gap: 10px;
    }

    .home-hero-stat {
        flex: 1 1 calc(50% - 10px);
        min-width: 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .home-hero-bg,
    .home-hero-kicker,
    .home-hero h1 .line-strong,
    .home-hero h1 .line-accent,
    .home-hero-lead,
    .home-hero-actions,
    .home-hero-stats,
    .home-hero-stat,
    .home-hero-scrollcue::after,
    .home-orb {
        opacity: 1 !important;
        animation: none !important;
        transition: none !important;
    }

    .home-landing.has-home-animations [data-home-reveal],
    .home-landing.has-home-animations [data-home-reveal] [data-home-stagger] > * {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

/* =========================================================================
   UI UNIFY 2026-08 — porządkowanie strony głównej (bez zmian w PHP)
   ========================================================================= */
/* "Wybrane oferty" — ta sama wielkość co pozostałe etykiety sekcji */
