html {
    margin: 0;
    box-sizing: border-box;
    font-size: 100%;
    scroll-behavior: auto;
    overflow-x: hidden
}

*,
*::before,
*::after {
    box-sizing: inherit
}

body {
    margin: 0;
    min-height: 100svh;
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
    font-family: 'Nunito', sans-serif;
    background: linear-gradient(165deg, #FEFEF3 0%, #fff 45%, #f8f6ff 100%);
    color: #1a1618;
    font-size: 18px;
    line-height: 1.65
}

.top-bar {
    background: linear-gradient(92deg, #6e65f914 0%, #0b47600d 100%);
    padding: 12px 0;
    border-bottom: 1px solid #6e65f91f
}

.top-bar__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px
}

.top-bar__contact {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #0B4760;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    transition: color .18s ease-out
}

.top-bar__contact:hover {
    color: #6E65F9
}

.top-bar__contact i {
    font-size: 18px
}

.top-bar__tagline {
    font-size: 16px;
    color: #4a4655;
    font-style: italic
}

.masthead {
    background: linear-gradient(178deg, #fff 0%, #fefef399 100%);
    padding: 40px 0 20px;
    border-bottom: 3px solid #6E65F9;
    box-shadow: -1px 8px 44px 0 #6e65f91f;
    position: relative
}

.masthead::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background: linear-gradient(90deg, #6E65F9 0%, #0B4760 50%, #6E65F9 100%)
}

.masthead__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px
}

.brand-zone {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 40px;
    background: #fff;
    border-radius: 40px;
    box-shadow: -1px 7px 20px 0 #0b47601a;
    border-left: 6px solid #6E65F9;
    transition: box-shadow .5s ease-out, transform .45s ease-out
}

.brand-zone:hover {
    box-shadow: -1px 8px 44px 0 #6e65f91f;
    transform: translateY(-2px)
}

.brand-zone__logo-wrap {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #6e65f90f 0%, #fefef366 100%);
    border-radius: 12px;
    border: 2px solid #6e65f933;
    box-shadow: -1px 3px 4px 0 #6e65f90f
}

.brand-zone__logo {
    width: 65px;
    height: 65px;
    object-fit: contain
}

.brand-zone__text {
    display: flex;
    flex-direction: column;
    gap: 4px
}

.brand-zone__name {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #0B4760;
    line-height: 1.15;
    letter-spacing: .02em
}

.brand-zone__slogan {
    font-size: 16px;
    color: #6E65F9;
    font-style: italic;
    line-height: 1.4
}

.primary-nav {
    width: 100%;
    background: linear-gradient(180deg, #6e65f90a 0%, #fefef34d 100%);
    border-radius: 12px;
    padding: 20px;
    box-shadow: -1px 3px 4px 0 #0b47600f
}

.primary-nav__list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0
}

.primary-nav__item {
    position: relative
}

.primary-nav__link {
    display: block;
    padding: 12px 40px;
    font-size: 18px;
    font-weight: 700;
    color: #0B4760;
    text-decoration: none;
    background: #fff;
    border: 3px solid #6E65F9;
    border-radius: 40px;
    transition: background .5s ease-out, color .5s ease-out, border-color .5s ease-out, box-shadow .45s ease;
    box-shadow: -1px 3px 4px 0 #6e65f90f;
    position: relative;
    overflow: hidden
}

.primary-nav__link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #6e65f926 0%, #0b47601a 100%);
    transition: left .55s ease-out;
    z-index: 0
}

.primary-nav__link:hover::before {
    left: 0
}

.primary-nav__link:hover {
    background: #6E65F9;
    color: #fff;
    border-color: #0B4760;
    box-shadow: -1px 7px 20px 0 #6e65f91a
}

.primary-nav__link:focus {
    outline: 3px solid #0B4760;
    outline-offset: 4px
}

@media (max-width: 768px) {
    .brand-zone {
        flex-direction: column;
        text-align: center;
        padding: 20px
    }

    .primary-nav__link {
        padding: 12px 20px;
        font-size: 16px
    }

    .top-bar__inner {
        flex-direction: column;
        text-align: center
    }
}

@media (max-width: 640px) {
    .masthead__inner {
        gap: 20px
    }

    .primary-nav {
        padding: 12px
    }

    .primary-nav__list {
        gap: 8px
    }
}

.base-footer {
    background: linear-gradient(180deg, #fff 0%, #fefef3cc 100%);
    border-top: 4px solid #6E65F9;
    padding: 80px 0 0;
    margin-top: 80px;
    position: relative
}

.base-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #0B4760 0%, #6E65F9 50%, #0B4760 100%)
}

.footer-main {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px 40px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 20px
}

.footer-col__heading {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #0B4760;
    line-height: 1.4;
    margin: 0;
    padding-bottom: 8px;
    border-bottom: 2px solid #6e65f94d
}

.footer-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px
}

.footer-menu__link {
    display: inline-block;
    color: #3a3540;
    text-decoration: none;
    font-size: 16px;
    line-height: 1.4;
    transition: color .2s ease-out, padding-left .4s ease;
    padding-left: 0;
    border-left: 3px solid transparent
}

.footer-menu__link:hover {
    color: #6E65F9;
    padding-left: 12px;
    border-left-color: #6E65F9
}

.footer-menu__link:focus {
    outline: 2px solid #0B4760;
    outline-offset: 3px
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px
}

.footer-brand__logo-box {
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 12px;
    border: 2px solid #6e65f940;
    box-shadow: -1px 3px 4px 0 #0b47600f;
    padding: 8px
}

.footer-brand__logo {
    width: 60px;
    height: 60px;
    object-fit: contain
}

.footer-brand__name {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #0B4760;
    line-height: 1.4;
    margin: 0
}

.footer-brand__text {
    font-size: 16px;
    color: #4a4655;
    line-height: 1.65;
    margin: 0
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 12px
}

.footer-contact__item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #3a3540;
    text-decoration: none;
    font-size: 16px;
    line-height: 1.4;
    transition: color .18s ease-out
}

.footer-contact__item:hover {
    color: #6E65F9
}

.footer-contact__item i {
    font-size: 18px;
    color: #6E65F9
}

.footer-bottom {
    background: linear-gradient(90deg, #6e65f914 0%, #0b47600f 100%);
    padding: 20px 0;
    border-top: 1px solid #6e65f926;
    margin-top: 40px
}

.footer-bottom__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px
}

.footer-bottom__copy {
    font-size: 16px;
    color: #4a4655;
    margin: 0;
    line-height: 1.4
}

.footer-bottom__links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap
}

.footer-bottom__link {
    color: #3a3540;
    text-decoration: none;
    font-size: 16px;
    transition: color .15s ease-out
}

.footer-bottom__link:hover {
    color: #6E65F9
}

@media (max-width: 1024px) {
    .footer-main {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px
    }
}

@media (max-width: 640px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 40px
    }

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

    .footer-bottom__links {
        justify-content: center
    }
}

.consent-overlay {
    position: fixed;
    bottom: 20px;
    left: 20px;
    max-width: 520px;
    background: #fff;
    border: 3px solid #6E65F9;
    border-radius: 12px;
    box-shadow: -1px 8px 44px 0 #6e65f91f;
    padding: 20px;
    z-index: 1200;
    display: none;
    transform: translateX(-600px);
    transition: transform .18s ease-out
}

.consent-overlay.visible {
    transform: translateX(0)
}

.consent-overlay__headline {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #0B4760;
    margin: 0 0 12px;
    line-height: 1.4
}

.consent-overlay__text {
    font-size: 16px;
    color: #3a3540;
    line-height: 1.65;
    margin: 0 0 20px
}

.consent-overlay__actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap
}

.consent-overlay__btn {
    padding: 12px 40px;
    font-size: 16px;
    font-weight: 700;
    border: 3px solid #6E65F9;
    border-radius: 40px;
    background: #fff;
    color: #0B4760;
    cursor: pointer;
    transition: background .45s ease, color .45s ease, border-color .45s ease, box-shadow .4s ease-out;
    box-shadow: -1px 3px 4px 0 #6e65f90f
}

.consent-overlay__btn:hover {
    background: #6E65F9;
    color: #fff;
    border-color: #0B4760;
    box-shadow: -1px 7px 20px 0 #6e65f91a
}

.consent-overlay__btn:focus {
    outline: 3px solid #0B4760;
    outline-offset: 4px
}

.consent-overlay__btn.primary {
    background: #6E65F9;
    color: #fff
}

.consent-overlay__btn.primary:hover {
    background: #0B4760;
    border-color: #6E65F9
}

.consent-overlay__expand {
    margin-top: 12px;
    padding: 8px 20px;
    font-size: 16px;
    color: #6E65F9;
    background: transparent;
    border: 2px solid #6e65f94d;
    border-radius: 6px;
    cursor: pointer;
    transition: background .2s ease-out, border-color .2s ease-out
}

.consent-overlay__expand:hover {
    background: #6e65f914;
    border-color: #6E65F9
}

