.landing-page {
    --lp-ink: #171719;
    --lp-muted: #62666f;
    --lp-line: #e6e6eb;
    --lp-navy: var(--accent-color, #192D4F);
    --lp-gold: var(--accent-secondary-color, #EEDC70);
    --lp-soft: #f6f7f4;
    --lp-white: #ffffff;
    --lp-green: #1f7a4d;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
    background: var(--lp-white);
    color: var(--lp-ink);
    font-family: var(--default-font, "DM Sans", Arial, sans-serif);
    line-height: 1.55;
}

.landing-page *,
.landing-page *::before,
.landing-page *::after {
    box-sizing: border-box;
}

.landing-page img {
    max-width: 100%;
}

.landing-page p {
    color: var(--lp-muted);
    line-height: 1.7;
    margin: 0;
}

.landing-page a {
    color: inherit;
}

.landing-page .container {
    width: 100%;
    max-width: 1300px;
}

.lp-header__inner > *,
.lp-hero__content,
.lp-form-panel,
.lp-impact__grid > *,
.lp-section__title,
.lp-about__content,
.lp-final-cta__content {
    min-width: 0;
}

.lp-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid rgba(230, 230, 235, 0.85);
    backdrop-filter: blur(14px);
}

.lp-header__inner {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.lp-header__logo {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
}

.lp-header__logo img {
    width: 184px;
    height: auto;
    display: block;
}

.lp-header__nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    color: #4c5058;
    font-size: 15px;
    font-weight: 600;
}

.lp-header__nav a {
    transition: color 0.2s ease;
}

.lp-header__nav a:hover {
    color: var(--lp-navy);
}

.landing-page .lp-header__cta,
.landing-page .lp-link-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 12px 18px;
    border: 1px solid var(--lp-navy);
    background: var(--lp-navy);
    color: var(--lp-white);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.landing-page .lp-header__cta:hover,
.landing-page .lp-link-button:hover {
    background: var(--lp-gold);
    border-color: var(--lp-gold);
    color: var(--lp-ink);
}

.lp-hero {
    position: relative;
    isolation: isolate;
    padding: 72px 0 80px;
    background:
        linear-gradient(90deg, rgba(18, 23, 31, 0.92) 0%, rgba(25, 45, 79, 0.88) 47%, rgba(25, 45, 79, 0.42) 100%),
        url("/images/slider/slider2.jpg") center center / cover no-repeat;
}

.lp-hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 7px;
    background: linear-gradient(90deg, var(--lp-navy), var(--lp-gold), var(--lp-green));
    z-index: -1;
}

.lp-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(380px, 0.72fr);
    align-items: center;
    gap: 54px;
}

.lp-hero__content {
    max-width: 720px;
    color: var(--lp-white);
}

.lp-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--lp-gold);
    font-size: 14px;
    font-weight: 800;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0;
}

.lp-eyebrow::before {
    content: "";
    width: 8px;
    height: 8px;
    display: inline-block;
    border-radius: 50%;
    background: currentColor;
}

.lp-hero h1 {
    max-width: 710px;
    color: var(--lp-white);
    font-family: var(--accent-font, "Poppins", Arial, sans-serif);
    font-size: 58px;
    font-weight: 700;
    line-height: 1.08;
    margin: 18px 0 22px;
    overflow-wrap: break-word;
}

.lp-hero__content p {
    max-width: 630px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 19px;
}

.lp-hero__checks {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.lp-hero__checks span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 40px;
    padding: 9px 13px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--lp-white);
    font-size: 14px;
    font-weight: 700;
}

.lp-hero__checks i {
    color: var(--lp-gold);
}

.lp-form-panel {
    background: var(--lp-white);
    border: 1px solid rgba(230, 230, 235, 0.9);
    border-radius: 8px;
    box-shadow: 0 22px 55px rgba(0, 0, 0, 0.18);
    padding: 32px;
}

.lp-form-panel--compact {
    box-shadow: 0 22px 55px rgba(0, 0, 0, 0.12);
}

.lp-form-panel__header {
    margin-bottom: 22px;
}

