@charset "UTF-8";
html {
    scroll-behavior: smooth;
    scroll-padding-top: 84px;
}

body {
    margin: 0;
    font-family: "游ゴシック", YuGothic, "Hiragino Kaku Gothic ProN", メイリオ, Meiryo, Verdana, sans-serif;
    background: #ffffff;
    color: #322d23;
    -webkit-font-smoothing: antialiased;
}

* {
    box-sizing: border-box;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}

::-moz-selection {
    background: #ef9637;
    color: #fff;
}

::selection {
    background: #ef9637;
    color: #fff;
}

a:focus-visible, button:focus-visible, input:focus-visible,
select:focus-visible, textarea:focus-visible, summary:focus-visible {
    outline: 3px solid #003b82;
    outline-offset: 2px;
}

details > summary {
    list-style: none;
    cursor: pointer;
}
details > summary::-webkit-details-marker {
    display: none;
}

input::-moz-placeholder, textarea::-moz-placeholder {
    color: #9c968a;
}

input::placeholder, textarea::placeholder {
    color: #9c968a;
}

@keyframes floaty {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-9px);
    }
}
@keyframes pulseDot {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.25;
    }
}
@keyframes barGrow {
    from {
        width: 0;
    }
}
@keyframes ctaPulse {
    0%, 100% {
        box-shadow: 0 10px 26px rgba(239, 150, 55, 0.36);
    }
    50% {
        box-shadow: 0 12px 34px rgba(239, 150, 55, 0.58);
    }
}
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    *, *::before, *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
    }
}
.lp-page {
    background: #ffffff;
    overflow-x: hidden;
}

.lp-section {
    padding: clamp(60px, 7vw, 100px) clamp(20px, 5vw, 56px);
}
.lp-section--muted {
    background: #f7f7f7;
}
.lp-section--navy {
    position: relative;
    background: linear-gradient(135deg, #020390, #0a1573);
    overflow: hidden;
}

.lp-inner {
    max-width: 1080px;
    margin: 0 auto;
    position: relative;
}
.lp-inner--wide {
    max-width: 1120px;
}
.lp-inner--narrow {
    max-width: 820px;
}
.lp-inner--mid {
    max-width: 1000px;
}
.lp-inner--form {
    max-width: 980px;
}

.lp-head {
    text-align: center;
    margin-bottom: 46px;
}

.lp-eyebrow {
    font-size: 13px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #003b82;
    font-weight: 700;
    margin: 0 0 14px;
}

.lp-h2 {
    font-weight: 700;
    font-size: clamp(25px, 3.4vw, 40px);
    line-height: 1.32;
    color: #322d23;
    margin: 0 0 14px;
}
.lp-h2--white {
    color: #fff;
}

.lp-lead {
    font-size: 16px;
    line-height: 1.85;
    color: #1a1a1a;
    margin: 0 auto;
    max-width: 640px;
}
.lp-lead--white {
    color: #e7eaff;
}

.lp-accent {
    color: #c9741a;
}
.lp-accent--light {
    color: #ffb35c;
}

.lp-strong {
    color: #fff;
    font-weight: 700;
}

.lp-grid {
    display: grid;
    gap: 22px;
}
.lp-grid--2 {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
.lp-grid--3 {
    grid-template-columns: repeat(3, 1fr);
}
.lp-grid--4 {
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}
@media (max-width: 880px) {
    .lp-grid--3, .lp-grid--4 {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 600px) {
    .lp-grid--2 {
        grid-template-columns: 1fr;
    }
}

.lp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    text-decoration: none;
    font-weight: 700;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    font-family: inherit;
}
.lp-btn--primary {
    padding: 16px 30px;
    background: #ef9637;
    color: #fff;
    font-size: 16px;
    box-shadow: 0 8px 20px rgba(239, 150, 55, 0.3);
}
.lp-btn--lg {
    padding: 16px 34px;
    font-size: 16.5px;
    box-shadow: 0 12px 30px rgba(239, 150, 55, 0.45);
}
.lp-btn--ghost {
    padding: 16px 26px;
    background: rgba(255, 255, 255, 0.08);
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    color: #fff;
    font-size: 16px;
}
.lp-btn--pulse {
    animation: ctaPulse 2.6s ease-in-out infinite;
}
@media (hover: hover) and (pointer: fine) {
    .lp-btn:hover {
        filter: brightness(1.04);
    }
}

.lp-cta-center {
    text-align: center;
}

.lp-utilbar {
    background: #020390;
    color: #fff;
}
.lp-utilbar__inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px 16px;
    padding: 8px clamp(16px, 5vw, 56px);
}
.lp-utilbar__status {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 12px;
    color: #e7eaff;
}
.lp-utilbar__dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #ef9637;
    box-shadow: 0 0 7px #ef9637;
}
.lp-utilbar__hours {
    font-size: 12px;
    color: #c8cdf2;
}
.lp-utilbar__agency {
    margin-left: auto;
    font-weight: 700;
    font-size: 12px;
    color: #fff;
}