.consent-overlay__panel {
    display: none;
    margin-top: 20px;
    padding: 20px;
    background: linear-gradient(135deg, #fefef380 0%, #6e65f90a 100%);
    border-radius: 6px;
    border: 1px solid #6e65f926
}

.consent-overlay__panel.active {
    display: block
}

.consent-overlay__option {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px
}

.consent-overlay__option:last-child {
    margin-bottom: 0
}

.consent-overlay__checkbox {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: #6E65F9
}

.consent-overlay__label {
    font-size: 16px;
    color: #3a3540;
    line-height: 1.4;
    cursor: pointer
}

.settings-trigger {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 56px;
    height: 56px;
    background: #6E65F9;
    border: 3px solid #0B4760;
    border-radius: 40px;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: -1px 7px 20px 0 #6e65f91a;
    transition: background .4s ease, transform .45s ease-out, box-shadow .5s ease;
    z-index: 1199
}

.settings-trigger:hover {
    background: #0B4760;
    transform: scale(1.1) rotate(90deg);
    box-shadow: -1px 8px 44px 0 #0b47601f
}

.settings-trigger i {
    font-size: 24px;
    color: #fff
}

.settings-trigger.visible {
    display: flex
}

@media (max-width: 640px) {
    .consent-overlay {
        left: 12px;
        right: 12px;
        max-width: none;
        bottom: 12px
    }

    .consent-overlay__actions {
        flex-direction: column
    }

    .consent-overlay__btn {
        width: 100%
    }

    .settings-trigger {
        bottom: 12px;
        right: 12px
    }
}

.terms-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 80px 20px;
    background: linear-gradient(135deg, #FEFEF3 0%, #fff 100%)
}

.terms-inner h1 {
    font-size: 62px;
    line-height: 1.15;
    margin: 0 0 40px;
    color: #0B4760;
    padding-bottom: 20px;
    border-bottom: 4px solid #6E65F9
}

.terms-inner h2 {
    font-size: 24px;
    line-height: 1.4;
    margin: 80px 0 20px;
    color: #0B4760;
    position: relative;
    padding-left: 20px
}

.terms-inner h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #6E65F9 0%, #0B4760 100%);
    border-radius: 2px
}

.terms-inner h3 {
    font-size: 18px;
    line-height: 1.4;
    margin: 40px 0 12px;
    color: #0B4760
}

.terms-inner h4,
.terms-inner h5,
.terms-inner h6 {
    font-size: 16px;
    line-height: 1.4;
    margin: 40px 0 12px;
    color: #0B4760
}

.terms-inner p {
    font-size: 16px;
    line-height: 1.85;
    margin: 0 0 20px;
    color: #1a1a2e
}

.terms-inner ul,
.terms-inner ol {
    font-size: 16px;
    line-height: 1.85;
    margin: 0 0 20px;
    padding-left: 40px;
    color: #1a1a2e
}

.terms-inner ul {
    list-style-type: none
}

.terms-inner ul li {
    position: relative;
    margin-bottom: 12px
}

.terms-inner ul li::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 12px;
    width: 8px;
    height: 8px;
    background: #6E65F9;
    border-radius: 2px;
    transition: transform .15s ease-out
}

.terms-inner ul li:hover::before {
    transform: scale(1.2)
}

.terms-inner ol {
    list-style-type: decimal
}

.terms-inner ol li {
    margin-bottom: 12px;
    padding-left: 8px
}

.terms-inner ol li::marker {
    color: #6E65F9
}

.terms-inner strong,
.terms-inner b {
    color: #0B4760;
    font-weight: 600
}

.terms-inner em,
.terms-inner i {
    font-style: italic;
    color: #2a2a3e
}

.terms-inner hr {
    border: none;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #6E65F9 50%, transparent 100%);
    margin: 80px 0;
    opacity: .3
}

.terms-inner div {
    margin: 0 0 20px
}

@media (max-width: 1024px) {
    .terms-inner {
        padding: 40px 20px
    }

    .terms-inner h1 {
        font-size: 24px;
        margin-bottom: 20px
    }

    .terms-inner h2 {
        margin-top: 40px
    }
}

@media (max-width: 640px) {
    .terms-inner {
        padding: 20px 12px
    }

    .terms-inner ul,
    .terms-inner ol {
        padding-left: 20px
    }

    .terms-inner ul li::before {
        left: -16px
    }
}

.post-pg {
    background: linear-gradient(323deg, #0B4760 0%, #6E65F9 100%);
    min-height: 100vh;
    padding: 0;
    margin: 0
}

.post-pg__hdr {
    max-width: 1280px;
    margin: 0 auto;
    padding: 80px 20px 40px;
    position: relative;
    overflow: hidden
}

.post-pg__hdr::before {
    content: '01';
    position: absolute;
    top: -40px;
    right: 40px;
    font-size: 240px;
    font-weight: 700;
    color: #fefef314;
    line-height: 1.15;
    pointer-events: none
}

.post-pg__hdr-deco {
    position: absolute;
    top: 80px;
    left: 20px;
    width: 80px;
    height: 4px;
    background: #FEFEF3;
    opacity: .3
}

.post-pg__hdr-deco::before,
.post-pg__hdr-deco::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 4px;
    background: #FEFEF3;
    opacity: .5
}

.post-pg__hdr-deco::before {
    top: 12px;
    left: 0
}

.post-pg__hdr-deco::after {
    top: 24px;
    left: 0;
    width: 40px
}

.post-pg__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
    align-items: center
}

.post-pg__tag {
    background: #fefef326;
    color: #FEFEF3;
    padding: 8px 20px;
    border-radius: 40px;
    font-size: 16px;
    line-height: 1.4;
    border: 2px solid #fefef34d;
    transition: border-color .15s ease-out, background .15s ease-out
}

.post-pg__tag:hover {
    border-color: #FEFEF3;
    background: #fefef340
}

.post-pg__dt {
    color: #fefef3cc;
    font-size: 16px;
    line-height: 1.4;
    display: flex;
    align-items: center;
    gap: 8px
}

.post-pg__dt svg {
    width: 20px;
    height: 20px;
    fill: currentColor
}

.post-pg__title-h1 {
    font-size: 62px;
    line-height: 1.15;
    color: #FEFEF3;
    margin: 0 0 20px;
    font-weight: 700;
    letter-spacing: normal
}

.post-pg__title-h1 .punct {
    color: #6E65F9;
    background: #fefef3f2;
    padding: 0 12px;
    border-radius: 6px
}

.post-pg__subtitle {
    font-size: 24px;
    line-height: 1.65;
    color: #fefef3e6;
    margin: 0;
    max-width: 840px
}

.post-pg__stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap
}

.post-pg__stat {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #FEFEF3
}

.post-pg__stat svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
    opacity: .8
}

.post-pg__stat-val {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.4
}

.post-pg__vis {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px 80px;
    position: relative
}

.post-pg__vis::before {
    content: '';
    position: absolute;
    top: -80px;
    left: 0;
    right: 0;
    height: 160px;
    background: linear-gradient(180deg, transparent 0%, #fefef308 100%);
    pointer-events: none
}

.post-pg__img-wrap {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: -1px 8px 44px 0 #0b47601f;
    border: 4px solid #fefef333;
    transition: border-color .5s ease, box-shadow .5s ease;
    animation: vis-reveal .6s ease-out
}

@keyframes vis-reveal {
    from {
        opacity: 0;
        filter: blur(12px)
    }

    to {
        opacity: 1;
        filter: blur(0)
    }
}

.post-pg__img-wrap:hover {
    border-color: #fefef366;
    box-shadow: -1px 8px 44px 0 #0b47602e
}

.post-pg__img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 16/9
}

.post-pg__body {
    background: #FEFEF3;
    padding: 80px 0;
    position: relative;
    margin-left: 40px
}