.lp-form-panel__header span {
    display: block;
    color: var(--lp-navy);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0;
    margin-bottom: 8px;
}

.lp-form-panel__header h2 {
    color: var(--lp-ink);
    font-family: var(--accent-font, "Poppins", Arial, sans-serif);
    font-size: 26px;
    font-weight: 700;
    line-height: 1.18;
    margin: 0 0 8px;
}

.lp-form-panel__header p {
    font-size: 15px;
}

.lp-alert {
    padding: 12px 14px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 16px;
}

.lp-alert--success {
    background: rgba(31, 122, 77, 0.1);
    color: var(--lp-green);
}

.lp-alert--error {
    background: rgba(230, 87, 87, 0.1);
    color: var(--error-color, #c93a3a);
}

.lp-form {
    display: grid;
    gap: 14px;
}

.lp-field label {
    display: block;
    color: #3a3d44;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 7px;
}

.lp-field input,
.lp-field select {
    width: 100%;
    height: 50px;
    border: 1px solid var(--lp-line);
    border-radius: 6px;
    background: #fafafa;
    color: var(--lp-ink);
    font-family: inherit;
    font-size: 15px;
    line-height: 1.2;
    padding: 0 14px;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.lp-field input:focus,
.lp-field select:focus {
    border-color: var(--lp-navy);
    background: var(--lp-white);
    box-shadow: 0 0 0 3px rgba(25, 45, 79, 0.12);
}

.lp-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 54px;
    padding: 13px 18px;
    border: 0;
    border-radius: 6px;
    background: linear-gradient(90deg, var(--lp-navy) 0%, #254a81 48%, var(--lp-gold) 100%);
    color: var(--lp-white);
    font-family: var(--accent-font, "Poppins", Arial, sans-serif);
    font-size: 15px;
    font-weight: 800;
    line-height: 1.25;
    text-align: center;
    text-transform: uppercase;
    white-space: normal;
    cursor: pointer;
    transition: transform 0.2s ease, filter 0.2s ease;
}

.lp-button:hover {
    filter: brightness(1.04);
    transform: translateY(-1px);
}

.lp-trust-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 18px;
}

.lp-trust-row span {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-height: 44px;
    border: 1px solid var(--lp-line);
    color: #4d535c;
    font-size: 12px;
    font-weight: 800;
    line-height: 1.25;
    text-align: center;
    padding: 8px;
}

.lp-trust-row i {
    color: var(--lp-green);
}

.lp-impact {
    padding: 42px 0;
    background: var(--lp-ink);
}

.lp-impact__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
    align-items: center;
    gap: 44px;
}

.lp-impact h2 {
    color: var(--lp-white);
    font-size: 34px;
    line-height: 1.18;
    margin: 10px 0 0;
}

.lp-impact p {
    color: rgba(255, 255, 255, 0.78);
    font-size: 17px;
}

.lp-section {
    padding: 88px 0;
}

.lp-section--soft {
    background: var(--lp-soft);
}

.lp-section__title {
    max-width: 760px;
    margin-bottom: 40px;
}

.lp-section__title--split {
    max-width: none;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 28px;
}

.lp-section__title h2,
.lp-about__content h2,
.lp-final-cta__content h2 {
    color: var(--lp-ink);
    font-size: 38px;
    font-weight: 700;
    line-height: 1.18;
    margin: 12px 0 0;
}

.lp-card-grid {
    display: grid;
    gap: 22px;
}

.lp-card-grid--three {
    grid-template-columns: repeat(3, 1fr);
}

.lp-info-card,
.lp-objective,
.lp-result {
    border: 1px solid var(--lp-line);
    border-radius: 8px;
    background: var(--lp-white);
}

.lp-info-card {
    padding: 30px;
}

.lp-info-card__number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    background: var(--lp-navy);
    color: var(--lp-gold);
    font-size: 15px;
    font-weight: 900;
    margin-bottom: 24px;
}

.lp-info-card h3,
.lp-objective h3,
.lp-result h3 {
    color: var(--lp-ink);
    font-size: 21px;
    font-weight: 700;
    line-height: 1.25;
    margin: 0 0 12px;
}