.v3-nav {
    position: sticky;
    top: 0;
    z-index: 50;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 11px clamp(16px, 5vw, 56px);
    background: rgba(255, 255, 255, 0.94);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid #e6e3dd;
}
.v3-nav__brand {
    display: flex;
    align-items: center;
    gap: 11px;
    text-decoration: none;
}
.v3-nav__logo {
    height: 25px;
    width: auto;
    display: block;
}
.v3-nav__badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 10px;
    border: 1px solid #cdd0ea;
    border-radius: 5px;
    font-size: 11px;
    font-weight: 700;
    color: #020390;
    white-space: nowrap;
}
.v3-nav__badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #ef9637;
}
.v3-nav__menu {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 22px;
}
.v3-nav__link {
    color: #322d23;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}
.v3-nav__cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 16px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 13.5px;
}
.v3-nav__cta--ghost {
    background: #fff;
    border: 1.5px solid #020390;
    color: #020390;
}
.v3-nav__cta--primary {
    padding: 10px 20px;
    background: #ef9637;
    color: #fff;
    box-shadow: 0 6px 16px rgba(239, 150, 55, 0.32);
}
@media (max-width: 880px) {
    .v3-nav {
        gap: 12px;
    }
    .v3-nav__menu {
        gap: 8px;
        flex-wrap: nowrap;
    }
    .v3-nav__link {
        display: none;
    }
}
@media (max-width: 640px) {
    .v3-nav {
        padding: 9px clamp(14px, 4vw, 20px);
    }
    .v3-nav__logo {
        height: 22px;
    }
    .v3-nav__badge {
        display: none;
    }
    .v3-nav__cta--ghost {
        display: none;
    }
    .v3-nav__cta--primary {
        padding: 8px 14px;
        font-size: 13px;
    }
}

.lp-footer {
    background: #03066b;
    padding: clamp(48px, 6vw, 72px) clamp(20px, 5vw, 56px) 40px;
}
.lp-footer__inner {
    max-width: 1120px;
    margin: 0 auto;
}
.lp-footer__top {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}
.lp-footer__brand {
    max-width: 420px;
}
.lp-footer__logo {
    height: 28px;
    width: auto;
    display: block;
    margin-bottom: 16px;
}
.lp-footer__desc {
    font-size: 13.5px;
    line-height: 1.85;
    color: #c8cdf2;
    margin: 0 0 14px;
}
.lp-footer__badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 6px 13px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    color: #fff;
}
.lp-footer__badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #ef9637;
}
.lp-footer__nav {
    display: flex;
    gap: clamp(32px, 5vw, 72px);
}
.lp-footer__col-head {
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #a4aae0;
    margin-bottom: 14px;
    font-weight: 700;
}
.lp-footer__links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.lp-footer__link {
    font-size: 13.5px;
    color: #e7eaff;
    text-decoration: none;
}
.lp-footer__bottom {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
}
.lp-footer__note {
    font-size: 12.5px;
    color: #a4aae0;
}

.lp-sticky {
    position: fixed;
    left: 50%;
    bottom: 18px;
    transform: translateX(-50%);
    z-index: 60;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 999px;
    background: #ef9637;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    box-shadow: 0 12px 30px rgba(239, 150, 55, 0.5);
    white-space: nowrap;
}

.lp-hero {
    position: relative;
    overflow: hidden;
    padding: clamp(52px, 7vw, 92px) clamp(20px, 5vw, 56px) clamp(56px, 7vw, 88px);
    background: linear-gradient(160deg, #020390 0%, #0a1573 55%, #03066b 100%);
}
.lp-hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background-image: linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
    background-size: 54px 54px;
    -webkit-mask-image: radial-gradient(80% 70% at 72% 8%, #000, transparent 76%);
    mask-image: radial-gradient(80% 70% at 72% 8%, #000, transparent 76%);
}
.lp-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url(../img/img_kv.jpg);
    background-image: -webkit-image-set(url(../img/img_kv.webp) type("image/webp"), url(../img/img_kv.jpg) type("image/jpeg"));
    background-image: image-set(url(../img/img_kv.webp) type("image/webp"), url(../img/img_kv.jpg) type("image/jpeg"));
}
.lp-hero__scrim {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background: linear-gradient(104deg, rgba(2, 3, 30, 0.6) 0%, rgba(2, 3, 30, 0.34) 30%, rgba(2, 3, 30, 0.08) 56%, rgba(2, 3, 30, 0) 72%);
}
.lp-hero__grid {
    position: relative;
    z-index: 3;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.04fr 0.96fr;
    gap: clamp(32px, 5vw, 72px);
    align-items: center;
}
@media (max-width: 880px) {
    .lp-hero__grid {
        grid-template-columns: 1fr;
    }
}
.lp-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 7px 15px;
    border-radius: 6px;
    background: rgba(239, 150, 55, 0.16);
    border: 1px solid rgba(239, 150, 55, 0.5);
    margin-bottom: 22px;
}
.lp-hero__badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #ef9637;
}
.lp-hero__badge-text {
    font-size: 13px;
    font-weight: 700;
    color: #ffd9ad;
}
.lp-hero__title {
    font-weight: 700;
    font-size: clamp(30px, 4.2vw, 52px);
    line-height: 1.26;
    letter-spacing: -0.01em;
    color: #fff;
    margin: 0 0 22px;
    text-wrap: balance;
}
.lp-hero__title-accent {
    color: #ffb35c;
}
.lp-hero__lead {
    font-size: clamp(15px, 1.2vw, 18px);
    line-height: 1.85;
    color: #e7eaff;
    margin: 0 0 26px;
    max-width: 560px;
}
.lp-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
    align-items: center;
}
.lp-hero__notes {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin: 24px 0 0;
}
.lp-hero__visual {
    position: relative;
}

