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

.iklp {
    --ik-navy: #061726;
    --ik-navy-soft: #0b263b;
    --ik-blue: #0964b8;
    --ik-blue-bright: #2f8ee5;
    --ik-text: #091629;
    --ik-muted: #536172;
    --ik-line: #dce3ea;
    --ik-white: #fff;
    --ik-shadow: 0 16px 40px rgba(6, 23, 38, .12);
    width: 100%;
    max-width: none;
    margin: 0;
    overflow: clip;
    background: #fff;
    color: var(--ik-text);
    font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
}

.iklp :where(h1, h2, h3, p, ul, ol, li, figure) {
    margin: 0;
    padding: 0;
}

.iklp :where(h1, h2, h3, strong, a, button) {
    font-family: inherit;
}

.iklp a {
    color: inherit;
    text-decoration: none;
}

.iklp img,
.iklp svg {
    display: block;
}

.iklp svg {
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.iklp button {
    color: inherit;
    font: inherit;
}

.iklp-container {
    width: min(100% - 48px, 1400px);
    margin-inline: auto;
}

.iklp-skip {
    position: fixed;
    z-index: 10000;
    top: 10px;
    left: 10px;
    padding: 10px 16px;
    transform: translateY(-150%);
    border-radius: 4px;
    background: #fff;
    color: var(--ik-navy);
    font-weight: 700;
}

.iklp-skip:focus {
    transform: translateY(0);
}

.iklp-header {
    position: relative;
    z-index: 50;
    min-height: 96px;
    background: var(--ik-navy);
    color: #fff;
}

.iklp-header__inner {
    display: grid;
    grid-template-columns: minmax(250px, 1fr) auto auto;
    align-items: center;
    gap: 30px;
    min-height: 96px;
}

.iklp-brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    width: max-content;
}

.iklp-brand img {
    width: 58px;
    height: 58px;
    object-fit: contain;
}

.iklp-brand__copy {
    display: grid;
    gap: 1px;
}

.iklp-brand__copy strong {
    color: #fff;
    font-size: clamp(20px, 2vw, 29px);
    font-weight: 750;
    letter-spacing: -.035em;
    line-height: 1.05;
}

.iklp-brand__copy strong::first-letter {
    color: var(--ik-blue-bright);
}

.iklp-brand__copy small {
    color: rgba(255, 255, 255, .84);
    font-size: 13px;
    line-height: 1.35;
}

.iklp-nav {
    display: flex;
    align-items: center;
    gap: clamp(18px, 2.1vw, 34px);
}

.iklp-nav a {
    position: relative;
    padding: 36px 0 34px;
    color: rgba(255, 255, 255, .92);
    font-size: 15px;
    font-weight: 600;
    white-space: nowrap;
}

.iklp-nav a::after {
    position: absolute;
    right: 0;
    bottom: 25px;
    left: 0;
    height: 2px;
    transform: scaleX(0);
    background: var(--ik-blue-bright);
    content: "";
    transition: transform .2s ease;
}

.iklp-nav a:hover::after,
.iklp-nav a:focus-visible::after {
    transform: scaleX(1);
}

.iklp-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 54px;
    padding: 14px 22px;
    border: 1px solid var(--ik-blue);
    border-radius: 4px;
    background: var(--ik-blue);
    box-shadow: 0 8px 20px rgba(9, 100, 184, .22);
    color: #fff !important;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: .015em;
    line-height: 1.2;
    text-transform: uppercase;
    transition: transform .2s ease, background-color .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.iklp-button svg {
    width: 19px;
    height: 19px;
}

.iklp-button:hover,
.iklp-button:focus-visible {
    transform: translateY(-2px);
    border-color: #1375ce;
    background: #1375ce;
    box-shadow: 0 12px 25px rgba(9, 100, 184, .3);
}

.iklp-button--header {
    min-width: 198px;
}

.iklp-button--ghost {
    border-color: rgba(255, 255, 255, .75);
    background: rgba(6, 23, 38, .28);
    box-shadow: none;
}

.iklp-button--ghost:hover,
.iklp-button--ghost:focus-visible {
    border-color: #fff;
    background: rgba(6, 23, 38, .68);
}

.iklp-button--outline {
    border-color: var(--ik-blue);
    background: transparent;
    box-shadow: none;
    color: var(--ik-blue) !important;
}

.iklp-button--outline:hover,
.iklp-button--outline:focus-visible {
    color: #fff !important;
}