.post-pg__body::before {
    content: '';
    position: absolute;
    top: 0;
    left: -40px;
    right: 0;
    height: 120px;
    background: linear-gradient(180deg, #6e65f90d 0%, transparent 100%);
    pointer-events: none
}

.post-pg__body-deco {
    position: absolute;
    top: 80px;
    right: 40px;
    width: 60px;
    height: 3px;
    background: #6E65F9;
    opacity: .2
}

.post-pg__body-deco::before,
.post-pg__body-deco::after {
    content: '';
    position: absolute;
    height: 3px;
    background: #6E65F9;
    opacity: .3
}

.post-pg__body-deco::before {
    width: 80px;
    top: 12px;
    right: 0
}

.post-pg__body-deco::after {
    width: 100px;
    top: 24px;
    right: 0
}

.post-pg__content {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px
}

.post-pg__auth {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 40px;
    padding: 20px;
    background: linear-gradient(323deg, #0b476008 0%, #6e65f908 100%);
    border-radius: 12px;
    border-left: 4px solid #6E65F9;
    animation: auth-reveal .5s ease-out .2s both
}

@keyframes auth-reveal {
    from {
        opacity: 0;
        filter: blur(8px);
        transform: translateX(-20px)
    }

    to {
        opacity: 1;
        filter: blur(0);
        transform: translateX(0)
    }
}

.post-pg__auth-lbl {
    font-size: 16px;
    line-height: 1.4;
    color: #0b476099;
    font-weight: 700
}

.post-pg__auth-nm {
    font-size: 18px;
    line-height: 1.4;
    color: #0B4760;
    font-weight: 700
}

.post-pg__txt {
    color: #0B4760;
    font-size: 18px;
    line-height: 1.85;
    animation: txt-reveal .5s ease-out .4s both
}

@keyframes txt-reveal {
    from {
        opacity: 0;
        filter: blur(6px)
    }

    to {
        opacity: 1;
        filter: blur(0)
    }
}

.post-pg__txt p {
    margin: 0 0 20px
}

.post-pg__txt p:last-child {
    margin-bottom: 0
}

.post-pg__txt h2 {
    font-size: 24px;
    line-height: 1.4;
    color: #0B4760;
    margin: 40px 0 20px;
    font-weight: 700;
    letter-spacing: normal
}

.post-pg__txt h2:first-child {
    margin-top: 0
}

.post-pg__txt ins {
    background: #6e65f91a;
    color: #0B4760;
    text-decoration: none;
    padding: 2px 4px;
    border-radius: 2px
}

.post-pg__txt cite {
    font-style: italic;
    color: #0b4760cc
}

.post-pg__txt ul {
    margin: 20px 0;
    padding-left: 0;
    list-style: none
}

.post-pg__txt li {
    margin: 0 0 12px;
    padding-left: 32px;
    position: relative;
    color: #0B4760
}

.post-pg__txt li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    background: #6E65F9;
    border-radius: 2px;
    transform: rotate(45deg)
}

.post-pg__txt li:last-child {
    margin-bottom: 0
}

.post-pg__txt blockquote {
    margin: 40px 0;
    padding: 20px 20px 20px 24px;
    background: #6e65f90d;
    border-left: 4px solid #6E65F9;
    border-radius: 6px;
    color: #0B4760;
    font-style: italic
}

.post-pg__txt blockquote p {
    margin: 0
}

.post-pg__txt details {
    margin: 20px 0;
    padding: 20px;
    background: #0b476008;
    border-radius: 12px;
    border: 2px solid #0b47601a;
    transition: border-color .15s ease-out
}

.post-pg__txt details:hover {
    border-color: #0b476033
}

.post-pg__txt details[open] {
    border-color: #6E65F9
}

.post-pg__txt summary {
    cursor: pointer;
    font-weight: 700;
    color: #0B4760;
    font-size: 18px;
    line-height: 1.4;
    list-style: none;
    user-select: none;
    transition: color .15s ease-out
}

.post-pg__txt summary::-webkit-details-marker {
    display: none
}

.post-pg__txt summary::before {
    content: '';
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 6px solid #6E65F9;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    margin-right: 12px;
    transition: transform .2s ease-out
}

.post-pg__txt details[open] summary::before {
    transform: rotate(90deg)
}

.post-pg__txt summary:hover {
    color: #6E65F9
}

.post-pg__cta-sec {
    background: linear-gradient(323deg, #fefef380 0%, #6e65f914 100%);
    padding: 80px 0;
    position: relative;
    margin-right: 40px
}

.post-pg__cta-sec::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: -40px;
    height: 100px;
    background: linear-gradient(180deg, #fefef3cc 0%, transparent 100%);
    pointer-events: none
}

.post-pg__cta-wrap {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px
}

.post-pg__cta-box {
    background: #FEFEF3;
    border-radius: 12px;
    padding: 40px;
    box-shadow: -1px 7px 20px 0 #6e65f91a;
    border: 3px solid #6e65f926;
    position: relative;
    overflow: hidden;
    animation: cta-reveal .6s ease-out
}

@keyframes cta-reveal {
    from {
        opacity: 0;
        filter: blur(10px);
        transform: translateY(30px)
    }

    to {
        opacity: 1;
        filter: blur(0);
        transform: translateY(0)
    }
}

.post-pg__cta-box::before {
    content: '→';
    position: absolute;
    top: -20px;
    right: 40px;
    font-size: 180px;
    color: #6e65f90a;
    line-height: 1.15;
    pointer-events: none;
    font-weight: 700
}

.post-pg__cta-lbl {
    font-size: 16px;
    line-height: 1.4;
    color: #0b476099;
    font-weight: 700;
    margin: 0 0 8px
}

.post-pg__cta-h {
    font-size: 24px;
    line-height: 1.4;
    color: #0B4760;
    margin: 0 0 20px;
    font-weight: 700;
    letter-spacing: normal
}

.post-pg__cta-txt {
    font-size: 18px;
    line-height: 1.65;
    color: #0B4760;
    margin: 0 0 40px;
    max-width: 720px
}

.post-pg__cta-btns {
    display: flex;
    gap: 20px;
    flex-wrap: wrap
}

.post-pg__btn {
    padding: 12px 40px;
    font-size: 18px;
    line-height: 1.4;
    border-radius: 6px;
    border: 3px solid #6E65F9;
    background: #6E65F9;
    color: #FEFEF3;
    text-decoration: none;
    display: inline-block;
    font-weight: 700;
    transition: border-color .15s ease-out, background .15s ease-out, color .15s ease-out, box-shadow .15s ease-out;
    position: relative;
    overflow: hidden;
    cursor: pointer
}

.post-pg__btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #fefef31a;
    transition: left .4s ease
}

.post-pg__btn:hover::before {
    left: 100%
}

.post-pg__btn:hover {
    border-color: #0B4760;
    background: #0B4760;
    box-shadow: -1px 3px 4px 0 #6e65f90f
}

.post-pg__btn:active {
    box-shadow: inset -1px 3px 4px 0 #0b476026
}

.post-pg__btn--sec {
    background: transparent;
    color: #6E65F9;
    border-color: #6E65F9
}

.post-pg__btn--sec:hover {
    background: #6E65F9;
    color: #FEFEF3;
    border-color: #6E65F9
}

.post-pg__btn--sec:active {
    box-shadow: inset -1px 3px 4px 0 #6e65f926
}

@media (max-width: 1024px) {
    .post-pg__hdr {
        padding: 40px 20px
    }

    .post-pg__hdr::before {
        font-size: 180px;
        top: -20px;
        right: 20px
    }

    .post-pg__title-h1 {
        font-size: 48px
    }

    .post-pg__subtitle {
        font-size: 20px
    }

    .post-pg__vis {
        padding: 0 20px 40px
    }

    .post-pg__body {
        padding: 40px 0;
        margin-left: 20px
    }

    .post-pg__body::before {
        left: -20px
    }

    .post-pg__cta-sec {
        padding: 40px 0;
        margin-right: 20px
    }

    .post-pg__cta-box {
        padding: 20px
    }

    .post-pg__cta-box::before {
        font-size: 120px;
        right: 20px
    }
}

@media (max-width: 768px) {
    .post-pg__hdr {
        padding: 40px 12px 20px
    }

    .post-pg__hdr::before {
        font-size: 120px;
        top: 0;
        right: 12px
    }

    .post-pg__hdr-deco {
        left: 12px;
        width: 60px
    }

    .post-pg__hdr-deco::before,
    .post-pg__hdr-deco::after {
        width: 40px
    }

    .post-pg__title-h1 {
        font-size: 32px
    }

    .post-pg__subtitle {
        font-size: 18px
    }

    .post-pg__stats {
        gap: 20px
    }

    .post-pg__stat-val {
        font-size: 20px
    }

    .post-pg__vis {
        padding: 0 12px 40px
    }

    .post-pg__body {
        padding: 40px 0;
        margin-left: 12px
    }

    .post-pg__body::before {
        left: -12px
    }

    .post-pg__body-deco {
        right: 12px
    }

    .post-pg__content {
        padding: 0 12px
    }

    .post-pg__auth {
        padding: 12px;
        flex-direction: column;
        align-items: flex-start;
        gap: 4px
    }

    .post-pg__txt {
        font-size: 16px
    }

    .post-pg__txt h2 {
        font-size: 20px;
        margin: 20px 0 12px
    }

    .post-pg__cta-sec {
        padding: 40px 0;
        margin-right: 12px
    }

    .post-pg__cta-wrap {
        padding: 0 12px
    }

    .post-pg__cta-box {
        padding: 20px
    }

    .post-pg__cta-box::before {
        font-size: 80px;
        right: 12px;
        top: 0
    }

    .post-pg__cta-h {
        font-size: 20px
    }

    .post-pg__cta-txt {
        font-size: 16px;
        margin-bottom: 20px
    }

    .post-pg__cta-btns {
        flex-direction: column
    }

    .post-pg__btn {
        width: 100%;
        text-align: center
    }
}

@media (max-width: 640px) {
    .post-pg__hdr {
        padding: 20px 12px
    }

    .post-pg__title-h1 {
        font-size: 24px
    }

    .post-pg__meta {
        gap: 12px
    }

    .post-pg__stats {
        margin-top: 20px
    }
}

.srv {
    background: #FEFEF3;
    color: #0B4760;
    overflow-x: clip
}

.srv__hero {
    max-width: 1280px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    min-height: 180px;
    position: relative
}

.srv__hero-img-wrap {
    flex: 0 0 280px;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: -1px 7px 20px 0 #6e65f91a -1px 8px 44px 0 #6e65f91f
}

.srv__hero-img {
    width: 280px;
    height: 140px;
    object-fit: cover;
    object-position: center;
    display: block;
    position: relative
}

.srv__hero-img::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(180deg, #0b476059 0%, #0b476000 100%);
    pointer-events: none
}

.srv__hero-shape {
    position: absolute;
    width: 32px;
    height: 32px;
    border: 2px solid #6E65F9;
    border-radius: 50%;
    top: 50%;
    left: -16px;
    transform: translateY(-50%);
    pointer-events: none
}

.srv__hero-shape::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 2px;
    background: #6E65F9;
    top: 50%;
    left: 100%;
    transform: translateY(-50%)
}