.lp-note {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    color: #c8cdf2;
}

.lp-mock {
    position: relative;
    z-index: 1;
    border-radius: 20px;
    background: #fff;
    border: 1px solid #e6e3dd;
    box-shadow: 0 30px 70px rgba(2, 3, 144, 0.4);
    overflow: hidden;
}
.lp-mock__bar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 13px 16px;
    border-bottom: 1px solid #eeece6;
    background: #f7f7f7;
}
.lp-mock__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #d9d6cf;
}
.lp-mock__dot--active {
    background: #ef9637;
}
.lp-mock__bar-title {
    margin-left: 10px;
    font-size: 12px;
    color: #6c6354;
    font-weight: 700;
}
.lp-mock__body {
    padding: 18px;
}
.lp-mock__search {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 14px;
    border-radius: 8px;
    background: #f7f7f7;
    border: 1px solid #eeece6;
    margin-bottom: 14px;
    font-size: 13px;
    color: #322d23;
}
.lp-mock__live {
    margin-left: auto;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    color: #ef9637;
    font-weight: 700;
}
.lp-mock__live-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #ef9637;
    animation: pulseDot 1.3s infinite;
}
.lp-mock__label {
    font-size: 11px;
    letter-spacing: 0.06em;
    color: #6c6354;
    text-transform: uppercase;
    margin: 0 0 9px;
    font-weight: 700;
}
.lp-mock__scores {
    display: flex;
    gap: 10px;
    margin-bottom: 16px;
}
.lp-mock__score {
    flex: 1;
    padding: 12px;
    border-radius: 8px;
    background: #eef0fb;
    border: 1px solid #dcdff4;
}
.lp-mock__score--accent {
    background: #fdeede;
    border-color: #f6d6ad;
}
.lp-mock__score-num {
    font-weight: 700;
    font-size: 24px;
    color: #020390;
}
.lp-mock__score--accent .lp-mock__score-num {
    color: #ef9637;
}
.lp-mock__score-cap {
    font-size: 11px;
    color: #1a1a1a;
}
.lp-mock__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.lp-chip {
    padding: 5px 11px;
    border-radius: 999px;
    background: #f7f7f7;
    border: 1px solid #e6e3dd;
    font-size: 12px;
    color: #322d23;
}
.lp-chip--accent {
    background: #fdeede;
    border-color: #f6d6ad;
    color: #c9741a;
    font-weight: 700;
}

.lp-float {
    position: absolute;
    z-index: 2;
    padding: 8px 14px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 12px;
}
.lp-float--done {
    top: -14px;
    right: 18px;
    background: #fff;
    color: #322d23;
    box-shadow: 0 12px 28px rgba(2, 3, 144, 0.22);
    animation: floaty 4s ease-in-out infinite;
}
.lp-float--price {
    bottom: 24px;
    left: -18px;
    background: #ef9637;
    color: #fff;
    box-shadow: 0 12px 28px rgba(239, 150, 55, 0.4);
    animation: floaty 5s ease-in-out infinite;
}
.lp-float__dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #1f9d55;
}

.lp-card {
    background: #fff;
    border: 1px solid #e6e3dd;
    border-radius: 16px;
    padding: 30px;
}
.lp-card__icon {
    width: 46px;
    height: 46px;
    border-radius: 10px;
    background: #eef0fb;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}
.lp-card__icon--orange {
    background: #fdeede;
}
.lp-card__title {
    font-weight: 700;
    font-size: 19px;
    color: #322d23;
    margin: 0 0 10px;
}
.lp-card__text {
    font-size: 14.5px;
    line-height: 1.85;
    color: #1a1a1a;
    margin: 0;
}

.lp-bridge {
    text-align: center;
    font-size: clamp(16px, 2vw, 20px);
    font-weight: 700;
    color: #020390;
    margin: clamp(24px, 3vw, 32px) 0 0;
}

.lp-accent-orange {
    color: #ef9637;
}

.lp-step {
    background: #f7f7f7;
    border: 1px solid #e6e3dd;
    border-radius: 16px;
    padding: 26px;
}
.lp-step__num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #020390;
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 14px;
}
.lp-step__num--accent {
    background: #ef9637;
}
.lp-step__title {
    font-weight: 700;
    font-size: 16px;
    color: #322d23;
    margin: 0 0 8px;
}
.lp-step__text {
    font-size: 13.5px;
    line-height: 1.8;
    color: #1a1a1a;
    margin: 0;
}