.iklp-menu-toggle {
    display: none;
    width: 48px;
    height: 48px;
    padding: 10px;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.iklp-menu-toggle span {
    display: block;
    width: 28px;
    height: 2px;
    margin: 6px 0;
    background: #fff;
    transition: transform .2s ease, opacity .2s ease;
}

.iklp-menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.iklp-menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.iklp-menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.iklp-mobile-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    z-index: 60;
    padding: 12px 24px 24px;
    border-top: 1px solid rgba(255, 255, 255, .1);
    background: var(--ik-navy);
    box-shadow: 0 16px 30px rgba(0, 0, 0, .25);
}

.iklp-mobile-nav:not([hidden]) {
    display: grid;
}

.iklp-mobile-nav > a:not(.iklp-button) {
    padding: 13px 4px;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    font-size: 17px;
    font-weight: 650;
}

.iklp-mobile-nav .iklp-button {
    margin-top: 18px;
}

.iklp-hero {
    position: relative;
    min-height: 610px;
    overflow: hidden;
    background: #090f14;
    color: #fff;
}

.iklp-hero__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.iklp-hero__inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    min-height: 610px;
}

.iklp-hero__content {
    width: min(770px, 56%);
}

.iklp-hero h1 {
    display: grid;
    margin-bottom: 22px;
    color: #fff;
    font-size: clamp(48px, 4.45vw, 70px);
    font-weight: 800;
    letter-spacing: -.045em;
    line-height: 1.04;
}

.iklp-hero h1 span {
    display: block;
}

.iklp-hero .iklp-accent {
    color: var(--ik-blue-bright);
}

.iklp-hero__content > p {
    max-width: 630px;
    color: rgba(255, 255, 255, .94);
    font-size: clamp(17px, 1.5vw, 21px);
    line-height: 1.65;
}

.iklp-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

.iklp-benefits {
    background: #fff;
    border-bottom: 1px solid var(--ik-line);
}

.iklp-benefits__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding-block: 34px;
}

.iklp-benefit {
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 18px;
    min-width: 0;
    padding: 8px 30px;
    border-right: 1px solid var(--ik-line);
}

.iklp-benefit:first-child { padding-left: 0; }
.iklp-benefit:last-child { padding-right: 0; border-right: 0; }

.iklp-benefit__icon {
    color: var(--ik-blue);
}

.iklp-benefit__icon svg {
    width: 50px;
    height: 50px;
}

.iklp-benefit h2 {
    margin: 0 0 8px;
    color: var(--ik-text);
    font-size: 17px;
    font-weight: 800;
    line-height: 1.3;
}

.iklp-benefit p {
    color: var(--ik-muted);
    font-size: 14px;
    line-height: 1.55;
}

.iklp-section {
    padding: 70px 0;
    background: #fff;
}

.iklp-section-title {
    margin-bottom: 40px !important;
    color: var(--ik-text);
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 800;
    letter-spacing: -.025em;
    line-height: 1.18;
    text-align: center;
}

.iklp-section-title::first-letter {
    color: inherit;
}

.iklp-process {
    background: #f8fafc;
}

.iklp-process__list {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    list-style: none;
}

.iklp-process__list li {
    position: relative;
    display: grid;
    justify-items: center;
    padding: 0 18px;
    text-align: center;
}

.iklp-process__list li:not(:last-child)::after {
    position: absolute;
    top: 47px;
    left: calc(50% + 56px);
    width: calc(100% - 112px);
    border-top: 2px dashed rgba(9, 100, 184, .6);
    content: "";
}

.iklp-process__number {
    position: absolute;
    top: -7px;
    left: calc(50% - 52px);
    z-index: 2;
    display: grid;
    width: 28px;
    height: 28px;
    place-items: center;
    border-radius: 50%;
    background: var(--ik-blue);
    color: #fff;
    font-size: 13px;
    font-weight: 800;
}

.iklp-process__icon {
    display: grid;
    width: 98px;
    height: 98px;
    margin-bottom: 22px;
    place-items: center;
    border: 1px solid #cdd8e4;
    border-radius: 50%;
    background: #fff;
    color: var(--ik-blue);
}

.iklp-process__icon svg {
    width: 46px;
    height: 46px;
}

.iklp-process h3 {
    margin-bottom: 9px;
    color: var(--ik-text);
    font-size: 17px;
    font-weight: 800;
    line-height: 1.3;
}

.iklp-process p {
    color: var(--ik-muted);
    font-size: 14px;
    line-height: 1.55;
}

.iklp-worlds__grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 14px;
}