.srv__hero-txt {
    flex: 1;
    position: relative
}

.srv__hero-bar {
    width: 60px;
    height: 4px;
    background: linear-gradient(323deg, #0B4760 0%, #6E65F9 100%);
    margin-bottom: 12px;
    border-radius: 2px
}

.srv__hero-h {
    font-size: 62px;
    line-height: 1.15;
    margin: 0 0 12px;
    font-weight: 700;
    letter-spacing: -.02em;
    animation: srv-drop .5s ease-out
}

@keyframes srv-drop {
    0% {
        transform: translateY(-12px);
        opacity: 0
    }

    70% {
        transform: translateY(2px)
    }

    85% {
        transform: translateY(-1px)
    }

    100% {
        transform: translateY(0);
        opacity: 1
    }
}

.srv__hero-desc {
    font-size: 18px;
    line-height: 1.65;
    margin: 0;
    color: #0B4760;
    opacity: .85
}

@media (max-width: 768px) {
    .srv__hero {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px 12px
    }

    .srv__hero-img-wrap {
        flex: 0 0 auto;
        width: 100%
    }

    .srv__hero-img {
        width: 100%;
        height: 200px
    }

    .srv__hero-h {
        font-size: 42px
    }
}

.srv__offer {
    background: linear-gradient(323deg, #0b476008 0%, #6e65f90a 100%);
    padding: 80px 20px;
    position: relative;
    overflow: hidden
}

.srv__offer::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #6E65F9 0%, #0B4760 100%);
    opacity: .15
}

.srv__offer-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.8fr 1.5fr 1.5fr 0.8fr;
    gap: 40px;
    align-items: start
}

.srv__offer-intro {
    grid-column: 2 / 4;
    text-align: center;
    margin-bottom: 40px
}

.srv__offer-bar {
    width: 80px;
    height: 4px;
    background: linear-gradient(323deg, #0B4760 0%, #6E65F9 100%);
    margin: 0 auto 20px;
    border-radius: 2px
}

.srv__offer-h {
    font-size: 72px;
    line-height: 1.15;
    margin: 0 0 20px;
    font-weight: 700
}

.srv__offer-lead {
    font-size: 18px;
    line-height: 1.65;
    margin: 0;
    color: #0B4760;
    opacity: .85
}

.srv__card-set {
    grid-column: 1 / 5;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px
}

.srv__card {
    background: #FEFEF3;
    border: 3px solid #6E65F9;
    border-radius: 12px;
    padding: 40px 20px;
    position: relative;
    overflow: hidden;
    transition: border-color .15s ease-out, transform .12s ease;
    box-shadow: -1px 3px 4px 0 #6e65f90f
}

.srv__card:hover {
    border-color: #0B4760;
    transform: translateY(-4px);
    box-shadow: -1px 7px 20px 0 #6e65f91a -1px 8px 44px 0 #6e65f91f
}

.srv__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(323deg, #0B4760 0%, #6E65F9 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .5s ease-out
}

.srv__card:hover::before {
    transform: scaleX(1)
}

.srv__card-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(323deg, #0b476014 0%, #6e65f914 100%)
}

.srv__card-icon svg {
    width: 24px;
    height: 24px;
    fill: #6E65F9
}

.srv__card-h {
    font-size: 24px;
    line-height: 1.4;
    margin: 0 0 12px;
    font-weight: 700
}

.srv__card-label {
    font-size: 16px;
    line-height: 1.4;
    font-weight: 700;
    color: #6E65F9;
    margin: 0 0 8px;
    display: block
}

.srv__card-txt {
    font-size: 16px;
    line-height: 1.65;
    margin: 0;
    color: #0B4760;
    opacity: .85
}

.srv__card-arrow {
    display: inline-block;
    margin-left: 4px;
    color: #6E65F9;
    transition: transform .15s ease-out
}

.srv__card:hover .srv__card-arrow {
    transform: translateX(4px)
}

@media (max-width: 1024px) {
    .srv__offer-inner {
        grid-template-columns: 1fr
    }

    .srv__offer-intro {
        grid-column: 1
    }

    .srv__card-set {
        grid-column: 1;
        grid-template-columns: repeat(2, 1fr)
    }
}

@media (max-width: 640px) {
    .srv__offer {
        padding: 40px 12px
    }

    .srv__offer-h {
        font-size: 42px
    }

    .srv__card-set {
        grid-template-columns: 1fr
    }

    .srv__card {
        padding: 20px
    }
}

.srv__pulse {
    animation: srv-pulse-shadow 2.4s ease-in-out infinite
}

@keyframes srv-pulse-shadow {

    0%,
    100% {
        box-shadow: -1px 3px 4px 0 #6e65f90f
    }

    50% {
        box-shadow: -1px 7px 20px 0 #6e65f91a -1px 8px 44px 0 #6e65f91f
    }
}

.srv__expert {
    max-width: 1280px;
    margin: 0 auto;
    padding: 80px 20px;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: start
}

.srv__expert-profile {
    position: relative
}

.srv__expert-img-wrap {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #6E65F9;
    box-shadow: -1px 7px 20px 0 #6e65f91a;
    margin-bottom: 20px
}

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

.srv__expert-name {
    font-size: 24px;
    line-height: 1.4;
    margin: 0 0 4px;
    font-weight: 700
}

.srv__expert-role {
    font-size: 16px;
    line-height: 1.4;
    margin: 0;
    color: #6E65F9;
    font-weight: 600
}

.srv__expert-content {
    position: relative
}

.srv__expert-bar {
    width: 60px;
    height: 4px;
    background: linear-gradient(323deg, #0B4760 0%, #6E65F9 100%);
    margin-bottom: 20px;
    border-radius: 2px
}

.srv__expert-h {
    font-size: 62px;
    line-height: 1.15;
    margin: 0 0 20px;
    font-weight: 700
}

.srv__expert-label {
    font-size: 16px;
    line-height: 1.4;
    font-weight: 700;
    color: #6E65F9;
    margin: 0 0 8px;
    display: block
}

.srv__expert-txt {
    font-size: 18px;
    line-height: 1.65;
    margin: 0 0 20px;
    color: #0B4760;
    opacity: .85
}

.srv__expert-txt:last-of-type {
    margin-bottom: 0
}

@media (max-width: 768px) {
    .srv__expert {
        grid-template-columns: 1fr;
        padding: 40px 12px;
        gap: 20px
    }

    .srv__expert-h {
        font-size: 42px
    }
}

.hm-pg {
    background: #FEFEF3;
    overflow-x: clip
}

.hm-pg__title-area {
    background: linear-gradient(323deg, #0B4760 0%, #6E65F9 100%);
    padding: 80px 20px 40px;
    position: relative;
    overflow: hidden
}

.hm-pg__title-wrap {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 2
}

.hm-pg__title-frame {
    border: 2px solid #ffffff4d;
    padding: 40px;
    border-radius: 2px;
    max-width: 840px
}

.hm-pg__main-title {

    line-height: 1.15;
    color: #FEFEF3;
    margin: 0;
    font-weight: 700
}

.hm-pg__title-accent {
    display: block;
    margin-top: 12px;
    opacity: 0;
    transform: rotate(-2deg);
    animation: reveal-rotate 600ms 200ms forwards
}

@keyframes reveal-rotate {
    to {
        opacity: 1;
        transform: rotate(0deg)
    }
}

.hm-pg__decor-strokes {
    position: absolute;
    bottom: 40px;
    right: 40px;
    width: 120px;
    height: 80px;
    pointer-events: none
}

.hm-pg__stroke {
    position: absolute;
    height: 3px;
    background: #fefef366;
    border-radius: 2px
}

.hm-pg__stroke:nth-child(1) {
    width: 60px;
    top: 0;
    right: 0;
    transform: rotate(-15deg)
}

.hm-pg__stroke:nth-child(2) {
    width: 80px;
    top: 20px;
    right: 10px;
    transform: rotate(-15deg)
}

.hm-pg__stroke:nth-child(3) {
    width: 70px;
    top: 40px;
    right: 5px;
    transform: rotate(-15deg)
}

.hm-pg__stroke:nth-child(4) {
    width: 90px;
    top: 60px;
    right: 15px;
    transform: rotate(-15deg)
}

.hm-pg__voice-sec {
    padding: 80px 20px;
    background: #fff;
    position: relative
}

.hm-pg__voice-sec::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' /%3E%3C/filter%3E%3Crect width='100' height='100' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none
}

.hm-pg__voice-contain {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 80px;
    align-items: start
}

.hm-pg__voice-main {
    position: relative
}

.hm-pg__voice-label {
    font-size: 16px;
    line-height: 1.4;
    color: #6E65F9;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 8px;
    display: block
}

.hm-pg__voice-hd {
    font-size: 62px;
    line-height: 1.15;
    color: #0B4760;
    margin: 0 0 40px;
    font-weight: 700
}

.hm-pg__voice-txt {
    font-size: 18px;
    line-height: 1.65;
    color: #2a2a2a;
    margin: 0 0 20px
}

.hm-pg__voice-aside {
    background: linear-gradient(323deg, #0B4760 0%, #6E65F9 100%);
    padding: 40px;
    border-radius: 12px;
    box-shadow: -1px 8px 44px 0 #0b47601f;
    position: sticky;
    top: 20px
}

.hm-pg__aside-hd {
    font-size: 24px;
    line-height: 1.4;
    color: #FEFEF3;
    margin: 0 0 20px;
    font-weight: 700
}

.hm-pg__aside-item {
    padding: 12px 0;
    border-bottom: 1px solid #fefef333
}

.hm-pg__aside-item:last-child {
    border-bottom: none
}

.hm-pg__aside-link {
    font-size: 18px;
    line-height: 1.4;
    color: #FEFEF3;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: gap .18s ease-out
}

.hm-pg__aside-link:hover {
    gap: 12px
}

.hm-pg__aside-arrow {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    transition: transform .15s ease
}

.hm-pg__aside-link:hover .hm-pg__aside-arrow {
    transform: translateX(4px)
}

.hm-pg__posts-sec {
    padding: 80px 20px;
    background: #f7f7f2
}

.hm-pg__posts-contain {
    max-width: 1280px;
    margin: 0 auto
}

.hm-pg__posts-hd {
    font-size: 62px;
    line-height: 1.15;
    color: #0B4760;
    margin: 0 0 40px;
    font-weight: 700;
    text-align: center
}

.hm-pg__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px
}

.hm-pg__card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    border: 3px solid #0B4760;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: transform .2s ease-out, box-shadow .2s ease-out;
    box-shadow: -1px 3px 4px 0 #0b47600f
}

.hm-pg__card:hover {
    transform: translateY(-4px);
    box-shadow: -1px 7px 20px 0 #0b47601a
}

.hm-pg__card-img-wrap {
    width: 100%;
    height: 240px;
    overflow: hidden;
    position: relative
}

.hm-pg__card-img-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(323deg, #0b47604d 0%, #6e65f94d 100%);
    pointer-events: none
}

.hm-pg__card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform .4s ease-out
}