.lp-cost__overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
    background-size: 46px 46px;
    -webkit-mask-image: radial-gradient(90% 80% at 50% 0%, #000, transparent 78%);
    mask-image: radial-gradient(90% 80% at 50% 0%, #000, transparent 78%);
}
.lp-cost__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-bottom: 30px;
}
@media (max-width: 760px) {
    .lp-cost__grid {
        grid-template-columns: 1fr;
    }
}
.lp-cost__card {
    border-radius: 16px;
    padding: 28px;
}
.lp-cost__card--before {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.16);
}
.lp-cost__card--after {
    background: #fff;
    box-shadow: 0 20px 50px rgba(2, 3, 144, 0.35);
}
.lp-cost__tag {
    display: inline-block;
    padding: 5px 13px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 16px;
}
.lp-cost__card--before .lp-cost__tag {
    background: rgba(255, 255, 255, 0.1);
    color: #c8cdf2;
}
.lp-cost__card--after .lp-cost__tag {
    background: #fdeede;
    color: #c9741a;
}
.lp-cost__rows {
    display: flex;
    flex-direction: column;
    gap: 11px;
}
.lp-cost__row {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    font-size: 14px;
}
.lp-cost__card--before .lp-cost__row {
    color: #e7eaff;
}
.lp-cost__card--after .lp-cost__row {
    color: #322d23;
}
.lp-cost__card--before .lp-cost__row-val {
    color: #c8cdf2;
}
.lp-cost__card--after .lp-cost__row-val {
    color: #020390;
    font-weight: 700;
}
.lp-cost__total {
    margin-top: 18px;
    padding-top: 16px;
    font-weight: 700;
    font-size: 16px;
}
.lp-cost__card--before .lp-cost__total {
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    color: #ffb3a0;
}
.lp-cost__card--after .lp-cost__total {
    border-top: 1px solid #e6e3dd;
    color: #ef9637;
}
.lp-cost__killer {
    text-align: center;
    font-size: clamp(16px, 2.1vw, 21px);
    font-weight: 700;
    color: #fff;
    line-height: 1.7;
    margin: 0 0 30px;
}

.lp-trust__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
@media (max-width: 600px) {
    .lp-trust__grid {
        grid-template-columns: 1fr;
    }
}
.lp-trust__item {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    background: #f7f7f7;
    border: 1px solid #e6e3dd;
    border-radius: 14px;
    padding: 22px;
}
.lp-trust__check {
    flex-shrink: 0;
    margin-top: 1px;
}
.lp-trust__text {
    font-size: 15px;
    font-weight: 700;
    color: #322d23;
    line-height: 1.6;
}

.lp-faq__list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.lp-faq__item {
    background: #fff;
    border: 1px solid #e6e3dd;
    border-radius: 12px;
    padding: 20px 24px;
}
.lp-faq__q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    font-weight: 700;
    font-size: 16px;
    color: #322d23;
}
.lp-faq__mark {
    color: #ef9637;
    font-size: 22px;
    line-height: 1;
}
.lp-faq__a {
    font-size: 14.5px;
    line-height: 1.85;
    color: #1a1a1a;
    margin: 14px 0 0;
}

.lp-contact__head {
    text-align: center;
    margin-bottom: 40px;
}
.lp-contact__title {
    font-weight: 700;
    font-size: clamp(25px, 3.4vw, 42px);
    line-height: 1.3;
    color: #322d23;
    margin: 0 0 16px;
}
.lp-contact__lead {
    font-size: 16px;
    line-height: 1.85;
    color: #1a1a1a;
    margin: 0 auto;
    max-width: 620px;
}
.lp-contact__assure {
    font-size: 13.5px;
    color: #6c6354;
    margin: 14px 0 0;
}

.lp-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 16px;
    border-radius: 6px;
    background: #fdeede;
    border: 1px solid #f6d6ad;
    margin-bottom: 18px;
}
.lp-pill__dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #ef9637;
}
.lp-pill__text {
    font-weight: 700;
    font-size: 13px;
    color: #c9741a;
}

.lp-thanks {
    background: #f7f7f7;
    border: 1px solid #e6e3dd;
    border-radius: 20px;
    padding: clamp(40px, 6vw, 64px);
    text-align: center;
}
.lp-thanks__icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #ef9637;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
}
.lp-thanks__title {
    font-weight: 700;
    font-size: 26px;
    color: #322d23;
    margin: 0 0 12px;
}
.lp-thanks__text {
    font-size: 15.5px;
    line-height: 1.85;
    color: #1a1a1a;
    margin: 0;
}