.iklp-world {
    position: relative;
    min-height: 350px;
    overflow: hidden;
    border-radius: 5px;
    background: var(--ik-navy);
    box-shadow: 0 8px 25px rgba(6, 23, 38, .12);
    color: #fff;
}

.iklp-world img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .45s ease;
}

.iklp-world__shade {
    position: absolute;
    inset: 35% 0 0;
    background: linear-gradient(to bottom, transparent, rgba(2, 9, 15, .94));
}

.iklp-world__copy {
    position: absolute;
    right: 16px;
    bottom: 18px;
    left: 16px;
    display: grid;
    gap: 4px;
    padding-right: 26px;
}

.iklp-world__copy strong {
    color: #fff;
    font-size: 16px;
    font-weight: 800;
    line-height: 1.25;
}

.iklp-world__copy small {
    color: rgba(255, 255, 255, .82);
    font-size: 12px;
    line-height: 1.35;
}

.iklp-world__arrow {
    position: absolute;
    right: 14px;
    bottom: 17px;
    color: #fff;
}

.iklp-world__arrow svg {
    width: 22px;
    height: 22px;
}

.iklp-world:hover img,
.iklp-world:focus-visible img {
    transform: scale(1.045);
}

.iklp-section-action {
    display: flex;
    justify-content: center;
    margin-top: 32px;
}