.hm-pg__card:hover .hm-pg__card-img {
    transform: scale(1.05)
}

.hm-pg__card-body {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column
}

.hm-pg__card-tag {
    font-size: 16px;
    line-height: 1.4;
    color: #6E65F9;
    font-weight: 700;
    margin-bottom: 8px;
    display: inline-block
}

.hm-pg__card-title {
    font-size: 24px;
    line-height: 1.4;
    color: #0B4760;
    margin: 0 0 12px;
    font-weight: 700
}

.hm-pg__card-desc {
    font-size: 16px;
    line-height: 1.65;
    color: #4a4a4a;
    margin: 0 0 20px;
    flex-grow: 1
}

.hm-pg__card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 12px;
    border-top: 2px solid #f0f0eb
}

.hm-pg__card-author {
    font-size: 16px;
    line-height: 1.4;
    color: #2a2a2a;
    font-weight: 600
}

.hm-pg__card-date {
    font-size: 16px;
    line-height: 1.4;
    color: #6a6a6a
}

.hm-pg__topics-sec {
    padding: 80px 20px;
    background: #fff
}

.hm-pg__topics-contain {
    max-width: 1280px;
    margin: 0 auto
}

.hm-pg__topics-hd {
    font-size: 62px;
    line-height: 1.15;
    color: #0B4760;
    margin: 0 0 12px;
    font-weight: 700
}

.hm-pg__topics-subhd {
    font-size: 18px;
    line-height: 1.65;
    color: #4a4a4a;
    margin: 0 0 40px
}

.hm-pg__topics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px
}

.hm-pg__topic-card {
    background: #f7f7f2;
    padding: 20px;
    border-radius: 6px;
    border: 2px solid transparent;
    transition: border-color .15s ease, background .15s ease;
    cursor: pointer
}

.hm-pg__topic-card:hover {
    border-color: #6E65F9;
    background: #fff
}

.hm-pg__topic-icon-wrap {
    width: 48px;
    height: 48px;
    margin-bottom: 12px;
    position: relative
}

.hm-pg__topic-icon {
    width: 100%;
    height: 100%;
    transition: opacity .2s ease
}

.hm-pg__topic-icon-alt {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity .2s ease
}

.hm-pg__topic-card:hover .hm-pg__topic-icon {
    opacity: 0
}

.hm-pg__topic-card:hover .hm-pg__topic-icon-alt {
    opacity: 1
}

.hm-pg__topic-name {
    font-size: 18px;
    line-height: 1.4;
    color: #0B4760;
    margin: 0 0 8px;
    font-weight: 700
}

.hm-pg__topic-count {
    font-size: 16px;
    line-height: 1.4;
    color: #6a6a6a
}

.hm-pg__sequence-sec {
    padding: 80px 20px;
    background: linear-gradient(323deg, #0B4760 0%, #6E65F9 100%);
    position: relative
}

.hm-pg__sequence-contain {
    max-width: 1280px;
    margin: 0 auto
}

.hm-pg__sequence-hd {
    font-size: 62px;
    line-height: 1.15;
    color: #FEFEF3;
    margin: 0 0 40px;
    font-weight: 700;
    text-align: center
}

.hm-pg__sequence-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px
}

.hm-pg__sequence-item {
    background: #fefef31a;
    padding: 40px;
    border-radius: 12px;
    border: 3px solid #fefef34d;
    transition: border-color .18s ease-out, background .18s ease-out;
    position: relative
}

.hm-pg__sequence-item:hover {
    background: #fefef326;
    border-color: #FEFEF3 !important
}

.hm-pg__sequence-num {
    font-size: 72px;
    line-height: 1;
    color: #fefef34d;
    margin: 0 0 20px;
    font-weight: 700
}

.hm-pg__sequence-title {
    font-size: 24px;
    line-height: 1.4;
    color: #FEFEF3;
    margin: 0 0 12px;
    font-weight: 700
}

.hm-pg__sequence-desc {
    font-size: 16px;
    line-height: 1.65;
    color: #fefef3e6;
    margin: 0
}

.hm-pg__habit-sec {
    padding: 80px 20px;
    background: #f7f7f2
}

.hm-pg__habit-contain {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center
}

.hm-pg__habit-img-wrap {
    width: 100%;
    height: 480px;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: -1px 8px 44px 0 #6e65f91f;
    position: relative
}

.hm-pg__habit-img-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(323deg, #0b476033 0%, #6e65f933 100%);
    pointer-events: none
}

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

.hm-pg__habit-txt-wrap {
    position: relative
}

.hm-pg__habit-label {
    font-size: 16px;
    line-height: 1.4;
    color: #6E65F9;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 8px;
    display: block
}

.hm-pg__habit-hd {
    font-size: 62px;
    line-height: 1.15;
    color: #0B4760;
    margin: 0 0 20px;
    font-weight: 700
}

.hm-pg__habit-txt {
    font-size: 18px;
    line-height: 1.65;
    color: #2a2a2a;
    margin: 0 0 20px
}

.hm-pg__scale-sec {
    padding: 80px 20px;
    background: #fff
}

.hm-pg__scale-contain {
    max-width: 1280px;
    margin: 0 auto;
    text-align: center
}

.hm-pg__scale-hd {
    font-size: 62px;
    line-height: 1.15;
    color: #0B4760;
    margin: 0 0 40px;
    font-weight: 700
}

.hm-pg__metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px
}

.hm-pg__metric {
    padding: 40px 20px;
    background: #f7f7f2;
    border-radius: 12px;
    border: 3px solid #6E65F9;
    position: relative;
    overflow: hidden
}

.hm-pg__metric::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, #6e65f91a, transparent);
    transition: left .5s ease
}

.hm-pg__metric:hover::before {
    left: 100%
}

.hm-pg__metric-val {
    font-size: 72px;
    line-height: 1;
    color: #6E65F9;
    margin: 0 0 12px;
    font-weight: 700
}