.c-form {
    background: #f7f7f7;
    border: 1px solid #e6e3dd;
    border-radius: 20px;
    padding: clamp(28px, 4vw, 48px);
}
.c-form__tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
    padding: 6px;
    border-radius: 12px;
    background: #fff;
    border: 1px solid #e6e3dd;
}
.c-form__tab {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: 8px;
    background: transparent;
    color: #6c6354;
    font-family: inherit;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.15s ease, color 0.15s ease;
}
.c-form__tab.is-active {
    background: #ef9637;
    color: #fff;
}
.c-form__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}
@media (max-width: 600px) {
    .c-form__grid {
        grid-template-columns: 1fr;
    }
}
.c-form__field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.c-form__field--mt {
    margin-top: 18px;
}
.c-form__label {
    font-weight: 700;
    font-size: 13.5px;
    color: #322d23;
}
.c-form__req {
    color: #d6492b;
}
.c-form__input, .c-form__select, .c-form__textarea {
    width: 100%;
    padding: 13px 15px;
    border-radius: 8px;
    background: #fff;
    border: 1px solid #d9d6cf;
    color: #322d23;
    font-size: 15px;
    font-family: inherit;
    line-height: 1.6;
    outline: none;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.c-form__input:focus, .c-form__select:focus, .c-form__textarea:focus {
    border-color: #020390;
    box-shadow: 0 0 0 3px rgba(2, 3, 144, 0.12);
}
.c-form__textarea {
    resize: vertical;
    min-height: 96px;
}
.c-form__select {
    cursor: pointer;
}
.c-form__submit {
    margin-top: 24px;
    width: 100%;
    padding: 17px;
    border: none;
    border-radius: 10px;
    font-family: inherit;
    font-weight: 700;
    font-size: 16.5px;
    color: #fff;
    background: #ef9637;
    cursor: pointer;
    box-shadow: 0 12px 28px rgba(239, 150, 55, 0.4);
    transition: filter 0.15s ease, box-shadow 0.15s ease;
}
@media (hover: hover) and (pointer: fine) {
    .c-form__submit:hover {
        filter: brightness(1.04);
    }
}
.c-form__submit:disabled, .c-form__submit.is-disabled {
    background: #ef9637;
    color: #fff;
    cursor: pointer;
    box-shadow: 0 12px 28px rgba(239, 150, 55, 0.4);
    filter: none;
}
.c-form__note {
    text-align: center;
    font-size: 12.5px;
    color: #6c6354;
    margin: 16px 0 0;
}
.c-form .wpcf7-form-control-wrap {
    display: block;
    width: 100%;
}
.c-form .wpcf7-acceptance {
    display: block;
    margin-top: 20px;
}
.c-form .wpcf7-acceptance .wpcf7-list-item {
    margin: 0;
    display: block;
}
.c-form .wpcf7-acceptance label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
}
.c-form .wpcf7-acceptance input[type=checkbox] {
    -webkit-appearance: checkbox;
    -moz-appearance: auto;
         appearance: auto;
    display: inline-block;
    flex: 0 0 auto;
    width: 18px;
    height: 18px;
    margin: 2px 0 0;
    accent-color: #ef9637;
}
.c-form .wpcf7-acceptance .wpcf7-list-item-label {
    font-size: 13.5px;
    line-height: 1.7;
    color: #1a1a1a;
}
.c-form .wpcf7-not-valid-tip {
    margin-top: 6px;
    font-size: 12.5px;
    color: #d6492b;
}
.c-form .wpcf7-not-valid {
    border-color: #d6492b !important;
}
.c-form .wpcf7-response-output {
    margin: 18px 0 0 !important;
    padding: 12px 16px !important;
    border-radius: 10px;
    border-color: #e6e3dd !important;
    font-size: 13.5px;
    color: #1a1a1a;
}
.c-form .wpcf7-spinner {
    margin-inline: 12px;
}

.lp-hero__grid--form {
    grid-template-columns: 1.06fr 0.94fr;
    align-items: start;
}
@media (max-width: 880px) {
    .lp-hero__grid--form {
        grid-template-columns: 1fr;
    }
}

.lp-formcard {
    background: #fff;
    border: 1px solid #e6e3dd;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(2, 3, 144, 0.25);
    padding: clamp(22px, 3vw, 32px);
}
.lp-formcard .c-form {
    background: transparent;
    border: 0;
    padding: 0;
    border-radius: 0;
}
.lp-formcard__title {
    text-align: center;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.5;
    color: #322d23;
    margin: 0 0 18px;
}

.lp-formswitch {
    display: flex;
    gap: 6px;
    margin-bottom: 20px;
    padding: 6px;
    border-radius: 12px;
    background: #f7f7f7;
    border: 1px solid #e6e3dd;
}
.lp-formswitch__tab {
    flex: 1;
    padding: 11px 6px;
    border: none;
    border-radius: 8px;
    background: transparent;
    color: #6c6354;
    font-family: inherit;
    font-weight: 700;
    font-size: 13.5px;
    line-height: 1.2;
    cursor: pointer;
    transition: background 0.15s ease, color 0.15s ease;
}
.lp-formswitch__tab.is-active {
    background: #ef9637;
    color: #fff;
}
@media (hover: hover) and (pointer: fine) {
    .lp-formswitch__tab:not(.is-active):hover {
        color: #322d23;
    }
}
.lp-formswitch__tab:focus-visible {
    outline: 3px solid #003b82;
    outline-offset: 2px;
}
@media (max-width: 420px) {
    .lp-formswitch__tab {
        padding: 10px 4px;
        font-size: 12px;
    }
}

.lp-formpane {
    display: none;
}
.lp-formpane.is-active {
    display: block;
}
.lp-formpane__lead {
    text-align: center;
    font-size: 13px;
    line-height: 1.7;
    color: #1a1a1a;
    margin: 0 0 16px;
}

.lp-signup__btn {
    width: 100%;
    margin: 6px 0 14px;
}
.lp-signup__note {
    text-align: center;
    font-size: 12.5px;
    line-height: 1.7;
    color: #6c6354;
    margin: 0;
}
.lp-signup__manual {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin: 14px 0 0;
    font-size: 13px;
    font-weight: 700;
}
.lp-signup__manual svg {
    flex-shrink: 0;
}
.lp-signup__manual a {
    color: #020390;
    text-decoration: underline;
    text-underline-offset: 2px;
}
@media (hover: hover) and (pointer: fine) {
    .lp-signup__manual a:hover {
        color: #c9741a;
    }
}