.lp-objective-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.lp-objective {
    padding: 26px;
    min-height: 246px;
}

.lp-objective i,
.lp-result i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: rgba(238, 220, 112, 0.24);
    color: var(--lp-navy);
    font-size: 23px;
    margin-bottom: 20px;
}

.lp-about {
    padding: 92px 0;
    background: var(--lp-white);
}

.lp-about__grid {
    display: grid;
    grid-template-columns: minmax(300px, 0.86fr) minmax(0, 1.14fr);
    align-items: center;
    gap: 58px;
}

.lp-about__image {
    position: relative;
    max-width: 430px;
}

.lp-about__image::before {
    content: "";
    position: absolute;
    inset: 18px -18px -18px 18px;
    border: 2px solid var(--lp-gold);
    z-index: 0;
}

.lp-about__image img {
    position: relative;
    z-index: 1;
    width: 100%;
    aspect-ratio: 0.82 / 1;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 18px 45px rgba(25, 45, 79, 0.16);
}

.lp-about__content p {
    margin-top: 16px;
}

.lp-stat-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 30px;
}

.lp-stat-list div {
    border-top: 3px solid var(--lp-gold);
    background: var(--lp-soft);
    padding: 18px;
}

.lp-stat-list strong {
    display: block;
    color: var(--lp-navy);
    font-size: 32px;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 8px;
}

.lp-stat-list span {
    color: var(--lp-muted);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.35;
}

.lp-results {
    background:
        linear-gradient(180deg, rgba(25, 45, 79, 0.04), rgba(25, 45, 79, 0)),
        var(--lp-white);
}

.lp-result-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.lp-result {
    padding: 28px;
}

.lp-faq-grid {
    display: grid;
    grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1fr);
    gap: 44px;
    align-items: start;
}

.lp-faq .accordion-item {
    border: 1px solid var(--lp-line);
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 12px;
    background: var(--lp-white);
}

.lp-faq .accordion-button {
    min-height: 62px;
    color: var(--lp-ink);
    font-family: var(--accent-font, "Poppins", Arial, sans-serif);
    font-size: 17px;
    font-weight: 700;
    line-height: 1.3;
    padding: 18px 22px;
    background: var(--lp-white);
    box-shadow: none;
}

.lp-faq .accordion-button:not(.collapsed) {
    color: var(--lp-navy);
    background: rgba(238, 220, 112, 0.16);
}

.lp-faq .accordion-body {
    color: var(--lp-muted);
    font-size: 16px;
    line-height: 1.7;
    padding: 0 22px 20px;
}

.lp-final-cta {
    padding: 88px 0;
    background:
        linear-gradient(90deg, rgba(23, 23, 25, 0.92), rgba(25, 45, 79, 0.88)),
        url("/images/slider/slider1.jpg") center center / cover no-repeat;
}

.lp-final-cta__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(380px, 0.65fr);
    align-items: center;
    gap: 58px;
}

.lp-final-cta__content h2,
.lp-final-cta__content p {
    color: var(--lp-white);
}

.lp-final-cta__content p {
    max-width: 560px;
    color: rgba(255, 255, 255, 0.84);
    font-size: 18px;
    margin-top: 18px;
}

.lp-footer {
    background: #101115;
    color: var(--lp-white);
    padding: 54px 0 26px;
}

.lp-footer__grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr 0.9fr;
    gap: 34px;
    align-items: start;
}

.lp-footer img {
    width: 190px;
    background: var(--lp-white);
    padding: 8px;
    margin-bottom: 18px;
}

.lp-footer p,
.lp-footer li,
.lp-footer address,
.lp-footer a,
.lp-footer span {
    color: rgba(255, 255, 255, 0.78);
    font-size: 15px;
    line-height: 1.6;
}

.lp-footer ul {
    list-style: none;
    display: grid;
    gap: 12px;
    padding: 0;
    margin: 0;
}

.lp-footer li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.lp-footer i {
    color: var(--lp-gold);
    margin-top: 4px;
}

.lp-footer address {
    display: grid;
    gap: 12px;
    font-style: normal;
    margin: 0;
}