.hm-pg__metric-label {
    font-size: 18px;
    line-height: 1.4;
    color: #0B4760;
    margin: 0;
    font-weight: 600
}

@media (max-width: 1024px) {
    .hm-pg__title-area {
        padding: 40px 20px 20px
    }

    .hm-pg__title-frame {
        padding: 20px
    }

    .hm-pg__voice-contain {
        grid-template-columns: 1fr;
        gap: 40px
    }

    .hm-pg__voice-aside {
        position: static
    }

    .hm-pg__voice-hd,
    .hm-pg__posts-hd,
    .hm-pg__topics-hd,
    .hm-pg__sequence-hd,
    .hm-pg__habit-hd,
    .hm-pg__scale-hd {
        font-size: 62px
    }

    .hm-pg__grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .hm-pg__topics-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .hm-pg__sequence-list {
        grid-template-columns: 1fr
    }

    .hm-pg__habit-contain {
        grid-template-columns: 1fr;
        gap: 40px
    }

    .hm-pg__metrics {
        grid-template-columns: 1fr
    }
}

@media (max-width: 768px) {
    .hm-pg__voice-hd,
    .hm-pg__posts-hd,
    .hm-pg__topics-hd,
    .hm-pg__sequence-hd,
    .hm-pg__habit-hd,
    .hm-pg__scale-hd {
        font-size: 62px
    }

    .hm-pg__grid {
        grid-template-columns: 1fr
    }

    .hm-pg__topics-grid {
        grid-template-columns: 1fr
    }
}

@media (max-width: 640px) {
    .hm-pg__title-area {
        padding: 20px 12px 12px
    }

    .hm-pg__title-frame {
        padding: 12px
    }

    .hm-pg__decor-strokes {
        width: 80px;
        height: 60px;
        bottom: 20px;
        right: 20px
    }

    .hm-pg__stroke {
        height: 2px
    }

    .hm-pg__stroke:nth-child(1) {
        width: 40px
    }

    .hm-pg__stroke:nth-child(2) {
        width: 60px;
        top: 15px
    }

    .hm-pg__stroke:nth-child(3) {
        width: 50px;
        top: 30px
    }

    .hm-pg__stroke:nth-child(4) {
        width: 70px;
        top: 45px
    }

    .hm-pg__voice-sec,
    .hm-pg__posts-sec,
    .hm-pg__topics-sec,
    .hm-pg__sequence-sec,
    .hm-pg__habit-sec,
    .hm-pg__scale-sec {
        padding: 40px 12px
    }

    .hm-pg__voice-hd,
    .hm-pg__posts-hd,
    .hm-pg__topics-hd,
    .hm-pg__sequence-hd,
    .hm-pg__habit-hd,
    .hm-pg__scale-hd {
        font-size: 62px;
        margin-bottom: 20px
    }

    .hm-pg__voice-aside {
        padding: 20px
    }

    .hm-pg__grid {
        gap: 20px
    }

    .hm-pg__card-body {
        padding: 12px
    }

    .hm-pg__sequence-item {
        padding: 20px
    }

    .hm-pg__habit-img-wrap {
        height: 320px
    }

    .hm-pg__metrics {
        gap: 20px
    }

    .hm-pg__metric {
        padding: 20px 12px
    }
}

.aut-pg {
    background: #FEFEF3;
    color: #0B4760;
    overflow-x: clip
}

.aut-pg .intro-vis {
    max-width: 1280px;
    margin: 0 auto;
    padding: 80px 20px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    position: relative
}

.aut-pg .intro-vis::before {
    content: '"';
    position: absolute;
    top: 40px;
    right: 20px;
    font-size: 320px;
    line-height: 1;
    color: #6e65f914;
    font-weight: 700;
    pointer-events: none;
    z-index: 1
}

.aut-pg .vis-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: start;
    position: relative;
    z-index: 2
}

.aut-pg .img-holder {
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #6E65F9;
    box-shadow: -1px 8px 44px 0 #6e65f91f
}

.aut-pg .img-holder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center
}

.aut-pg .txt-zone {
    padding: 20px 0
}

.aut-pg .txt-zone h1 {
    font-size: 72px;
    line-height: 1.15;
    margin: 0 0 20px;
    color: #0B4760;
    font-weight: 700
}

.aut-pg .txt-zone .role-tag {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(323deg, #0B4760, #6E65F9);
    color: #FEFEF3;
    border-radius: 40px;
    font-size: 16px;
    line-height: 1.4;
    font-weight: 600;
    margin: 0 0 40px
}

.aut-pg .empty-margin {
    width: 100%;
    height: 80px
}

@media (max-width: 1024px) {
    .aut-pg .intro-vis::before {
        font-size: 240px;
        top: 20px;
        right: 10px
    }

    .aut-pg .vis-grid {
        grid-template-columns: 1fr;
        gap: 40px
    }

    .aut-pg .img-holder {
        max-width: 320px;
        margin: 0 auto
    }

    .aut-pg .txt-zone h1 {
        font-size: 62px
    }
}

@media (max-width: 640px) {
    .aut-pg .intro-vis {
        padding: 40px 20px
    }

    .aut-pg .intro-vis::before {
        font-size: 180px
    }

    .aut-pg .txt-zone h1 {
        font-size: 48px
    }

    .aut-pg .img-holder {
        max-width: 240px
    }
}

.aut-pg .story-sect {
    background: linear-gradient(323deg, #0B4760, #6E65F9);
    position: relative;
    overflow: hidden
}

.aut-pg .story-sect::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url(./web_visuals/asset-3-4-2026_05_18.jpg);
    background-size: cover;
    background-position: center;
    opacity: .15;
    pointer-events: none;
    z-index: 1
}

.aut-pg .story-sect::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(323deg, #0b4760d9, #6e65f9d9);
    pointer-events: none;
    z-index: 2;
    animation: flicker-bg 8s ease-in-out infinite
}

@keyframes flicker-bg {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: .92
    }
}

.aut-pg .story-wrap {
    max-width: 1280px;
    margin: 0 auto;
    padding: 80px 20px;
    position: relative;
    z-index: 3
}

.aut-pg .divider-up {
    width: 100%;
    height: 60px;
    position: relative;
    overflow: hidden
}

.aut-pg .divider-up svg {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 60px;
    fill: #FEFEF3
}

.aut-pg .content-layout {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    align-items: start
}

.aut-pg .col-left,
.aut-pg .col-right {
    display: flex;
    flex-direction: column;
    gap: 40px
}

.aut-pg .col-center {
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding-top: 40px
}

.aut-pg .info-card {
    background: #fefef3f2;
    border-radius: 12px;
    padding: 40px;
    border: 3px dashed #6E65F9;
    box-shadow: -1px 7px 20px 0 #6e65f91a;
    transition: transform .5s ease-out, box-shadow .5s ease-out
}

.aut-pg .info-card:hover {
    transform: translateY(-4px);
    box-shadow: -1px 8px 44px 0 #6e65f91f
}

.aut-pg .info-card h2 {
    font-size: 24px;
    line-height: 1.4;
    margin: 0 0 20px;
    color: #0B4760;
    font-weight: 700
}

.aut-pg .info-card .lead-label {
    font-size: 16px;
    line-height: 1.4;
    font-weight: 700;
    color: #6E65F9;
    margin: 0 0 8px;
    display: block
}

.aut-pg .info-card p {
    font-size: 16px;
    line-height: 1.65;
    margin: 0 0 20px;
    color: #0B4760
}

.aut-pg .info-card p:last-child {
    margin: 0
}

.aut-pg .img-frame {
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: 12px;
    overflow: hidden;
    border: 4px solid #FEFEF3;
    box-shadow: -1px 8px 44px 0 #6e65f91f
}

.aut-pg .img-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center
}

.aut-pg .stat-box {
    background: #fefef3f2;
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    border: 2px solid #6E65F9;
    box-shadow: inset 0 2px 8px #6e65f914;
    transition: border-width .5s ease-out;
    position: relative
}

.aut-pg .stat-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: #6E65F9;
    transform: translateX(-50%);
    transition: width .5s ease-out
}

.aut-pg .stat-box:hover::before {
    width: 100%
}

.aut-pg .stat-box .num {
    font-size: 62px;
    line-height: 1.15;
    font-weight: 700;
    color: #6E65F9;
    margin: 0 0 12px;
    display: block
}

.aut-pg .stat-box .desc {
    font-size: 18px;
    line-height: 1.4;
    color: #0B4760;
    margin: 0
}

.aut-pg .quote-card {
    background: #fefef3f2;
    border-radius: 12px;
    padding: 40px;
    border-left: 8px solid #6E65F9;
    border-right: 2px solid #6e65f94d;
    border-top: 2px solid #6e65f94d;
    border-bottom: 2px solid #6e65f94d;
    box-shadow: -1px 7px 20px 0 #6e65f91a;
    position: relative
}

.aut-pg .quote-card::after {
    content: '→';
    position: absolute;
    bottom: 20px;
    right: 20px;
    font-size: 24px;
    color: #6E65F9;
    font-weight: 700
}