.lp-carousel__track {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding: 4px 4px 14px;
    scroll-snap-type: x mandatory;
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.lp-carousel__track::-webkit-scrollbar {
    display: none;
}
.lp-carousel__item {
    flex: 0 0 auto;
    width: 264px;
    scroll-snap-align: center;
    background: #fff;
    border: 1px solid #e6e3dd;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 6px 16px rgba(2, 3, 144, 0.06);
}
.lp-carousel__icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: #eef0fb;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}
.lp-carousel__icon--orange {
    background: #fdeede;
}
.lp-carousel__title {
    font-weight: 700;
    font-size: 16px;
    color: #322d23;
    margin: 0 0 8px;
}
.lp-carousel__text {
    font-size: 13px;
    line-height: 1.75;
    color: #1a1a1a;
    margin: 0;
}
.lp-carousel__dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 14px;
}
.lp-carousel__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #d9d6cf;
}
.lp-carousel__dot--active {
    background: #020390;
}

.lp-reasons-title {
    text-align: center;
}
.lp-reasons-title__h {
    font-weight: 700;
    font-size: clamp(22px, 3.2vw, 32px);
    color: #322d23;
    margin: 0;
}
.lp-reasons-title__accent {
    color: #020390;
    font-size: 1.25em;
    margin-left: 6px;
}

.lp-reason__badge {
    display: inline-block;
    background: #020390;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.12em;
    padding: 5px 30px;
    border-radius: 4px;
    margin-bottom: 22px;
}
.lp-reason__title {
    font-weight: 700;
    font-size: clamp(20px, 2.8vw, 28px);
    line-height: 1.4;
    color: #322d23;
    margin: 0 0 36px;
    text-align: center;
}
.lp-reason__cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(24px, 4vw, 44px);
    align-items: center;
}
@media (max-width: 880px) {
    .lp-reason__cols {
        grid-template-columns: 1fr;
    }
}
.lp-reason__lead {
    font-size: 15px;
    line-height: 1.95;
    color: #1a1a1a;
    margin: 0;
}
.lp-reason__metric {
    font-weight: 700;
    font-size: clamp(26px, 4vw, 40px);
    color: #ef9637;
    line-height: 1.1;
    margin-top: 16px;
}
.lp-reason__metric-cap {
    font-size: 13px;
    color: #1a1a1a;
    margin-top: 6px;
}
.lp-reason__intro {
    text-align: center;
    margin: 0 auto 32px;
    max-width: 640px;
    font-size: 16px;
    line-height: 1.85;
    color: #1a1a1a;
}