.lp-footer address a {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.lp-footer__bottom {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    margin-top: 38px;
    padding-top: 22px;
}

.lp-footer__bottom a {
    color: var(--lp-gold);
    font-weight: 800;
}

@media (max-width: 1199px) {
    .lp-hero h1 {
        font-size: 48px;
    }

    .lp-hero__grid,
    .lp-final-cta__grid {
        grid-template-columns: minmax(0, 1fr) minmax(360px, 0.78fr);
        gap: 38px;
    }

    .lp-objective-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 991px) {
    .lp-header__inner {
        min-height: 68px;
    }

    .lp-header__nav {
        display: none;
    }

    .lp-header__logo img {
        width: 168px;
    }

    .lp-hero {
        padding: 58px 0 64px;
        background:
            linear-gradient(180deg, rgba(18, 23, 31, 0.93), rgba(25, 45, 79, 0.86)),
            url("/images/slider/slider2.jpg") center center / cover no-repeat;
    }

    .lp-hero__grid,
    .lp-impact__grid,
    .lp-about__grid,
    .lp-faq-grid,
    .lp-final-cta__grid,
    .lp-footer__grid {
        grid-template-columns: 1fr;
    }

    .lp-hero__content {
        max-width: 760px;
    }

    .lp-card-grid--three,
    .lp-result-grid {
        grid-template-columns: 1fr;
    }

    .lp-section,
    .lp-about,
    .lp-final-cta {
        padding: 68px 0;
    }

    .lp-section__title--split {
        align-items: flex-start;
        flex-direction: column;
    }

    .lp-about__image {
        max-width: 360px;
    }

    .lp-footer__bottom {
        flex-direction: column;
    }
}

@media (max-width: 767px) {
    .lp-header__inner {
        gap: 14px;
    }

    .lp-header__logo img {
        width: 148px;
    }

    .lp-header__cta {
        min-height: 40px;
        padding: 10px 12px;
        font-size: 13px;
    }

    .lp-hero h1 {
        font-size: 36px;
    }

    .lp-hero__content p,
    .lp-impact p,
    .lp-final-cta__content p {
        font-size: 16px;
    }

    .lp-form-panel {
        padding: 24px;
    }

    .lp-form-panel__header h2 {
        font-size: 24px;
    }

    .lp-trust-row,
    .lp-objective-grid,
    .lp-stat-list {
        grid-template-columns: 1fr;
    }

    .lp-impact h2,
    .lp-section__title h2,
    .lp-about__content h2,
    .lp-final-cta__content h2 {
        font-size: 30px;
    }

    .lp-info-card,
    .lp-objective,
    .lp-result {
        padding: 24px;
    }

    .lp-objective {
        min-height: auto;
    }
}

@media (max-width: 575px) {
    .landing-page .container {
        max-width: 100vw;
        overflow: hidden;
    }

    .lp-header__inner,
    .lp-hero__content,
    .lp-form-panel {
        width: min(100%, 360px);
        max-width: min(100%, 360px);
    }

    .lp-hero h1,
    .lp-hero__content p,
    .lp-form-panel__header h2,
    .lp-form-panel__header p,
    .lp-button {
        max-width: 100%;
        overflow-wrap: anywhere;
    }

    .lp-header__inner {
        min-height: auto;
        padding: 12px 0;
    }

    .lp-header__logo img {
        width: 128px;
    }

    .lp-header__cta {
        max-width: 130px;
        line-height: 1.15;
    }

    .lp-hero {
        padding: 42px 0 54px;
    }

    .lp-hero h1 {
        font-size: 32px;
    }

    .lp-hero__checks {
        gap: 9px;
    }

    .lp-hero__checks span {
        width: 100%;
    }

    .lp-form-panel {
        padding: 20px;
    }

    .lp-button {
        font-size: 13px;
        padding-right: 12px;
        padding-left: 12px;
    }

    .lp-section,
    .lp-about,
    .lp-final-cta {
        padding: 54px 0;
    }

    .lp-impact {
        padding: 34px 0;
    }

    .lp-about__image::before {
        inset: 12px -10px -12px 10px;
    }
}