.aut-pg .quote-card p {
    font-size: 18px;
    line-height: 1.65;
    margin: 0;
    color: #0B4760;
    font-style: italic
}

.aut-pg .link-wrap {
    margin-top: 20px
}

.aut-pg .link-inline {
    color: #6E65F9;
    text-decoration: none;
    font-weight: 600;
    position: relative;
    display: inline-block;
    transition: color .4s ease-out
}

.aut-pg .link-inline::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: #6E65F9;
    transform: translateX(-50%);
    transition: width .5s ease-out
}

.aut-pg .link-inline:hover {
    color: #0B4760
}

.aut-pg .link-inline:hover::after {
    width: 100%
}

.aut-pg .profile-mini {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #fefef3f2;
    border-radius: 12px;
    padding: 20px;
    border: 2px solid #6e65f94d
}

.aut-pg .profile-mini .avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #6E65F9;
    flex-shrink: 0
}

.aut-pg .profile-mini .avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center
}

.aut-pg .profile-mini .txt {
    flex: 1
}

.aut-pg .profile-mini .name {
    font-size: 18px;
    line-height: 1.4;
    font-weight: 700;
    color: #0B4760;
    margin: 0 0 4px
}

.aut-pg .profile-mini .role {
    font-size: 16px;
    line-height: 1.4;
    color: #6E65F9;
    margin: 0
}

@media (max-width: 1024px) {
    .aut-pg .content-layout {
        grid-template-columns: 1fr;
        gap: 40px
    }

    .aut-pg .col-center {
        padding-top: 0
    }

    .aut-pg .story-wrap {
        padding: 60px 20px
    }
}

@media (max-width: 640px) {

    .aut-pg .info-card,
    .aut-pg .stat-box,
    .aut-pg .quote-card {
        padding: 20px
    }

    .aut-pg .stat-box .num {
        font-size: 48px
    }

    .aut-pg .story-wrap {
        padding: 40px 20px
    }
}

.blg {
    background: #FEFEF3;
    color: #0B4760;
    overflow-x: clip
}

.blg__ttl-frm {
    max-width: 1280px;
    margin: 0 auto;
    padding: 80px 20px 40px;
    position: relative
}

.blg__ttl-frm::before,
.blg__ttl-frm::after {
    content: '';
    position: absolute;
    border: 1px solid #6e65f933;
    pointer-events: none
}

.blg__ttl-frm::before {
    top: 40px;
    left: 12px;
    right: 12px;
    bottom: 12px
}

.blg__ttl-frm::after {
    top: 12px;
    left: 40px;
    right: 40px;
    bottom: 40px
}

.blg__ttl-grid {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 40px;
    align-items: start;
    padding: 80px 40px 20px
}

.blg__ttl-txt {
    padding-top: 40px
}

.blg__num-acc {
    font-size: 72px;
    line-height: 1.15;
    color: #6E65F9;
    font-weight: 700;
    margin: 0 0 12px
}

.blg__ttl-h {
    font-size: 62px;
    line-height: 1.15;
    font-weight: 700;
    margin: 0 0 20px;
    color: #0B4760
}

.blg__ttl-desc {
    font-size: 18px;
    line-height: 1.65;
    margin: 0;
    color: #0b4760d9
}

.blg__ttl-img-wrap {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: -1px 7px 20px 0 #6e65f91a -1px 8px 44px 0 #6e65f91f;
    position: relative
}

.blg__ttl-img-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(323deg, #0b47604d, #6e65f933);
    pointer-events: none
}

.blg__ttl-img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
    filter: saturate(0.7)
}

.blg__posts-zone {
    max-width: 1280px;
    margin: 0 auto;
    padding: 80px 20px;
    position: relative
}

.blg__posts-zone::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 2px;
    background: repeating-linear-gradient(90deg, transparent, transparent 8px, #6e65f94d 8px, #6e65f94d 10px, transparent 10px, transparent 12px, #6e65f94d 12px, #6e65f94d 14px, transparent 14px, transparent 22px)
}

.blg__posts-h {
    font-size: 62px;
    line-height: 1.15;
    font-weight: 700;
    margin: 0 0 40px;
    color: #0B4760
}

.blg__posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px
}

.blg__post-crd {
    background: #FEFEF3;
    border: 3px solid #6E65F9;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform .5s ease-out, box-shadow .5s ease-out, border-color .5s ease-out;
    position: relative
}

.blg__post-crd::before {
    content: '';
    position: absolute;
    inset: -3px;
    border: 3px solid transparent;
    border-radius: 12px;
    opacity: 0;
    transition: opacity .5s ease-out;
    pointer-events: none;
    background: linear-gradient(323deg, #0B4760, #6E65F9) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude
}

.blg__post-crd:hover::before {
    opacity: 1
}

.blg__post-crd:hover {
    transform: translateY(-8px);
    box-shadow: -1px 8px 44px 0 #6e65f91f;
    border-color: transparent
}

.blg__post-img-wrap {
    position: relative;
    overflow: hidden;
    height: 240px
}

.blg__post-img-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(323deg, #0b476040, #6e65f926);
    pointer-events: none;
    transition: opacity .4s ease-out
}

.blg__post-crd:hover .blg__post-img-wrap::after {
    opacity: .7
}

.blg__post-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: saturate(0.75);
    transition: filter .5s ease-out, transform .5s ease-out
}

.blg__post-crd:hover .blg__post-img {
    filter: saturate(1);
    transform: scale(1.05)
}

.blg__post-cnt {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1
}

.blg__post-tag {
    display: inline-block;
    font-size: 16px;
    line-height: 1.4;
    color: #6E65F9;
    font-weight: 700;
    margin: 0 0 8px;
    text-transform: uppercase;
    letter-spacing: .5px
}

.blg__post-h {
    font-size: 24px;
    line-height: 1.4;
    font-weight: 700;
    margin: 0 0 8px;
    color: #0B4760
}

.blg__post-h a {
    color: inherit;
    text-decoration: none;
    transition: color .15s ease-out
}

.blg__post-h a:hover {
    color: #6E65F9
}

.blg__post-sub {
    font-size: 16px;
    line-height: 1.65;
    margin: 0 0 12px;
    color: #0b4760bf;
    font-weight: 600
}

.blg__post-desc {
    font-size: 16px;
    line-height: 1.65;
    margin: 0 0 20px;
    color: #0b4760d9;
    flex-grow: 1
}

.blg__post-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 12px;
    border-top: 1px solid #6e65f933;
    margin-top: auto
}

.blg__post-auth {
    font-size: 16px;
    line-height: 1.4;
    color: #0B4760;
    font-weight: 600
}

.blg__post-date {
    font-size: 16px;
    line-height: 1.4;
    color: #0b4760a6
}

.blg__post-stats {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-top: 8px
}

.blg__post-stat {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 16px;
    line-height: 1.4;
    color: #0b4760a6
}

.blg__post-stat svg {
    width: 18px;
    height: 18px;
    fill: currentColor
}

.blg__insight-zone {
    background: linear-gradient(0deg, #FEFEF3 0%, #6e65f914 100%);
    padding: 80px 20px;
    position: relative
}

.blg__insight-wrap {
    max-width: 1280px;
    margin: 0 auto
}

.blg__insight-h {
    font-size: 62px;
    line-height: 1.15;
    font-weight: 700;
    margin: 0 0 40px;
    color: #0B4760;
    text-align: center
}

.blg__insight-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px
}

.blg__insight-item {
    background: #fefef3e6;
    border: 2px dashed #6e65f966;
    border-radius: 12px;
    padding: 40px;
    transition: backdrop-filter .5s ease-out, background .5s ease-out, border-color .5s ease-out
}

.blg__insight-item:hover {
    backdrop-filter: blur(12px);
    background: #fefef3b3;
    border-color: #6e65f9b3
}

.blg__insight-label {
    font-size: 16px;
    line-height: 1.4;
    font-weight: 700;
    color: #6E65F9;
    margin: 0 0 8px;
    text-transform: uppercase
}

.blg__insight-txt {
    font-size: 18px;
    line-height: 1.65;
    margin: 0;
    color: #0b4760e6
}

.blg__opinion-zone {
    max-width: 1280px;
    margin: 0 auto;
    padding: 80px 20px
}

.blg__opinion-inner {
    background: #FEFEF3;
    border: 4px solid #0B4760;
    border-radius: 12px;
    padding: 40px;
    position: relative;
    box-shadow: -1px 7px 20px 0 #0b47601a;
    transition: box-shadow .5s ease-out, transform .5s ease-out
}

.blg__opinion-inner:hover {
    box-shadow: -1px 8px 44px 0 #0b47601f;
    transform: translateY(-4px)
}