.iklp-price {
    padding: 38px 0;
    background: linear-gradient(110deg, var(--ik-navy), #082944);
    color: #fff;
}

.iklp-price__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.iklp-price h2 {
    margin-bottom: 8px;
    color: #fff;
    font-size: clamp(26px, 3vw, 40px);
    font-weight: 800;
    letter-spacing: -.025em;
    line-height: 1.2;
}

.iklp-price p {
    max-width: 900px;
    color: rgba(255, 255, 255, .84);
    font-size: 17px;
}

.iklp-price__icon {
    flex: 0 0 auto;
    color: var(--ik-blue-bright);
}

.iklp-price__icon svg {
    width: 82px;
    height: 82px;
}

.iklp-about {
    display: grid;
    grid-template-columns: minmax(0, 40%) minmax(0, 60%);
    min-height: 610px;
    background: #fff;
}

.iklp-about__media {
    min-height: 610px;
    overflow: hidden;
}

.iklp-about__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.iklp-about__content {
    display: grid;
    grid-template-columns: minmax(0, 1.55fr) minmax(240px, .75fr);
    align-items: center;
    gap: clamp(36px, 4vw, 72px);
    padding: clamp(50px, 4.2vw, 68px);
}

.iklp-label {
    margin-bottom: 12px !important;
    color: var(--ik-blue);
    font-size: 13px;
    font-weight: 850;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.iklp-about h2 {
    margin-bottom: 22px;
    color: var(--ik-text);
    font-size: clamp(30px, 2.15vw, 35px);
    font-weight: 800;
    letter-spacing: -.03em;
    line-height: 1.16;
}

.iklp-about__copy > p:not(.iklp-label) {
    margin-bottom: 15px;
    color: var(--ik-muted);
    font-size: 16px;
}

.iklp-about__copy .iklp-button {
    margin-top: 12px;
}

.iklp-about__points {
    display: grid;
    gap: 20px;
    list-style: none;
}

.iklp-about__points li {
    display: grid;
    grid-template-columns: 30px 1fr;
    gap: 12px;
}

.iklp-about__points li > span {
    display: grid;
    width: 28px;
    height: 28px;
    place-items: center;
    border: 2px solid var(--ik-blue);
    border-radius: 50%;
    color: var(--ik-blue);
}

.iklp-about__points svg {
    width: 17px;
    height: 17px;
    stroke-width: 2.2;
}

.iklp-about__points div {
    display: grid;
    gap: 3px;
}

.iklp-about__points strong {
    color: var(--ik-text);
    font-size: 15px;
    font-weight: 800;
}

.iklp-about__points small {
    color: var(--ik-muted);
    font-size: 13px;
    line-height: 1.4;
}

.iklp-contact {
    padding: 34px 0;
    background: linear-gradient(110deg, #0a4e89, var(--ik-blue), #0b4f88);
    color: #fff;
}

.iklp-contact__grid {
    display: grid;
    grid-template-columns: 1.25fr .85fr 1fr .9fr;
    align-items: center;
}

.iklp-contact__grid > * {
    min-width: 0;
    padding: 4px 28px;
    border-right: 1px solid rgba(255, 255, 255, .25);
}

.iklp-contact__grid > *:first-child { padding-left: 0; }
.iklp-contact__grid > *:last-child { padding-right: 0; border-right: 0; }

.iklp-contact h2 {
    color: #fff;
    font-size: clamp(22px, 2vw, 30px);
    font-weight: 800;
    line-height: 1.25;
}

.iklp-contact p {
    margin-top: 5px;
    color: rgba(255, 255, 255, .8);
    font-size: 14px;
}

.iklp-contact__item,
.iklp-contact__button {
    display: flex;
    align-items: center;
    gap: 14px;
    color: #fff !important;
}

.iklp-contact__item > svg,
.iklp-contact__button > svg {
    flex: 0 0 auto;
    width: 42px;
    height: 42px;
}

.iklp-contact__item span,
.iklp-contact__button span {
    display: grid;
    gap: 2px;
}

.iklp-contact__item strong,
.iklp-contact__button strong {
    color: #fff;
    font-size: 15px;
    font-weight: 800;
}

.iklp-contact__item small,
.iklp-contact__button small {
    color: rgba(255, 255, 255, .8);
    font-size: 12px;
}

.iklp-contact__button {
    min-height: 72px;
    padding: 12px 18px !important;
    border: 1px solid rgba(255, 255, 255, .75) !important;
    border-radius: 5px;
    transition: background-color .2s ease;
}

.iklp-contact__button:hover,
.iklp-contact__button:focus-visible {
    background: rgba(255, 255, 255, .1);
}

.iklp-footer {
    padding: 20px 0;
    background: var(--ik-navy);
    color: rgba(255, 255, 255, .72);
    font-size: 13px;
}

.iklp-footer .iklp-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.iklp-footer nav {
    display: flex;
    gap: 24px;
}

.iklp-footer a:hover,
.iklp-footer a:focus-visible {
    color: #fff;
}

.iklp :focus-visible {
    outline: 3px solid #72b9ff;
    outline-offset: 3px;
}

@media (max-width: 1180px) {
    .iklp-header__inner {
        grid-template-columns: minmax(230px, 1fr) auto;
    }

    .iklp-nav,
    .iklp-button--header {
        display: none;
    }

    .iklp-menu-toggle {
        display: block;
        justify-self: end;
    }

    .iklp-benefits__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0;
    }

    .iklp-benefit {
        padding: 22px 28px;
    }

    .iklp-benefit:first-child { padding-left: 28px; }
    .iklp-benefit:nth-child(2) { border-right: 0; }
    .iklp-benefit:nth-child(-n+2) { border-bottom: 1px solid var(--ik-line); }
    .iklp-benefit:last-child { padding-right: 28px; }

    .iklp-worlds__grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .iklp-about__content {
        grid-template-columns: 1fr;
    }

    .iklp-contact__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px 0;
    }

    .iklp-contact__grid > *:nth-child(2) { border-right: 0; }
    .iklp-contact__grid > *:nth-child(3) { padding-left: 0; }
}

@media (max-width: 860px) {
    .iklp-container {
        width: min(100% - 36px, 720px);
    }

    .iklp-header,
    .iklp-header__inner {
        min-height: 82px;
    }

    .iklp-brand img {
        width: 48px;
        height: 48px;
    }

    .iklp-brand__copy strong {
        font-size: 23px;
    }

    .iklp-brand__copy small {
        font-size: 11px;
    }

    .iklp-hero,
    .iklp-hero__inner {
        min-height: 650px;
    }

    .iklp-hero__image {
        object-position: 64% center;
    }

    .iklp-hero::after {
        position: absolute;
        inset: 0;
        z-index: 1;
        background: linear-gradient(90deg, rgba(4, 13, 21, .94) 0%, rgba(4, 13, 21, .82) 50%, rgba(4, 13, 21, .2) 100%);
        content: "";
    }

    .iklp-hero__content {
        width: min(650px, 88%);
    }

    .iklp-hero h1 {
        font-size: clamp(42px, 8vw, 62px);
    }

    .iklp-process__list {
        grid-template-columns: 1fr;
        gap: 0;
        max-width: 650px;
        margin-inline: auto;
    }

    .iklp-process__list li {
        grid-template-columns: 86px 1fr;
        justify-items: stretch;
        gap: 20px;
        min-height: 130px;
        padding: 0 0 24px 38px;
        text-align: left;
    }

    .iklp-process__list li:not(:last-child)::after {
        top: 54px;
        bottom: -4px;
        left: 52px;
        width: 0;
        border-top: 0;
        border-left: 2px dashed rgba(9, 100, 184, .6);
    }

    .iklp-process__number {
        top: 0;
        left: 0;
    }

    .iklp-process__icon {
        width: 82px;
        height: 82px;
        margin: 0;
    }

    .iklp-process__icon svg {
        width: 38px;
        height: 38px;
    }

    .iklp-process__list li > div {
        padding-top: 8px;
    }

    .iklp-about {
        grid-template-columns: 1fr;
    }

    .iklp-about__media {
        min-height: 470px;
    }

    .iklp-about__content {
        padding: 52px 36px 62px;
    }
}

@media (max-width: 620px) {
    .iklp-container {
        width: min(100% - 28px, 560px);
    }

    .iklp-brand {
        gap: 9px;
    }

    .iklp-brand img {
        width: 42px;
        height: 42px;
    }

    .iklp-brand__copy strong {
        font-size: 20px;
    }

    .iklp-brand__copy small {
        max-width: 190px;
        font-size: 10px;
    }

    .iklp-hero,
    .iklp-hero__inner {
        min-height: 690px;
    }

    .iklp-hero__inner {
        align-items: flex-start;
        padding-top: 56px;
        padding-bottom: 48px;
    }

    .iklp-hero__content {
        width: 100%;
    }

    .iklp-hero h1 {
        font-size: clamp(37px, 11.5vw, 53px);
        line-height: 1.08;
    }

    .iklp-hero__content > p {
        max-width: 95%;
        font-size: 16px;
        line-height: 1.55;
    }

    .iklp-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .iklp-actions .iklp-button {
        width: 100%;
    }

    .iklp-benefits__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        padding-block: 12px;
    }

    .iklp-benefit,
    .iklp-benefit:first-child,
    .iklp-benefit:last-child {
        grid-template-columns: 34px 1fr;
        gap: 9px;
        padding: 20px 10px;
        border-right: 0;
        border-bottom: 0;
    }

    .iklp-benefit:nth-child(odd) {
        border-right: 1px solid var(--ik-line);
    }

    .iklp-benefit:nth-child(-n+2) {
        border-bottom: 1px solid var(--ik-line);
    }

    .iklp-benefit__icon svg {
        width: 32px;
        height: 32px;
    }

    .iklp-benefit h2 {
        margin-bottom: 5px;
        font-size: 14px;
    }

    .iklp-benefit p {
        font-size: 11px;
        line-height: 1.45;
    }

    .iklp-section {
        padding: 56px 0;
    }

    .iklp-section-title {
        margin-bottom: 32px !important;
        font-size: 28px;
    }

    .iklp-process__list li {
        grid-template-columns: 70px 1fr;
        gap: 14px;
        min-height: 122px;
        padding-left: 28px;
    }

    .iklp-process__list li:not(:last-child)::after {
        left: 42px;
    }

    .iklp-process__icon {
        width: 68px;
        height: 68px;
    }

    .iklp-process__icon svg {
        width: 32px;
        height: 32px;
    }

    .iklp-worlds__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .iklp-world {
        min-height: 235px;
    }

    .iklp-world__copy {
        right: 10px;
        bottom: 12px;
        left: 10px;
        padding-right: 18px;
    }

    .iklp-world__copy strong {
        font-size: 14px;
    }

    .iklp-world__copy small {
        font-size: 10px;
    }

    .iklp-world__arrow {
        right: 8px;
        bottom: 10px;
    }

    .iklp-section-action .iklp-button {
        width: 100%;
    }

    .iklp-price {
        padding: 34px 0;
    }

    .iklp-price__inner {
        align-items: flex-start;
    }

    .iklp-price__icon {
        display: none;
    }

    .iklp-price h2 {
        font-size: 27px;
    }

    .iklp-price p {
        font-size: 15px;
    }

    .iklp-about__media {
        height: 390px;
        min-height: 390px;
    }

    .iklp-about__media img {
        object-position: 40% center;
    }

    .iklp-about__content {
        padding: 44px 22px 52px;
    }

    .iklp-about h2 {
        font-size: 34px;
    }

    .iklp-contact__grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .iklp-contact__grid > *,
    .iklp-contact__grid > *:first-child,
    .iklp-contact__grid > *:nth-child(3),
    .iklp-contact__grid > *:last-child {
        padding: 22px 0;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .22);
    }

    .iklp-contact__grid > *:last-child {
        margin-top: 18px;
        padding: 14px 18px !important;
        border: 1px solid rgba(255, 255, 255, .75) !important;
    }

    .iklp-footer .iklp-container {
        flex-direction: column;
        text-align: center;
    }
}

@media (prefers-reduced-motion: reduce) {
    .iklp *,
    .iklp *::before,
    .iklp *::after {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
    }
}
