/* =============================================================
   HERO BLOCK
   ============================================================= */

.lp-hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
    width: 100%;
}

.lp-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    width: 100%;
}

.lp-hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.lp-hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.82) 0%,
        rgba(0, 0, 0, 0.60) 40%,
        rgba(0, 0, 0, 0.15) 75%
    );
}

.lp-hero::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 120px;
    z-index: 3;
    pointer-events: none;
    background: linear-gradient(
        to bottom,
        rgba(246, 243, 237, 0) 0%,
        rgba(246, 243, 237, 0.94) 78%,
        rgba(246, 243, 237, 1.00) 100%
    );
}

.lp-container {
    width: min(100%, 1320px);
    margin: 0 auto;
    padding-left: clamp(20px, 4vw, 48px);
    padding-right: clamp(20px, 4vw, 48px);
    position: relative;
    z-index: 4;
    box-sizing: border-box;
}

.lp-hero__inner {
    position: relative;
    z-index: 4;
    padding-top: 120px;
    padding-bottom: 140px;
    width: 100%;
    display: flex;
    align-items: center;
    box-sizing: border-box;
}

.lp-hero__content {
    position: relative;
    z-index: 4;
    width: 100%;
    max-width: 600px;
    box-sizing: border-box;
}

.lp-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 999px;
    background: rgba(17, 17, 17, 0.35);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: rgba(255, 255, 255, 0.90);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    box-sizing: border-box;
}

.lp-eyebrow__dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #f5b400;
    box-shadow: 0 0 0 5px rgba(245, 180, 0, 0.20);
    flex-shrink: 0;
}

.lp-hero__heading {
    color: #ffffff !important;
    font-size: clamp(3rem, 6vw, 4.75rem) !important;
    font-weight: 900 !important;
    line-height: 1.0 !important;
    letter-spacing: -0.04em !important;
    margin: 0 0 1.25rem !important;
    text-shadow:
        0 4px 20px rgba(0, 0, 0, 0.5),
        0 2px 8px rgba(0, 0, 0, 0.3) !important;
    word-break: break-word;
}

.lp-hero__sub {
    color: rgba(255, 255, 255, 0.95) !important;
    font-size: 1.2rem !important;
    font-weight: 700 !important;
    line-height: 1.4 !important;
    margin: 0 0 0.75rem !important;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4) !important;
}

.lp-hero__body {
    color: rgba(255, 255, 255, 0.88) !important;
    font-size: 1rem !important;
    line-height: 1.65 !important;
    margin: 0 0 2rem !important;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3) !important;
}

.lp-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 2.5rem;
}

.lp-hero__trust {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.lp-trust-pill {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 0 16px;
    gap: 6px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: #ffffff;
    font-size: 0.78rem;
    font-weight: 700;
    border-radius: 999px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-sizing: border-box;
}

/* =============================================================
   SOCIAL PROOF STATS-RAD
   ============================================================= */

.lp-social-proof {
    background: #f6f3ed;
    padding: 48px 0;
}

.lp-social-proof__inner {
    width: min(100%, 1320px);
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 48px);
}

.lp-social-proof__facts {
    display: flex !important;
    flex-direction: row !important;
    align-items: center;
    justify-content: space-between;
    gap: 0;
}

.lp-social-proof__fact {
    flex: 1;
    display: flex !important;
    flex-direction: column !important;
    align-items: center;
    text-align: center;
    padding: 0 24px;
    background: transparent !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    border: none !important;
    border-right: 1px solid rgba(0, 0, 0, 0.12) !important;
}

.lp-social-proof__fact:first-child {
    padding-left: 0;
}

.lp-social-proof__fact:last-child {
    padding-right: 0;
    border-right: none !important;
}

.lp-social-proof__fact::before {
    content: '';
    display: block;
    width: 32px;
    height: 3px;
    background: #f5b400;
    border-radius: 999px;
    margin-bottom: 12px;
}

.lp-social-proof__fact strong {
    display: block;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 900;
    letter-spacing: -0.04em;
    color: #111;
    line-height: 1;
    margin-bottom: 6px;
}

.lp-social-proof__fact:first-child strong {
    color: #f5b400;
}

.lp-social-proof__fact span {
    font-size: 0.85rem;
    color: rgba(0, 0, 0, 0.5);
    font-weight: 500;
    line-height: 1.3;
}

/* =============================================================
   TABLET
   ============================================================= */

@media (max-width: 1024px) {
    .lp-hero__content {
        max-width: 480px;
    }
}

/* =============================================================
   MOBIL
   ============================================================= */

@media (max-width: 768px) {

    .lp-hero {
        min-height: 100svh;
        align-items: center;
        overflow: hidden;
    }

    .lp-hero__bg {
        position: absolute;
        inset: 0;
        overflow: hidden;
        width: 100%;
        max-width: 100%;
    }

    .lp-hero__bg img {
        width: 100%;
        max-width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

    .lp-hero__overlay {
        background: linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.30) 0%,
            rgba(0, 0, 0, 0.70) 50%,
            rgba(0, 0, 0, 0.85) 100%
        );
    }

    .lp-hero::after {
        height: 80px;
    }

    .lp-hero__inner {
        padding-top: 120px;
        padding-bottom: 60px;
        align-items: center;
        justify-content: center;
        text-align: center;
        box-sizing: border-box;
        width: 100%;
    }

    .lp-hero__content {
        max-width: 100%;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        box-sizing: border-box;
    }

    .lp-eyebrow {
        margin-left: auto;
        margin-right: auto;
    }

    .lp-hero__heading {
        font-size: clamp(2.4rem, 9vw, 3.2rem) !important;
        text-align: center;
        width: 100%;
    }

    .lp-hero__sub,
    .lp-hero__body {
        text-align: center;
        width: 100%;
    }

    .lp-hero__actions {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        margin-bottom: 1.5rem;
        box-sizing: border-box;
    }

    .lp-hero__actions .ds-btn {
        width: 100%;
        min-height: 52px;
        font-size: 1rem;
        justify-content: center;
        text-align: center;
        box-sizing: border-box;
    }

    .lp-hero__trust {
        justify-content: center;
        width: 100%;
        gap: 0.4rem;
    }

    .lp-trust-pill {
        font-size: 0.72rem;
        padding: 0 12px;
        min-height: 34px;
    }

    .lp-social-proof__facts {
        display: grid !important;
        grid-template-columns: 1fr 1fr;
        gap: 32px 16px;
    }

    .lp-social-proof__fact {
        padding: 0 !important;
        border-right: none !important;
    }
}

/* =============================================================
   REDUCED MOTION
   ============================================================= */

@media (prefers-reduced-motion: reduce) {
    .lp-hero__bg img {
        animation: none;
        transform: none;
    }
}