.blg__opinion-mini {
    background: linear-gradient(323deg, #0B4760, #6E65F9);
    border-radius: 6px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: -1px 3px 4px 0 #6e65f90f
}

.blg__opinion-mini-txt {
    font-size: 18px;
    line-height: 1.65;
    margin: 0;
    color: #FEFEF3;
    font-weight: 600
}

.blg__opinion-h {
    font-size: 62px;
    line-height: 1.15;
    font-weight: 700;
    margin: 0 0 20px;
    color: #0B4760
}

.blg__opinion-p {
    font-size: 18px;
    line-height: 1.65;
    margin: 0 0 20px;
    color: #0b4760d9
}

.blg__opinion-p:last-child {
    margin-bottom: 0
}

.blg__perspective-zone {
    background: #FEFEF3;
    padding: 80px 20px;
    position: relative;
    overflow: hidden
}

.blg__perspective-zone::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, #6e65f926, transparent 70%);
    border-radius: 40px;
    animation: blg-migrate 18s ease-in-out infinite;
    pointer-events: none
}

.blg__perspective-zone::after {
    content: '';
    position: absolute;
    bottom: -40%;
    right: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #0b47601f, transparent 70%);
    border-radius: 40px;
    animation: blg-migrate-alt 20s ease-in-out infinite;
    pointer-events: none
}

@keyframes blg-migrate {

    0%,
    100% {
        transform: translate(0, 0)
    }

    50% {
        transform: translate(120px, 80px)
    }
}

@keyframes blg-migrate-alt {

    0%,
    100% {
        transform: translate(0, 0)
    }

    50% {
        transform: translate(-100px, -60px)
    }
}

.blg__perspective-wrap {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 1
}

.blg__perspective-h {
    font-size: 62px;
    line-height: 1.15;
    font-weight: 700;
    margin: 0 0 40px;
    color: #0B4760
}

.blg__perspective-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px
}

.blg__perspective-main {
    display: flex;
    flex-direction: column;
    gap: 20px
}

.blg__perspective-label {
    font-size: 16px;
    line-height: 1.4;
    font-weight: 700;
    color: #6E65F9;
    margin: 0 0 4px
}

.blg__perspective-p {
    font-size: 18px;
    line-height: 1.65;
    margin: 0;
    color: #0b4760d9
}

.blg__perspective-side {
    background: #fefef399;
    border: 3px solid #6E65F9;
    border-radius: 12px;
    padding: 40px;
    box-shadow: -1px 3px 4px 0 #6e65f90f
}

.blg__perspective-side-h {
    font-size: 24px;
    line-height: 1.4;
    font-weight: 700;
    margin: 0 0 12px;
    color: #0B4760
}

.blg__perspective-side-txt {
    font-size: 16px;
    line-height: 1.65;
    margin: 0;
    color: #0b4760d9
}

.blg__engage-zone {
    max-width: 1280px;
    margin: 0 auto;
    padding: 80px 20px
}

.blg__engage-h {
    font-size: 62px;
    line-height: 1.15;
    font-weight: 700;
    margin: 0 0 40px;
    color: #0B4760;
    text-align: center
}

.blg__engage-cols {
    display: flex;
    gap: 40px
}

.blg__engage-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px
}

.blg__engage-item {
    background: #FEFEF3;
    border: 3px solid transparent;
    border-radius: 6px;
    padding: 20px;
    transition: border-color .15s ease-out, background .15s ease-out;
    cursor: pointer
}

.blg__engage-item:hover {
    border-color: #6E65F9;
    background: #6e65f908
}

.blg__engage-item-h {
    font-size: 18px;
    line-height: 1.4;
    font-weight: 700;
    margin: 0 0 8px;
    color: #0B4760;
    position: relative;
    padding-right: 24px
}

.blg__engage-item-h::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid #6E65F9;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    opacity: 0;
    transition: opacity .2s ease-out, right .2s ease-out
}

.blg__engage-item:hover .blg__engage-item-h::after {
    opacity: 1;
    right: 4px
}

.blg__engage-item-txt {
    font-size: 16px;
    line-height: 1.65;
    margin: 0;
    color: #0b4760d9
}

@media (max-width: 1024px) {
    .blg__ttl-grid {
        grid-template-columns: 1fr;
        gap: 40px
    }

    .blg__ttl-img-wrap {
        max-width: 480px;
        margin: 0 auto
    }

    .blg__posts-grid {
        grid-template-columns: 1fr 1fr
    }

    .blg__insight-grid {
        grid-template-columns: 1fr
    }

    .blg__perspective-layout {
        grid-template-columns: 1fr
    }

    .blg__engage-cols {
        flex-direction: column
    }
}

@media (max-width: 768px) {
    .blg__ttl-frm {
        padding: 40px 12px 20px
    }

    .blg__ttl-grid {
        padding: 40px 20px 12px
    }

    .blg__num-acc {
        font-size: 62px
    }

    .blg__ttl-h {
        font-size: 24px
    }

    .blg__ttl-desc {
        font-size: 16px
    }

    .blg__posts-grid {
        grid-template-columns: 1fr;
        gap: 20px
    }

    .blg__posts-h,
    .blg__insight-h,
    .blg__opinion-h,
    .blg__perspective-h,
    .blg__engage-h {
        font-size: 24px
    }

    .blg__posts-zone,
    .blg__insight-zone,
    .blg__opinion-zone,
    .blg__perspective-zone,
    .blg__engage-zone {
        padding: 40px 12px
    }

    .blg__opinion-inner {
        padding: 20px
    }

    .blg__perspective-side {
        padding: 20px
    }
}

@media (max-width: 640px) {
    .blg__ttl-img {
        height: 280px
    }

    .blg__post-img-wrap {
        height: 200px
    }

    .blg__insight-item {
        padding: 20px
    }
}

.blg ::selection {
    background: #6E65F9;
    color: #FEFEF3
}

.blg input::placeholder,
.blg textarea::placeholder {
    color: #0b476073
}

.blg input:focus,
.blg textarea:focus {
    outline: 2px solid #6E65F9;
    outline-offset: 2px;
    border-color: #6E65F9 !important
}

.confirm-page {
    background: linear-gradient(323deg, #0B4760 0%, #6E65F9 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px
}

.confirm-page .result-container {
    background: #FEFEF3;
    max-width: 640px;
    width: 100%;
    padding: 80px 40px;
    border-radius: 12px;
    box-shadow: -1px 8px 44px 0 #6e65f91f;
    text-align: center
}

.confirm-page .status-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 40px;
    background: linear-gradient(323deg, #0B4760 0%, #6E65F9 100%);
    border-radius: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative
}

.confirm-page .status-icon::before {
    content: '';
    width: 32px;
    height: 16px;
    border-left: 4px solid #FEFEF3;
    border-bottom: 4px solid #FEFEF3;
    transform: rotate(-45deg) translateY(-4px)
}

.confirm-page .result-title {
    font-size: 62px;
    line-height: 1.15;
    color: #0B4760;
    margin: 0 0 20px
}

.confirm-page .result-desc {
    font-size: 18px;
    line-height: 1.65;
    color: #0B4760;
    margin: 0 0 40px;
    opacity: .85
}

.confirm-page .action-group {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap
}

.confirm-page .btn-primary {
    background: linear-gradient(323deg, #0B4760 0%, #6E65F9 100%);
    color: #FEFEF3;
    padding: 12px 40px;
    border: 3px solid transparent;
    border-radius: 6px;
    font-size: 16px;
    text-decoration: none;
    display: inline-block;
    transition: transform .15s ease-out, box-shadow .15s ease-out;
    box-shadow: -1px 3px 4px 0 #6e65f90f
}

.confirm-page .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: -1px 7px 20px 0 #6e65f91a
}

.confirm-page .btn-primary:active {
    transform: translateY(0);
    box-shadow: inset -1px 3px 4px 0 #0b476026
}

.confirm-page .btn-secondary {
    background: transparent;
    color: #0B4760;
    padding: 12px 40px;
    border: 3px solid #6E65F9;
    border-radius: 6px;
    font-size: 16px;
    text-decoration: none;
    display: inline-block;
    transition: border-color .2s ease, background .2s ease
}

.confirm-page .btn-secondary:hover {
    background: #6e65f914;
    border-color: #0B4760
}

.confirm-page .btn-secondary:active {
    box-shadow: inset -1px 3px 4px 0 #6e65f91f
}

.confirm-page .info-note {
    margin: 40px 0 0;
    padding: 20px;
    background: #6e65f90f;
    border-radius: 6px;
    border-left: 4px solid #6E65F9
}

.confirm-page .info-note p {
    font-size: 16px;
    line-height: 1.65;
    color: #0B4760;
    margin: 0
}

@media (max-width: 640px) {
    .confirm-page .result-container {
        padding: 40px 20px
    }

    .confirm-page .result-title {
        font-size: 24px
    }

    .confirm-page .status-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 20px
    }

    .confirm-page .status-icon::before {
        width: 24px;
        height: 12px;
        border-left: 3px solid #FEFEF3;
        border-bottom: 3px solid #FEFEF3
    }

    .confirm-page .action-group {
        flex-direction: column
    }

    .confirm-page .btn-primary,
    .confirm-page .btn-secondary {
        width: 100%
    }
}