.lp-reason-head {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lp-langs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.lp-lang {
    padding: 8px 14px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid #e6e3dd;
    font-size: 13px;
    font-weight: 700;
    color: #322d23;
}

.lp-flow {
    display: flex;
    flex-direction: column;
}
.lp-flow__step {
    display: flex;
    align-items: center;
    gap: 13px;
    background: #fff;
    border: 1px solid #e6e3dd;
    border-radius: 16px;
    padding: 15px 18px;
    box-shadow: 0 6px 16px rgba(2, 3, 144, 0.06);
}
.lp-flow__num {
    flex-shrink: 0;
    min-width: 22px;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.04em;
    color: #ef9637;
}
.lp-flow__icon {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    border-radius: 11px;
    background: #eef0fb;
    display: flex;
    align-items: center;
    justify-content: center;
}
.lp-flow__text {
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.lp-flow__title {
    font-size: 15.5px;
    font-weight: 700;
    color: #322d23;
    line-height: 1.4;
}
.lp-flow__cap {
    font-size: 13px;
    line-height: 1.55;
    color: #1a1a1a;
}
.lp-flow__arrow {
    display: flex;
    justify-content: center;
    padding: 8px 0;
    color: #ef9637;
}
.lp-flow__step--accent {
    background: linear-gradient(135deg, #020390, #0a1573);
    border-color: transparent;
    box-shadow: 0 16px 34px rgba(2, 3, 144, 0.3);
}
.lp-flow__step--accent .lp-flow__num {
    color: #ffb35c;
}
.lp-flow__step--accent .lp-flow__icon {
    background: rgba(255, 255, 255, 0.15);
}
.lp-flow__step--accent .lp-flow__title {
    color: #fff;
}
.lp-flow__step--accent .lp-flow__cap {
    color: #e7eaff;
}

.lp-midcta {
    position: relative;
    overflow: hidden;
    text-align: center;
    background: linear-gradient(135deg, #020390, #2c5ebc);
    padding: clamp(48px, 6vw, 72px) clamp(20px, 5vw, 56px);
}
.lp-midcta__kicker {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: clamp(15px, 2vw, 20px);
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
}
.lp-midcta__tri {
    width: 10px;
    height: 10px;
    border-top: 2px solid #fff;
}
.lp-midcta__tri--l {
    border-left: 2px solid #fff;
    transform: rotate(-45deg);
}
.lp-midcta__tri--r {
    border-right: 2px solid #fff;
    transform: rotate(45deg);
}
.lp-midcta__title {
    font-weight: 700;
    font-size: clamp(24px, 4vw, 38px);
    line-height: 1.3;
    color: #fff;
    margin: 0 0 28px;
}
.lp-midcta__title-accent {
    color: #ffdb00;
}

.lp-usecase {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
@media (max-width: 880px) {
    .lp-usecase {
        grid-template-columns: 1fr;
    }
}

.lp-usecard {
    background: #fff;
    border: 1px solid #e6e3dd;
    border-radius: 16px;
    padding: 28px;
}
.lp-usecard__tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    color: #c9741a;
    background: #fdeede;
    border-radius: 5px;
    padding: 4px 12px;
    margin-bottom: 14px;
}
.lp-usecard__title {
    font-weight: 700;
    font-size: 17px;
    color: #322d23;
    margin: 0 0 8px;
}
.lp-usecard__text {
    font-size: 13.5px;
    line-height: 1.8;
    color: #1a1a1a;
    margin: 0;
}

.lp-price {
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
    gap: 20px;
    align-items: stretch;
    margin-top: 8px;
}
@media (max-width: 880px) {
    .lp-price {
        grid-template-columns: 1fr;
    }
}
.lp-price__main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(135deg, #020390, #0a1573);
    color: #fff;
    border-radius: 20px;
    padding: clamp(28px, 4vw, 40px);
    box-shadow: 0 20px 50px rgba(2, 3, 144, 0.28);
}
.lp-price__tag {
    align-self: flex-start;
    padding: 5px 13px;
    border-radius: 6px;
    background: rgba(239, 150, 55, 0.18);
    border: 1px solid rgba(239, 150, 55, 0.5);
    color: #ffd9ad;
    font-size: 12.5px;
    font-weight: 700;
    margin-bottom: 18px;
}
.lp-price__amount {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 6px 12px;
}
.lp-price__amount-label {
    font-size: 15px;
    font-weight: 700;
    color: #e7eaff;
}
.lp-price__num {
    font-weight: 700;
    font-size: clamp(40px, 6vw, 58px);
    line-height: 1;
    color: #fff;
}
.lp-price__unit {
    font-size: 0.4em;
    margin-left: 2px;
    color: #ffb35c;
}
.lp-price__compare {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
}
.lp-price__compare-label {
    font-size: 13.5px;
    color: #c8cdf2;
}
.lp-price__compare-val {
    margin-left: auto;
    font-size: 16px;
    font-weight: 700;
    color: #ffb35c;
}
.lp-price__compare-val b {
    font-size: 1.6em;
}
.lp-price__fine {
    font-size: 12.5px;
    line-height: 1.7;
    color: #a4aae0;
    margin: 18px 0 0;
}
.lp-price__incl {
    background: #f7f7f7;
    border: 1px solid #e6e3dd;
    border-radius: 20px;
    padding: clamp(28px, 4vw, 40px);
}
.lp-price__incl-head {
    font-weight: 700;
    font-size: 16px;
    color: #322d23;
    margin: 0 0 18px;
    padding-bottom: 14px;
    border-bottom: 1px solid #e6e3dd;
}
.lp-price__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.lp-price__item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15.5px;
    font-weight: 700;
    line-height: 1.6;
    color: #322d23;
}
.lp-price__item svg {
    flex-shrink: 0;
    margin-top: 2px;
}
.lp-price__cta-note {
    text-align: center;
    max-width: 680px;
    margin: 32px auto 22px;
    font-size: 15px;
    line-height: 1.85;
    color: #1a1a1a;
}

.lp-h2 {
    font-size: clamp(28px, 3.8vw, 46px);
}

.lp-lead {
    font-size: 17px;
}

.lp-reasons-title__h {
    font-size: clamp(28px, 4vw, 44px);
}

.lp-reason__badge {
    font-size: 15px;
    padding: 8px 38px;
    margin-bottom: 26px;
}

.lp-reason__title {
    font-size: clamp(26px, 3.7vw, 40px);
    margin-bottom: 42px;
}

.lp-reason__lead {
    font-size: 18px;
    line-height: 2;
}

.lp-reason__intro {
    font-size: 18.5px;
    max-width: 720px;
}

.lp-reason__metric {
    font-size: clamp(30px, 4.6vw, 48px);
}

.lp-reason__metric-cap {
    font-size: 14.5px;
}

.lp-trust__text {
    font-size: 17.5px;
    line-height: 1.65;
}

.lp-trust__item {
    padding: 26px;
}

.lp-langs {
    gap: 10px;
}

.lp-lang {
    font-size: 15px;
    padding: 10px 18px;
}

.lp-mock__body {
    padding: 22px;
}

.lp-mock__score-num {
    font-size: 28px;
}

.lp-carousel__item {
    width: 286px;
}

.lp-carousel__title {
    font-size: 17.5px;
}

.lp-carousel__text {
    font-size: 14.5px;
}

.lp-cost__row {
    font-size: 15px;
}

.lp-cost__total {
    font-size: 18px;
}

.v3-nav__cta {
    font-size: 15px;
    padding: 11px 18px;
}

.v3-nav__cta--primary {
    padding: 13px 26px;
}

.lp-sticky {
    padding: 17px 42px;
    font-size: 18px;
    box-shadow: 0 16px 36px rgba(239, 150, 55, 0.55);
}

.lp-btn--primary {
    font-size: 17px;
}

.lp-btn--lg {
    padding: 19px 46px;
    font-size: 19px;
}

.lp-hero__notes {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.lp-note {
    font-size: 15px;
}

.lp-hero__langs {
    margin-top: 22px;
}

.lp-hero__langs-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}

.lp-hero__langs-cb {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.lp-hero__langs-toggle {
    display: none;
}

.lp-hero__langs-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #aeb3df;
    margin-right: 2px;
}

.c-form__field.is-doc-hidden {
    display: none;
}

.lp-lang__flag {
    margin-right: 5px;
}

.lp-lang--sm {
    padding: 6px 11px;
    font-size: 12.5px;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.26);
    color: #dfe2f4;
}

@media (max-width: 640px) {
    .v3-nav__cta--primary {
        padding: 10px 16px;
        font-size: 14px;
    }
    .lp-sticky {
        padding: 15px 32px;
        font-size: 16px;
    }
    .lp-hero__langs-toggle {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        cursor: pointer;
        padding: 9px 16px;
        border-radius: 999px;
        background: rgba(239, 150, 55, 0.12);
        border: 1px solid rgba(239, 150, 55, 0.5);
        color: #ffd9ad;
        font-size: 13px;
        font-weight: 700;
    }
    .lp-hero__langs-caret {
        transition: transform 0.2s ease;
    }
    .lp-hero__langs-list {
        display: none;
        margin-top: 12px;
    }
    .lp-hero__langs-cb:checked ~ .lp-hero__langs-list {
        display: flex;
    }
    .lp-hero__langs-cb:checked ~ .lp-hero__langs-toggle .lp-hero__langs-caret {
        transform: rotate(180deg);
    }
    .lp-mock__score {
        padding: 14px 10px;
    }
    .lp-mock__score-num {
        font-size: 34px;
    }
    .lp-mock__score-cap {
        font-size: 12px;
    }
}
@media (min-width: 641px) {
    .pc-hide {
        display: none !important;
    }
}
@media (max-width: 640px) {
    .sp-hide {
        display: none !important;
    }
}
@media (max-width: 640px) {
    .lp-hero__bg {
        background-image: url(../img/img_kv_sp.jpg);
        background-image: -webkit-image-set(url(../img/img_kv_sp.webp) type("image/webp"), url(../img/img_kv_sp.jpg) type("image/jpeg"));
        background-image: image-set(url(../img/img_kv_sp.webp) type("image/webp"), url(../img/img_kv_sp.jpg) type("image/jpeg"));
        background-position: center top;
    }
    .lp-hero__scrim {
        background: linear-gradient(180deg, rgba(2, 3, 30, 0.5) 0%, rgba(2, 3, 30, 0.32) 28%, rgba(2, 3, 30, 0.18) 52%, rgba(2, 3, 30, 0.04) 80%);
    }
}
.lp-legal {
    max-width: 820px;
    margin: 0 auto;
    color: #322d23;
}
.lp-legal__lead {
    font-size: 15.5px;
    line-height: 1.95;
    color: #1a1a1a;
    margin: 0 0 8px;
}
.lp-legal__updated {
    font-size: 13px;
    color: #6c6354;
    margin: 0 0 36px;
}
.lp-legal__section {
    margin: 0 0 32px;
}
.lp-legal__h {
    font-weight: 700;
    font-size: clamp(18px, 2.2vw, 22px);
    color: #020390;
    margin: 0 0 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e6e3dd;
}
.lp-legal__p {
    font-size: 15px;
    line-height: 1.95;
    color: #322d23;
    margin: 0 0 12px;
}
.lp-legal__list {
    margin: 0 0 12px;
    padding-left: 1.25em;
}
.lp-legal__list li {
    font-size: 15px;
    line-height: 1.9;
    color: #322d23;
    margin: 0 0 6px;
}
.lp-legal__note {
    font-size: 13.5px;
    line-height: 1.8;
    color: #6c6354;
}
.lp-legal__contact {
    background: #f7f7f7;
    border: 1px solid #e6e3dd;
    border-radius: 16px;
    padding: 22px 24px;
}
.lp-legal a {
    color: #020390;
    text-decoration: underline;
    text-underline-offset: 2px;
}
@media (hover: hover) {
    .lp-legal a:hover {
        color: #c9741a;
    }
}
.lp-legal .lp-legal__fill {
    background: rgba(239, 150, 55, 0.14);
    border-radius: 4px;
    padding: 1px 7px;
    font-weight: 700;
    color: #c9741a;
}

.lp-hero__title {
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.55), 0 2px 12px rgba(0, 0, 0, 0.3);
}
.lp-hero__lead {
    color: #fff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.65);
}

.lp-note {
    color: #fff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.7);
}

.lp-hero__langs-label {
    color: #e7eaff;
}

.lp-lang--sm {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.44);
    color: #fff;
}

.lp-footer__eeat {
    display: flex;
    flex-wrap: wrap;
    gap: 18px 40px;
    padding: 22px 0;
    margin-top: 6px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.lp-footer__eeat-col {
    flex: 1;
    min-width: 260px;
}

.lp-footer__eeat-text {
    font-size: 12.5px;
    line-height: 1.85;
    color: #c8cdf2;
    margin: 8px 0 0;
}
.lp-footer__eeat-text a {
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.lp-trust__source {
    text-align: center;
    font-size: 13px;
    line-height: 1.8;
    color: #6c6354;
    margin: 22px 0 0;
}
.lp-trust__source a {
    color: #020390;
    text-decoration: underline;
    text-underline-offset: 2px;
}
@media (hover: hover) and (pointer: fine) {
    .lp-trust__source a:hover {
        color: #c9741a;
    }
}

.lp-cost__note {
    max-width: 720px;
    margin: 14px auto 0;
    text-align: center;
    font-size: 12px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.62);
}
.lp-cost__note a {
    color: rgba(255, 255, 255, 0.88);
    text-decoration: underline;
    text-underline-offset: 2px;
}