html {
    box-sizing: border-box;
    scroll-behavior: auto
}

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

body {
    margin: 0;
    font-family: 'Oxygen', sans-serif;
    font-size: 15px;
    line-height: 1.55;
    color: #2a2a2a;
    background: #fff
}

.top-bar {
    background: linear-gradient(135deg, #FCBA1C 0%, #f5d97a 100%);
    border-bottom: 1px solid #870e001f;
    padding: 12px 0
}

.top-bar-pod {
    max-width: 1024px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px
}

.brand-lockup {
    display: flex;
    align-items: center;
    gap: 16px
}

.brand-mark {
    width: 48px;
    height: 48px;
    border: 1px solid #870e0040;
    border-radius: 3px;
    background: #fff;
    padding: 4px;
    box-shadow: -1px 3px 2px -1px #870e0014
}

.brand-mark img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block
}

.brand-name {
    font-size: 30px;
    font-weight: 700;
    color: #870E00;
    letter-spacing: -.02em;
    line-height: 1.2
}

.contact-quick {
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #870E00;
    text-decoration: none;
    transition: opacity .5s ease-in-out
}

.contact-item:hover {
    opacity: .7
}

.contact-item:focus {
    outline: 2px solid #870E00;
    outline-offset: 4px;
    border-radius: 3px
}

.contact-icon {
    width: 18px;
    height: 18px;
    fill: #870E00
}

.nav-bar {
    background: #fff;
    border-bottom: 3px solid #870E00;
    box-shadow: -1px 5px 25px -1px #870e0014
}

.nav-pod {
    max-width: 1024px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 48px
}

.nav-primary {
    display: flex;
    gap: 4px;
    margin: 0;
    padding: 0;
    list-style: none;
    flex-wrap: wrap
}

.nav-link {
    display: block;
    padding: 16px 20px;
    color: #2a2a2a;
    text-decoration: none;
    font-weight: 400;
    font-size: 15px;
    position: relative;
    transition: color .48s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-bottom: 3px solid transparent
}

.nav-link:hover {
    color: #870E00;
    border-bottom-color: #FCBA1C
}

.nav-link:focus {
    outline: 2px solid #FCBA1C;
    outline-offset: -2px;
    color: #870E00
}

.nav-item-with-sub {
    position: relative
}

.nav-item-with-sub:hover .sub-nav {
    opacity: 1;
    visibility: visible;
    transform: translateY(0)
}

.sub-nav {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    border: 1px solid #EDECEC;
    border-radius: 5px;
    box-shadow: -1px 12px 60px -1px #870e001a;
    min-width: 280px;
    padding: 8px 0;
    margin: 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity .52s ease-in-out, transform .52s ease-in-out, visibility .52s;
    z-index: 100
}

.sub-nav-link {
    display: block;
    padding: 12px 20px;
    color: #2a2a2a;
    text-decoration: none;
    font-size: 14px;
    transition: background .45s ease-in-out, color .45s ease-in-out
}

.sub-nav-link:hover {
    background: #fcba1c26;
    color: #870E00
}

.sub-nav-link:focus {
    outline: 2px solid #FCBA1C;
    outline-offset: -2px;
    background: #fcba1c26;
    color: #870E00
}

.site-footer {
    background: linear-gradient(to bottom, #EDECEC 0%, #f8f7f7 100%);
    border-top: 1px solid #870e0026;
    padding: 48px 0 32px;
    margin-top: 48px
}

.footer-pod {
    max-width: 1024px;
    margin: 0 auto;
    padding: 0 32px
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 48px;
    margin-bottom: 48px
}

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

.footer-about {
    font-size: 14px;
    line-height: 1.8;
    color: #4a4a4a
}

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

.footer-contact-line {
    display: flex;
    align-items: baseline;
    gap: 8px;
    font-size: 14px;
    color: #4a4a4a
}

.footer-contact-label {
    font-weight: 700;
    color: #870E00;
    min-width: 90px
}

.footer-contact-value {
    color: #2a2a2a
}

.footer-contact-value a {
    color: #870E00;
    text-decoration: none;
    transition: opacity .5s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.footer-contact-value a:hover {
    opacity: .7
}

.footer-contact-value a:focus {
    outline: 2px solid #870E00;
    outline-offset: 2px;
    border-radius: 3px
}

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

.footer-nav-title {
    font-size: 15px;
    font-weight: 700;
    color: #870E00;
    margin-bottom: 8px
}

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

.footer-nav-link {
    color: #4a4a4a;
    text-decoration: none;
    font-size: 14px;
    transition: color .55s ease-in-out;
    display: inline-block
}

.footer-nav-link:hover {
    color: #870E00
}

.footer-nav-link:focus {
    outline: 2px solid #870E00;
    outline-offset: 2px;
    border-radius: 3px;
    color: #870E00
}

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid #870e001f;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap
}

.footer-copyright {
    font-size: 14px;
    color: #6a6a6a
}

.footer-logo-mark {
    width: 42px;
    height: 42px;
    border: 1px solid #870e0033;
    border-radius: 3px;
    background: #fff;
    padding: 4px;
    box-shadow: -1px 3px 2px -1px #870e0014
}

.footer-logo-mark img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block
}

@media (max-width: 960px) {
    .top-bar-pod {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px
    }

    .contact-quick {
        gap: 16px
    }

    .nav-pod {
        flex-direction: column;
        gap: 0
    }

    .nav-primary {
        flex-direction: column;
        width: 100%;
        gap: 0
    }

    .nav-link {
        border-bottom: 1px solid #EDECEC
    }

    .sub-nav {
        position: static;
        opacity: 0;
        visibility: hidden;
        max-height: 0;
        overflow: hidden;
        transform: none;
        box-shadow: none;
        border: none;
        border-radius: 0;
        padding: 0;
        transition: max-height .5s ease-in-out, opacity .5s ease-in-out, padding .5s ease-in-out
    }

    .nav-item-with-sub:hover .sub-nav {
        opacity: 1;
        visibility: visible;
        max-height: 500px;
        padding: 8px 0 8px 20px
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start
    }
}

@media (max-width: 480px) {
    .top-bar-pod {
        padding: 0 16px
    }

    .nav-pod {
        padding: 0 16px
    }

    .footer-pod {
        padding: 0 16px
    }

    .brand-name {
        font-size: 24px
    }

    .contact-quick {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px
    }

    .footer-contact-line {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px
    }
}

.terms-wrapper {
    max-width: 1024px;
    margin: 0 auto;
    padding: 48px 16px
}

.terms-wrapper p {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 16px;
    color: #1d1d1d
}

.terms-wrapper p:last-child {
    margin-bottom: 0
}

.terms-wrapper ul,
.terms-wrapper ol {
    margin: 16px 0;
    padding-left: 32px
}

.terms-wrapper ul {
    list-style: none
}

.terms-wrapper ul li {
    position: relative;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 8px;
    color: #1d1d1d
}

.terms-wrapper ul li::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 12px;
    width: 6px;
    height: 6px;
    background: #870E00;
    border-radius: 50%
}

.terms-wrapper ol {
    counter-reset: policy-counter
}

.terms-wrapper ol li {
    position: relative;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 8px;
    color: #1d1d1d;
    counter-increment: policy-counter
}

.terms-wrapper ol li::marker {
    content: counter(policy-counter) '. ';
    color: #FCBA1C;
    font-weight: 600
}

.terms-wrapper em,
.terms-wrapper i {
    font-style: italic;
    color: #1d1d1d
}

.terms-wrapper a {
    color: #870E00;
    text-decoration: underline;
    transition: color .5s ease-in-out
}

.terms-wrapper a:hover {
    color: #FCBA1C
}

.terms-wrapper table {
    width: 100%;
    border-collapse: collapse;
    margin: 32px 0;
    background: #fff;
    box-shadow: -1px 3px 2px -1px #870e0014;
    border-radius: 3px;
    overflow: hidden
}

.terms-wrapper thead {
    background: #EDECEC
}

.terms-wrapper th {
    font-size: 14px;
    line-height: 1.55;
    font-weight: 600;
    text-align: left;
    padding: 16px;
    color: #1d1d1d;
    border-bottom: 2px solid #870E00
}

.terms-wrapper tbody tr {
    border-bottom: 1px solid #EDECEC;
    transition: background-color .45s ease-in-out
}

.terms-wrapper tbody tr:hover {
    background: #FCBA1C0D
}

.terms-wrapper tbody tr:last-child {
    border-bottom: none
}

.terms-wrapper td {
    font-size: 15px;
    line-height: 1.8;
    padding: 16px;
    color: #1d1d1d
}

.terms-wrapper hr {
    border: none;
    height: 1px;
    background: linear-gradient(to right, #EDECEC, #870E00, #EDECEC);
    margin: 32px 0
}

@media (max-width: 960px) {
    .terms-wrapper {
        padding: 32px 16px
    }

    .terms-wrapper table {
        font-size: 14px
    }

    .terms-wrapper th,
    .terms-wrapper td {
        padding: 12px
    }
}

@media (max-width: 480px) {
    .terms-wrapper {
        padding: 32px 12px
    }

    .terms-wrapper p,
    .terms-wrapper ul li,
    .terms-wrapper ol li,
    .terms-wrapper td {
        font-size: 14px
    }

    .terms-wrapper ul,
    .terms-wrapper ol {
        padding-left: 24px
    }

    .terms-wrapper table {
        display: block;
        overflow-x: auto
    }

    .terms-wrapper th,
    .terms-wrapper td {
        padding: 8px;
        font-size: 14px
    }
}

.analytics-dtl {
    background: #FFF;
    color: #1D1D1D;
    max-width: 1024px;
    margin: 0 auto;
    padding: 0
}

.analytics-dtl .reading-meta {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 32px 16px;
    background: linear-gradient(180deg, #870E00 0%, #FCBA1C 100%);
    margin: 0 0 48px
}

.analytics-dtl .tag-pill {
    display: inline-block;
    padding: 4px 12px;
    background: #fffffff2;
    color: #870E00;
    font-size: 14px;
    line-height: 1.2;
    border-radius: 32px;
    letter-spacing: .02em;
    box-shadow: -1px 3px 2px -1px #870e0014
}

.analytics-dtl .time-badge {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    padding: 4px 12px;
    background: #ffffffe6;
    color: #2D2D2D;
    font-size: 14px;
    line-height: 1.2;
    border-radius: 5px
}

.analytics-dtl .clock-icon {
    width: 16px;
    height: 16px;
    border: 2px solid #870E00;
    border-radius: 50%;
    position: relative
}

.analytics-dtl .clock-icon::before {
    content: '';
    position: absolute;
    width: 1px;
    height: 5px;
    background: #870E00;
    top: 2px;
    left: 50%;
    transform: translateX(-50%)
}

.analytics-dtl .clock-icon::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 1px;
    background: #870E00;
    top: 6px;
    left: 7px
}

.analytics-dtl .lead-composition {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 48px;
    padding: 0 16px 48px;
    align-items: center;
    margin: 0 0 48px
}

.analytics-dtl .img-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: -1px 5px 25px -1px #870e0014
}

.analytics-dtl .img-frame::before,
.analytics-dtl .img-frame::after {
    content: '';
    position: absolute;
    width: 32px;
    height: 32px;
    border: 3px solid #FCBA1C;
    z-index: 2
}

.analytics-dtl .img-frame::before {
    top: -8px;
    left: -8px;
    border-right: none;
    border-bottom: none
}

.analytics-dtl .img-frame::after {
    bottom: -8px;
    right: -8px;
    border-left: none;
    border-top: none
}

.analytics-dtl .img-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.7);
    opacity: 0;
    animation: fadeInImage .6s ease-in-out .2s forwards
}

@keyframes fadeInImage {
    from {
        opacity: 0;
        transform: scale(0.95)
    }

    to {
        opacity: 1;
        transform: scale(1)
    }
}

.analytics-dtl .intro-txt {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.analytics-dtl .primary-heading {
    font-size: 42px;
    line-height: 1.2;
    color: #0D0D0D;
    margin: 0;
    opacity: 0;
    animation: slideInTitle .55s cubic-bezier(0.25, 0.46, 0.45, 0.94) .3s forwards
}

@keyframes slideInTitle {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.95)
    }

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

.analytics-dtl .sub-heading {
    font-size: 15px;
    line-height: 1.55;
    color: #4A4A4A;
    margin: 0;
    opacity: 0;
    animation: slideInSubtitle .6s cubic-bezier(0.25, 0.46, 0.45, 0.94) .5s forwards
}

@keyframes slideInSubtitle {
    from {
        opacity: 0;
        transform: translateY(15px) scale(0.95)
    }

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

.analytics-dtl .full-article {
    padding: 48px 16px;
    background: #FAFBFB;
    position: relative;
    overflow: hidden
}

.analytics-dtl .full-article::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-circle(circle at 15% 25%, #fcba1c08 0%, transparent 45%), radial-circle(circle at 85% 75%, #870e0008 0%, transparent 45%);
    pointer-events: none;
    z-index: 0
}

.analytics-dtl .article-wrapper {
    max-width: 720px;
    margin: 0 auto;
    position: relative;
    z-index: 1
}

.analytics-dtl .article-wrapper p {
    font-size: 15px;
    line-height: 1.8;
    color: #2A2A2A;
    margin: 0 0 16px
}

.analytics-dtl .article-wrapper p:last-child {
    margin-bottom: 0
}

.analytics-dtl .article-wrapper h2 {
    font-size: 30px;
    line-height: 1.2;
    color: #0D0D0D;
    margin: 32px 0 16px;
    padding: 8px 16px;
    background: linear-gradient(90deg, #fcba1c26 0%, transparent 100%);
    border-radius: 3px;
    text-align: center
}

.analytics-dtl .article-wrapper h2:first-child {
    margin-top: 0
}

.analytics-dtl .article-wrapper h4 {
    font-size: 15px;
    line-height: 1.55;
    color: #1D1D1D;
    margin: 16px 0 8px;
    padding: 4px 12px;
    background: #870e0014;
    border-radius: 3px;
    text-align: center
}

.analytics-dtl .article-wrapper code {
    font-family: 'Courier New', monospace;
    font-size: 14px;
    line-height: 1.55;
    color: #870E00;
    background: #fcba1c1a;
    padding: 2px 8px;
    border-radius: 3px;
    border: 1px solid #fcba1c4d
}

.analytics-dtl .article-wrapper cite {
    display: block;
    font-size: 14px;
    line-height: 1.55;
    color: #5A5A5A;
    font-style: italic;
    margin: 16px 0;
    padding: 12px 16px;
    border-left: 4px solid #FCBA1C;
    background: #edecec80
}

.analytics-dtl .article-wrapper blockquote {
    font-size: 15px;
    line-height: 1.8;
    color: #3A3A3A;
    margin: 32px 0;
    padding: 16px 32px;
    background: #FFF;
    border-left: 6px solid #870E00;
    border-radius: 3px;
    box-shadow: -1px 3px 2px -1px #870e0014;
    position: relative
}

.analytics-dtl .article-wrapper blockquote::before {
    content: '"';
    position: absolute;
    top: -12px;
    left: 16px;
    font-size: 56px;
    line-height: 1;
    color: #fcba1c4d
}

.analytics-dtl .article-wrapper table {
    width: 100%;
    border-collapse: collapse;
    margin: 32px 0;
    font-size: 14px;
    line-height: 1.55;
    background: #FFF;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: -1px 3px 2px -1px #870e0014
}

.analytics-dtl .article-wrapper table tr {
    border-bottom: 1px dashed #D5D5D5
}

.analytics-dtl .article-wrapper table tr:last-child {
    border-bottom: none
}

.analytics-dtl .article-wrapper table td {
    padding: 12px 16px;
    color: #2A2A2A;
    vertical-align: top
}

.analytics-dtl .article-wrapper table td:first-child {
    font-weight: 600;
    color: #870E00;
    width: 35%
}

.analytics-dtl .article-wrapper table tfoot td {
    padding: 16px;
    background: #edecec80;
    font-size: 14px;
    color: #4A4A4A;
    font-style: italic;
    text-align: center
}

.analytics-dtl .diagonal-split {
    position: relative;
    padding: 48px 16px;
    overflow: hidden;
    background: #FFF
}

.analytics-dtl .diagonal-split::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #EDECEC 0%, #EDECEC 48%, #FFF 48%, #FFF 100%);
    z-index: 0;
    pointer-events: none
}

.analytics-dtl .timeline-container {
    max-width: 820px;
    margin: 0 auto;
    position: relative;
    z-index: 1
}

.analytics-dtl .timeline-title {
    font-size: 30px;
    line-height: 1.2;
    color: #0D0D0D;
    text-align: center;
    margin: 0 0 48px;
    padding: 8px 16px;
    background: #fcba1c1f;
    border-radius: 20px;
    display: inline-block;
    width: 100%
}

.analytics-dtl .period-group {
    margin: 0 0 32px;
    opacity: 0;
    animation: waveAppear .65s ease-in-out forwards
}

.analytics-dtl .period-group:nth-child(2) {
    animation-delay: .15s
}

.analytics-dtl .period-group:nth-child(3) {
    animation-delay: .3s
}

.analytics-dtl .period-group:nth-child(4) {
    animation-delay: .45s
}

@keyframes waveAppear {
    from {
        opacity: 0;
        transform: translateY(25px) scale(0.95)
    }

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

.analytics-dtl .period-label {
    font-size: 15px;
    line-height: 1.2;
    color: #FFF;
    background: #870E00;
    padding: 8px 16px;
    border-radius: 5px;
    display: inline-block;
    margin: 0 0 16px;
    letter-spacing: .03em;
    text-transform: uppercase;
    box-shadow: -1px 5px 25px -1px #870e0014
}

.analytics-dtl .event-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 0;
    margin: 0;
    list-style: none
}

.analytics-dtl .event-item {
    padding: 16px;
    background: #FFF;
    border-radius: 10px;
    border: 2px solid #EDECEC;
    position: relative;
    transition: border-color .5s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow .5s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.analytics-dtl .event-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: #D5D5D5
}

.analytics-dtl .event-item:last-child::after {
    display: none
}

.analytics-dtl .event-item:hover {
    border-color: #FCBA1C;
    box-shadow: -1px 5px 25px -1px #fcba1c14
}

.analytics-dtl .event-txt {
    font-size: 15px;
    line-height: 1.55;
    color: #2A2A2A;
    margin: 0
}

.analytics-dtl .three-col-feature {
    padding: 48px 16px;
    background: #FFF
}

.analytics-dtl .shared-top {
    text-align: center;
    margin: 0 0 32px;
    padding: 16px;
    background: linear-gradient(180deg, #870e000d 0%, transparent 100%);
    border-radius: 20px
}

.analytics-dtl .shared-top h3 {
    font-size: 30px;
    line-height: 1.2;
    color: #0D0D0D;
    margin: 0 0 8px
}

.analytics-dtl .shared-top p {
    font-size: 15px;
    line-height: 1.55;
    color: #4A4A4A;
    margin: 0
}

.analytics-dtl .col-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 920px;
    margin: 0 auto
}

.analytics-dtl .feature-card {
    padding: 32px 16px;
    background: #FAFBFB;
    border-radius: 10px;
    border: 3px dashed #D5D5D5;
    text-align: center;
    transition: border-color .55s ease-in-out, transform .55s ease-in-out;
    opacity: 0;
    animation: cardScale .6s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards
}

.analytics-dtl .feature-card:nth-child(1) {
    animation-delay: .1s
}

.analytics-dtl .feature-card:nth-child(2) {
    animation-delay: .25s
}

.analytics-dtl .feature-card:nth-child(3) {
    animation-delay: .4s
}

@keyframes cardScale {
    from {
        opacity: 0;
        transform: scale(0.95)
    }

    to {
        opacity: 1;
        transform: scale(1)
    }
}

.analytics-dtl .feature-card:hover {
    border-color: #FCBA1C;
    transform: translateY(-4px)
}

.analytics-dtl .card-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #870E00 0%, #FCBA1C 100%);
    border-radius: 50%;
    box-shadow: -1px 5px 25px -1px #870e0014
}

.analytics-dtl .card-icon svg {
    width: 28px;
    height: 28px;
    fill: #FFF
}

.analytics-dtl .card-heading {
    font-size: 15px;
    line-height: 1.2;
    color: #0D0D0D;
    margin: 0 0 8px;
    font-weight: 600
}

.analytics-dtl .card-desc {
    font-size: 14px;
    line-height: 1.55;
    color: #4A4A4A;
    margin: 0
}

.analytics-dtl .cta-zone {
    padding: 48px 16px;
    background: linear-gradient(180deg, #870E00 0%, #FCBA1C 100%);
    text-align: center;
    position: relative;
    overflow: hidden
}

.analytics-dtl .cta-zone::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 10%;
    width: 280px;
    height: 280px;
    background: #ffffff0a;
    border-radius: 50%;
    pointer-events: none
}

.analytics-dtl .cta-zone::after {
    content: '';
    position: absolute;
    bottom: 15%;
    right: 15%;
    width: 200px;
    height: 200px;
    background: #0000000d;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    pointer-events: none
}

.analytics-dtl .cta-content {
    max-width: 640px;
    margin: 0 auto;
    position: relative;
    z-index: 1
}

.analytics-dtl .cta-heading {
    font-size: 30px;
    line-height: 1.2;
    color: #FFF;
    margin: 0 0 16px
}

.analytics-dtl .cta-text {
    font-size: 15px;
    line-height: 1.55;
    color: #fffffff2;
    margin: 0 0 32px
}

.analytics-dtl .btn-primary {
    display: inline-block;
    padding: 12px 32px;
    background: #FFF;
    color: #870E00;
    font-size: 15px;
    line-height: 1.2;
    border: 2px solid transparent;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    cursor: pointer;
    transition: border-color .5s cubic-bezier(0.25, 0.46, 0.45, 0.94), background .5s cubic-bezier(0.25, 0.46, 0.45, 0.94), color .5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: -1px 5px 25px -1px #00000026
}

.analytics-dtl .btn-primary:hover {
    background: transparent;
    color: #FFF;
    border-color: #FFF
}

@media (max-width: 960px) {
    .analytics-dtl .lead-composition {
        grid-template-columns: 1fr;
        gap: 32px
    }

    .analytics-dtl .col-grid {
        grid-template-columns: 1fr;
        gap: 16px
    }

    .analytics-dtl .primary-heading {
        font-size: 30px
    }

    .analytics-dtl .timeline-title {
        font-size: 30px
    }

    .analytics-dtl .shared-top h3 {
        font-size: 30px
    }

    .analytics-dtl .cta-heading {
        font-size: 30px
    }
}

@media (max-width: 480px) {
    .analytics-dtl .reading-meta {
        flex-direction: column;
        gap: 8px
    }

    .analytics-dtl .primary-heading {
        font-size: 30px
    }

    .analytics-dtl .article-wrapper h2 {
        font-size: 30px
    }

    .analytics-dtl .timeline-title {
        font-size: 30px
    }

    .analytics-dtl .shared-top h3 {
        font-size: 30px
    }

    .analytics-dtl .cta-heading {
        font-size: 30px
    }

    .analytics-dtl .lead-composition {
        padding-bottom: 32px
    }
}

.anltcs {
    background: #fff;
    color: #1a0f0d;
    overflow-x: hidden
}

.anltcs .intro-split {
    display: flex;
    flex-direction: row;
    min-height: 520px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #870E00 0%, #FCBA1C 100%)
}

.anltcs .intro-left {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 48px;
    position: relative;
    background: repeating-linear-gradient(45deg, #fcba1c0d, #fcba1c0d 8px, transparent 8px, transparent 16px)
}

.anltcs .intro-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 48px;
    background: #fff;
    position: relative
}

.anltcs .diagonal-divider {
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    background: #ffffff4d;
    transform: translateX(-50%) rotate(8deg);
    transform-origin: center
}

.anltcs .intro-content {
    max-width: 480px;
    text-align: center
}

.anltcs .intro-num {
    font-size: 56px;
    line-height: 1.2;
    color: #fff;
    font-weight: 700;
    margin: 0 0 16px
}

.anltcs .intro-head {
    font-size: 42px;
    line-height: 1.2;
    color: #fff;
    margin: 0 0 16px;
    font-weight: 600
}

.anltcs .intro-desc {
    font-size: 15px;
    line-height: 1.55;
    color: #ffffffe6;
    margin: 0
}

.anltcs .intro-right-content {
    max-width: 480px;
    text-align: center
}

.anltcs .intro-right-head {
    font-size: 30px;
    line-height: 1.2;
    color: #870E00;
    margin: 0 0 16px;
    font-weight: 600
}

.anltcs .intro-right-text {
    font-size: 15px;
    line-height: 1.55;
    color: #2a2a2a;
    margin: 0
}

@media (max-width: 960px) {
    .anltcs .intro-split {
        flex-direction: column;
        min-height: auto
    }

    .anltcs .diagonal-divider {
        display: none
    }

    .anltcs .intro-left,
    .anltcs .intro-right {
        padding: 32px
    }

    .anltcs .intro-num {
        font-size: 42px
    }

    .anltcs .intro-head {
        font-size: 30px
    }

    .anltcs .intro-right-head {
        font-size: 30px
    }
}

@media (max-width: 480px) {

    .anltcs .intro-left,
    .anltcs .intro-right {
        padding: 32px 16px
    }

    .anltcs .intro-num {
        font-size: 30px
    }

    .anltcs .intro-head {
        font-size: 30px
    }

    .anltcs .intro-right-head {
        font-size: 30px
    }
}

.anltcs .posts-zone {
    padding: 48px 16px;
    max-width: 1024px;
    margin: 0 auto;
    position: relative
}

.anltcs .posts-header {
    text-align: center;
    margin: 0 0 48px;
    padding: 0 16px
}

.anltcs .posts-title {
    font-size: 42px;
    line-height: 1.2;
    color: #870E00;
    margin: 0 0 12px;
    font-weight: 600
}

.anltcs .posts-subtitle {
    font-size: 15px;
    line-height: 1.55;
    color: #4a4a4a;
    margin: 0
}

.anltcs .posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px
}

@media (max-width: 960px) {
    .anltcs .posts-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px
    }

    .anltcs .posts-title {
        font-size: 30px
    }
}

@media (max-width: 480px) {
    .anltcs .posts-grid {
        grid-template-columns: 1fr;
        gap: 32px
    }

    .anltcs .posts-zone {
        padding: 32px 16px
    }

    .anltcs .posts-header {
        margin: 0 0 32px
    }

    .anltcs .posts-title {
        font-size: 30px
    }
}

.anltcs .post-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: -1px 5px 25px -1px #870e0014;
    transition: transform .55s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow .55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    flex-direction: column;
    position: relative
}

.anltcs .post-card:hover {
    transform: translateY(-8px);
    box-shadow: -1px 12px 60px -1px #870e001a
}

.anltcs .post-img-wrap {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
    background: #EDECEC
}

.anltcs .post-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .65s ease-in-out
}

.anltcs .post-card:hover .post-img {
    transform: scale(1.08)
}

.anltcs .post-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #fcba1cf2;
    color: #1a0f0d;
    padding: 4px 12px;
    border-radius: 32px;
    font-size: 14px;
    line-height: 1.2;
    font-weight: 600
}

.anltcs .post-body {
    padding: 32px;
    display: flex;
    flex-direction: column;
    flex: 1
}

.anltcs .post-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 16px
}

.anltcs .post-time {
    font-size: 14px;
    line-height: 1.2;
    color: #6a6a6a;
    display: flex;
    align-items: center;
    gap: 4px
}

.anltcs .post-time::before {
    content: '';
    width: 14px;
    height: 14px;
    background: #FCBA1C;
    border-radius: 3px;
    display: inline-block
}

.anltcs .post-heading {
    font-size: 30px;
    line-height: 1.2;
    color: #870E00;
    margin: 0 0 12px;
    font-weight: 600
}

.anltcs .post-subhead {
    font-size: 15px;
    line-height: 1.55;
    color: #4a4a4a;
    margin: 0 0 16px
}

.anltcs .post-excerpt {
    font-size: 15px;
    line-height: 1.55;
    color: #2a2a2a;
    margin: 0 0 32px;
    flex: 1
}

.anltcs .post-link {
    display: inline-block;
    padding: 12px 32px;
    background: transparent;
    border: 2px solid #870E00;
    color: #870E00;
    text-decoration: none;
    border-radius: 5px;
    font-size: 15px;
    line-height: 1.2;
    font-weight: 600;
    transition: background .5s ease-in-out, color .5s ease-in-out, border-color .5s ease-in-out;
    align-self: flex-start;
    position: relative;
    overflow: hidden
}

.anltcs .post-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #870E00;
    transition: left .5s ease-in-out;
    z-index: -1
}

.anltcs .post-link:hover::before {
    left: 0
}

.anltcs .post-link:hover {
    color: #fff;
    border-color: #870E00
}

@media (max-width: 480px) {
    .anltcs .post-body {
        padding: 32px 16px
    }

    .anltcs .post-heading {
        font-size: 30px
    }
}

.anltcs .metrics-stage {
    background: #EDECEC;
    padding: 48px 16px;
    position: relative;
    overflow: hidden
}

.anltcs .metrics-stage::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #870e0008 0%, #fcba1c08 100%);
    animation: flicker-bg 4.2s infinite alternate;
    pointer-events: none
}

@keyframes flicker-bg {
    0% {
        opacity: .4
    }

    23% {
        opacity: .6
    }

    47% {
        opacity: .45
    }

    71% {
        opacity: .65
    }

    100% {
        opacity: .5
    }
}

.anltcs .metrics-inner {
    max-width: 1024px;
    margin: 0 auto;
    position: relative
}

.anltcs .metrics-head-wrap {
    text-align: center;
    margin: 0 0 48px
}

.anltcs .metrics-head {
    font-size: 42px;
    line-height: 1.2;
    color: #870E00;
    margin: 0 0 12px;
    font-weight: 600;
    display: inline-block;
    background: #fcba1c33;
    padding: 8px 32px;
    border-radius: 5px
}

.anltcs .metrics-desc {
    font-size: 15px;
    line-height: 1.55;
    color: #2a2a2a;
    margin: 0;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto
}

.anltcs .metrics-row {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 32px;
    align-items: center
}

@media (max-width: 960px) {
    .anltcs .metrics-row {
        grid-template-columns: 1fr;
        gap: 32px
    }

    .anltcs .metrics-head {
        font-size: 30px
    }
}

@media (max-width: 480px) {
    .anltcs .metrics-stage {
        padding: 32px 16px
    }

    .anltcs .metrics-head-wrap {
        margin: 0 0 32px
    }

    .anltcs .metrics-head {
        font-size: 30px;
        padding: 8px 16px
    }
}

.anltcs .metric-box {
    background: #fff;
    padding: 32px;
    border-radius: 10px;
    text-align: center;
    box-shadow: -1px 3px 2px -1px #870e0014;
    transition: transform .55s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.anltcs .metric-box:hover {
    transform: scale(1.05)
}

.anltcs .metric-num {
    font-size: 56px;
    line-height: 1.2;
    color: #870E00;
    margin: 0 0 8px;
    font-weight: 700
}

.anltcs .metric-label {
    font-size: 15px;
    line-height: 1.55;
    color: #4a4a4a;
    margin: 0
}

.anltcs .metric-center {
    background: #fff;
    padding: 48px 32px;
    border-radius: 20px;
    text-align: center;
    box-shadow: -1px 5px 25px -1px #870e0014;
    position: relative
}

.anltcs .metric-center::after {
    content: '';
    position: absolute;
    top: 16px;
    left: 16px;
    right: 16px;
    bottom: 16px;
    border: 2px solid #FCBA1C;
    border-radius: 10px;
    pointer-events: none
}

.anltcs .metric-center-title {
    font-size: 30px;
    line-height: 1.2;
    color: #870E00;
    margin: 0 0 16px;
    font-weight: 600
}

.anltcs .metric-center-text {
    font-size: 15px;
    line-height: 1.55;
    color: #2a2a2a;
    margin: 0
}

@media (max-width: 480px) {
    .anltcs .metric-box {
        padding: 32px 16px
    }

    .anltcs .metric-center {
        padding: 32px 16px
    }

    .anltcs .metric-num {
        font-size: 42px
    }

    .anltcs .metric-center-title {
        font-size: 30px
    }
}

.anltcs .approach-shell {
    padding: 48px 16px;
    background: #fff;
    position: relative
}

.anltcs .approach-container {
    max-width: 1024px;
    margin: 0 auto;
    position: relative
}

.anltcs .approach-top {
    text-align: center;
    margin: 0 0 48px
}

.anltcs .approach-heading {
    font-size: 42px;
    line-height: 1.2;
    color: #870E00;
    margin: 0 0 12px;
    font-weight: 600
}

.anltcs .approach-lead {
    font-size: 15px;
    line-height: 1.55;
    color: #4a4a4a;
    margin: 0;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto
}

.anltcs .approach-columns {
    display: grid;
    grid-template-columns: 280px 1fr 280px;
    gap: 48px;
    align-items: start
}

@media (max-width: 960px) {
    .anltcs .approach-columns {
        grid-template-columns: 1fr;
        gap: 32px
    }

    .anltcs .approach-heading {
        font-size: 30px
    }
}

@media (max-width: 480px) {
    .anltcs .approach-shell {
        padding: 32px 16px
    }

    .anltcs .approach-top {
        margin: 0 0 32px
    }

    .anltcs .approach-heading {
        font-size: 30px
    }
}

.anltcs .approach-side {
    background: #EDECEC;
    padding: 32px;
    border-radius: 10px;
    position: relative
}

.anltcs .approach-side::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #870E00 0%, #FCBA1C 100%);
    border-radius: 3px 0 0 3px
}

.anltcs .approach-side-num {
    font-size: 42px;
    line-height: 1.2;
    color: #870E00;
    margin: 0 0 12px;
    font-weight: 700
}

.anltcs .approach-side-title {
    font-size: 15px;
    line-height: 1.55;
    color: #2a2a2a;
    margin: 0;
    font-weight: 600
}

.anltcs .approach-middle {
    background: url(/article_images/P7913.jpg) center/cover no-repeat;
    min-height: 420px;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center
}

.anltcs .approach-middle::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffffd9;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px)
}

.anltcs .approach-middle-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 32px;
    max-width: 480px
}

.anltcs .approach-middle-title {
    font-size: 30px;
    line-height: 1.2;
    color: #870E00;
    margin: 0 0 16px;
    font-weight: 600
}

.anltcs .approach-middle-text {
    font-size: 15px;
    line-height: 1.55;
    color: #2a2a2a;
    margin: 0
}

.anltcs .approach-diagonal {
    position: absolute;
    top: 0;
    left: 20%;
    width: 2px;
    height: 100%;
    background: #870e0033;
    transform: rotate(-12deg);
    transform-origin: top
}

@media (max-width: 960px) {
    .anltcs .approach-middle {
        min-height: 320px
    }

    .anltcs .approach-side-num {
        font-size: 30px
    }

    .anltcs .approach-middle-title {
        font-size: 30px
    }
}

@media (max-width: 480px) {
    .anltcs .approach-side {
        padding: 32px 16px
    }

    .anltcs .approach-middle {
        min-height: 280px
    }

    .anltcs .approach-middle-content {
        padding: 32px 16px
    }

    .anltcs .approach-side-num {
        font-size: 30px
    }

    .anltcs .approach-middle-title {
        font-size: 30px
    }
}

.contact-pg {
    background: #fff;
    overflow-x: clip
}

.contact-pg .title-area {
    position: relative;
    padding: 48px 16px;
    background: linear-gradient(180deg, #870E00 0%, #FCBA1C 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 420px
}

.contact-pg .title-area::before,
.contact-pg .title-area::after {
    content: '';
    position: absolute;
    border: 1px solid #fff3;
    pointer-events: none
}

.contact-pg .title-area::before {
    top: 32px;
    left: 32px;
    right: 32px;
    bottom: 32px
}

.contact-pg .title-area::after {
    top: 48px;
    left: 48px;
    right: 48px;
    bottom: 48px
}

.contact-pg .title-wrap {
    max-width: 1024px;
    width: 100%;
    position: relative;
    z-index: 1;
    text-align: center
}

.contact-pg .main-title {
    font-size: 56px;
    line-height: 1.2;
    color: #fff;
    margin: 0 0 32px;
    opacity: 0;
    filter: blur(8px);
    animation: clarify-text .6s cubic-bezier(0.25, 0.46, 0.45, 0.94) .15s forwards
}

.contact-pg .value-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center
}

.contact-pg .value-item {
    font-size: 15px;
    line-height: 1.55;
    color: #fff;
    position: relative;
    padding: 0 0 16px;
    opacity: 0;
    filter: blur(8px);
    animation: clarify-text .6s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards
}

.contact-pg .value-item:nth-child(1) {
    animation-delay: .3s
}

.contact-pg .value-item:nth-child(2) {
    animation-delay: .45s
}

.contact-pg .value-item:nth-child(3) {
    animation-delay: .6s
}

.contact-pg .value-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 1px;
    background: #ffffff4d
}

.contact-pg .value-item:last-child::after {
    display: none
}

@keyframes clarify-text {
    to {
        opacity: 1;
        filter: blur(0)
    }
}

.contact-pg .geo-divider {
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: #EDECEC;
    overflow: hidden
}

.contact-pg .geo-shape {
    width: 16px;
    height: 16px;
    background: #870E00;
    border-radius: 3px;
    transform: rotate(45deg);
    opacity: .3
}

.contact-pg .geo-shape:nth-child(even) {
    background: #FCBA1C;
    opacity: .4
}

.contact-pg .form-zone {
    padding: 48px 16px;
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center
}

.contact-pg .form-container {
    max-width: 1024px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: start
}

.contact-pg .form-intro {
    text-align: center
}

.contact-pg .form-intro h2 {
    font-size: 42px;
    line-height: 1.2;
    color: #870E00;
    margin: 0 0 16px;
    display: inline-block;
    background: linear-gradient(180deg, #fcba1c26 0%, #fcba1c40 100%);
    padding: 8px 16px;
    border-radius: 5px
}

.contact-pg .form-intro p {
    font-size: 15px;
    line-height: 1.55;
    color: #333;
    margin: 0
}

.contact-pg .contact-form {
    background: #EDECEC;
    padding: 32px;
    border-radius: 10px;
    box-shadow: -1px 5px 25px -1px #870e0014
}

.contact-pg .field-group {
    margin: 0 0 32px
}

.contact-pg .field-group:last-of-type {
    margin: 0 0 16px
}

.contact-pg .field-label {
    display: block;
    font-size: 14px;
    line-height: 1.55;
    color: #870E00;
    margin: 0 0 8px;
    font-weight: 600
}

.contact-pg .field-input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid transparent;
    border-radius: 5px;
    font-size: 15px;
    line-height: 1.55;
    color: #333;
    background: #fff;
    transition: border-color .5s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow .5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-sizing: border-box
}

.contact-pg .field-input::placeholder {
    color: #3336
}

.contact-pg .field-input:focus {
    outline: none;
    border-color: #FCBA1C;
    box-shadow: -1px 3px 2px -1px #870e0014
}

.contact-pg .field-textarea {
    min-height: 120px;
    resize: vertical
}

.contact-pg .method-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px
}

.contact-pg .method-option {
    position: relative
}

.contact-pg .method-radio {
    position: absolute;
    opacity: 0;
    pointer-events: none
}

.contact-pg .method-label {
    display: block;
    padding: 12px 8px;
    text-align: center;
    font-size: 14px;
    line-height: 1.55;
    color: #333;
    background: #fff;
    border: 2px solid #fff;
    border-radius: 5px;
    cursor: pointer;
    transition: border-color .55s cubic-bezier(0.25, 0.46, 0.45, 0.94), background .55s cubic-bezier(0.25, 0.46, 0.45, 0.94), color .55s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.contact-pg .method-radio:checked+.method-label {
    background: #870E00;
    border-color: #870E00;
    color: #fff
}

.contact-pg .method-label:hover {
    border-color: #FCBA1C
}

.contact-pg .time-select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid transparent;
    border-radius: 5px;
    font-size: 15px;
    line-height: 1.55;
    color: #333;
    background: #fff;
    cursor: pointer;
    transition: border-color .5s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow .5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-sizing: border-box;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23870E00' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 48px
}

.contact-pg .time-select:focus {
    outline: none;
    border-color: #FCBA1C;
    box-shadow: -1px 3px 2px -1px #870e0014
}

.contact-pg .privacy-wrap {
    margin: 0 0 32px;
    display: flex;
    align-items: start;
    gap: 12px
}

.contact-pg .privacy-check {
    width: 20px;
    height: 20px;
    min-width: 20px;
    border: 2px solid #870E00;
    border-radius: 3px;
    cursor: pointer;
    transition: background .45s ease-in-out, border-color .45s ease-in-out;
    appearance: none;
    margin: 4px 0 0
}

.contact-pg .privacy-check:checked {
    background: #870E00;
    border-color: #870E00;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='10' viewBox='0 0 12 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 5L4.5 8.5L11 1' stroke='white' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center
}

.contact-pg .privacy-text {
    font-size: 14px;
    line-height: 1.55;
    color: #333;
    margin: 0
}

.contact-pg .privacy-text a {
    color: #870E00;
    text-decoration: none;
    border-bottom: 1px dotted #870E00;
    transition: border-bottom-color .5s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.contact-pg .privacy-text a:hover {
    border-bottom-color: #FCBA1C
}

.contact-pg .submit-btn {
    width: 100%;
    padding: 16px 32px;
    background: #870E00;
    color: #fff;
    border: 2px solid #870E00;
    border-radius: 10px;
    font-size: 15px;
    line-height: 1.55;
    cursor: pointer;
    transition: background .6s cubic-bezier(0.25, 0.46, 0.45, 0.94), color .6s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color .6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    font-weight: 600;
    position: relative;
    overflow: hidden
}

.contact-pg .submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid #FCBA1C;
    border-radius: 10px;
    opacity: 0;
    transition: opacity .6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    pointer-events: none
}

.contact-pg .submit-btn:hover {
    background: #fff;
    color: #870E00
}

.contact-pg .submit-btn:hover::before {
    opacity: 1
}

.contact-pg .submit-btn:active {
    transform: scale(0.98)
}

.contact-pg .info-hub {
    padding: 48px 16px;
    background: #870E00;
    position: relative;
    overflow: hidden
}

.contact-pg .info-hub::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #fcba1c1a 0%, transparent 70%);
    pointer-events: none
}

.contact-pg .info-hub::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, #fcba1c14 0%, transparent 70%);
    pointer-events: none
}

.contact-pg .info-layout {
    max-width: 1024px;
    margin: 0 auto;
    position: relative;
    z-index: 1
}

.contact-pg .info-layout h2 {
    font-size: 42px;
    line-height: 1.2;
    color: #fff;
    margin: 0 0 32px;
    text-align: center;
    background: #fcba1c26;
    padding: 8px 16px;
    border-radius: 5px;
    display: inline-block;
    width: 100%
}

.contact-pg .central-detail {
    background: #ffffff0d;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 32px;
    margin: 0 0 32px;
    border: 1px solid #ffffff1a;
    box-shadow: -1px 12px 60px -1px #fcba1c1a;
    text-align: center
}

.contact-pg .central-detail img {
    width: 100%;
    max-width: 480px;
    height: 280px;
    object-fit: cover;
    border-radius: 10px;
    border: 3px solid #fff3;
    margin: 0 0 16px
}

.contact-pg .central-detail p {
    font-size: 15px;
    line-height: 1.55;
    color: #fff;
    margin: 0
}

.contact-pg .satellite-ring {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px
}

.contact-pg .satellite-card {
    background: #ffffff14;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 10px;
    padding: 16px;
    border: 1px solid #ffffff1a;
    transition: transform .55s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow .55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-align: center
}

.contact-pg .satellite-card:hover {
    transform: translateY(-4px);
    box-shadow: -1px 5px 25px -1px #fcba1c14
}

.contact-pg .satellite-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fcba1c33;
    border-radius: 32px
}

.contact-pg .satellite-icon svg {
    width: 24px;
    height: 24px;
    fill: #FCBA1C
}

.contact-pg .satellite-card h4 {
    font-size: 15px;
    line-height: 1.2;
    color: #FCBA1C;
    margin: 0 0 8px
}

.contact-pg .satellite-card p {
    font-size: 14px;
    line-height: 1.55;
    color: #fff;
    margin: 0
}

.contact-pg .satellite-card a {
    color: #fff;
    text-decoration: none;
    border-bottom: 1px dotted #ffffff80;
    transition: border-bottom-color .5s cubic-bezier(0.25, 0.46, 0.45, 0.94), color .5s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.contact-pg .satellite-card a:hover {
    color: #FCBA1C;
    border-bottom-color: #FCBA1C
}

@media (min-width: 480px) {
    .contact-pg .value-list {
        flex-direction: row;
        justify-content: center
    }

    .contact-pg .value-item::after {
        display: none
    }

    .contact-pg .value-item {
        padding: 0 16px;
        border-right: 1px solid #ffffff4d
    }

    .contact-pg .value-item:last-child {
        border-right: none
    }
}

@media (min-width: 960px) {
    .contact-pg .title-area {
        padding: 48px 32px
    }

    .contact-pg .main-title {
        font-size: 56px
    }

    .contact-pg .form-container {
        grid-template-columns: 1fr 1.2fr
    }

    .contact-pg .form-intro {
        text-align: left
    }

    .contact-pg .form-intro h2 {
        display: inline-block
    }

    .contact-pg .method-grid {
        grid-template-columns: repeat(3, 1fr)
    }

    .contact-pg .satellite-ring {
        grid-template-columns: repeat(4, 1fr)
    }
}

@media (min-width: 1440px) {
    .contact-pg .title-area {
        padding: 48px
    }

    .contact-pg .form-zone {
        padding: 48px 32px
    }

    .contact-pg .info-hub {
        padding: 48px 32px
    }
}

.abt {
    max-width: 1024px;
    margin: 0 auto;
    padding: 0;
    background: #fff
}

.abt .opener {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 48px;
    padding: 48px 32px;
    position: relative;
    background: linear-gradient(180deg, #870E00 0%, #FCBA1C 100%);
    overflow: hidden
}

.abt .opener::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 120px;
    height: 2px;
    background: #fff;
    opacity: .4
}

.abt .opener::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 2px;
    height: 120px;
    background: #fff;
    opacity: .4
}

.abt .img-frame {
    flex-shrink: 0;
    width: 340px;
    height: 440px;
    position: relative;
    border: 3px solid #ffffff40;
    overflow: hidden;
    border-radius: 10px
}

.abt .img-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: blur(1px)
}

.abt .img-frame::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #870e002e;
    pointer-events: none;
    z-index: 1
}

.abt .opener-txt {
    flex: 1;
    color: #fff
}

.abt .opener h1 {
    font-size: 56px;
    line-height: 1.2;
    margin: 0 0 16px;
    font-weight: 700
}

.abt .opener h1 .accent-word {
    background: linear-gradient(180deg, #FCBA1C 0%, #fff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent
}

.abt .opener p {
    font-size: 15px;
    line-height: 1.55;
    margin: 0;
    opacity: .92
}

.abt .stat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    padding: 48px 32px;
    background: #EDECEC;
    position: relative
}

.abt .stat-card {
    background: #fff;
    padding: 32px;
    border-radius: 20px;
    text-align: center;
    box-shadow: -1px 5px 25px -1px #870e0014;
    position: relative;
    transition: transform .55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    animation: border-trace 2.4s ease-in-out forwards;
    animation-delay: calc(var(--index) * 0.2s)
}

@keyframes border-trace {
    0% {
        box-shadow: -1px 5px 25px -1px #870e0014 inset 0 0 0 0 #fcba1c00
    }

    50% {
        box-shadow: -1px 5px 25px -1px #870e0014 inset 0 0 0 3px #fcba1c99
    }

    100% {
        box-shadow: -1px 5px 25px -1px #870e0014 inset 0 0 0 3px #fcba1c00
    }
}

.abt .stat-card:nth-child(1) {
    --index: 0
}

.abt .stat-card:nth-child(2) {
    --index: 1
}

.abt .stat-card:nth-child(3) {
    --index: 2
}

.abt .stat-card:hover {
    transform: scale(1.05)
}

.abt .stat-card:hover~.stat-card {
    transform: translateX(8px)
}

.abt .stat-number {
    font-size: 56px;
    line-height: 1.2;
    font-weight: 700;
    color: #870E00;
    margin: 0 0 8px;
    display: block
}

.abt .stat-label {
    font-size: 15px;
    line-height: 1.55;
    color: #2a2a2a;
    margin: 0
}

.abt .story-wrap {
    padding: 48px 32px;
    background: #fff;
    position: relative
}

.abt .story-wrap::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #870E00 50%, transparent 100%)
}

.abt .story-layout {
    display: flex;
    flex-direction: row;
    gap: 48px;
    align-items: flex-start
}

.abt .story-aside {
    flex-shrink: 0;
    width: 220px;
    padding: 16px;
    background: #EDECEC;
    border-radius: 10px;
    box-shadow: inset 2px 2px 4px #870e000f
}

.abt .story-aside p {
    font-size: 14px;
    line-height: 1.55;
    color: #4a4a4a;
    margin: 0;
    font-style: italic
}

.abt .story-main {
    flex: 1
}

.abt .story-main h2 {
    font-size: 42px;
    line-height: 1.2;
    color: #fff;
    background: #870E00;
    padding: 12px 32px;
    margin: 0 0 32px;
    display: inline-block;
    border-radius: 5px;
    text-align: center
}

.abt .story-main p {
    font-size: 15px;
    line-height: 1.8;
    color: #2a2a2a;
    margin: 0 0 16px;
    text-align: center
}

.abt .story-main p:last-child {
    margin-bottom: 0
}

.abt .story-main a {
    color: #870E00;
    text-decoration: none;
    border-bottom: 1px dotted #870E00;
    transition: border-bottom-color .5s ease-in-out
}

.abt .story-main a:hover {
    border-bottom-color: #FCBA1C
}

.abt .team-section {
    padding: 48px 32px;
    background: linear-gradient(180deg, #fff 0%, #EDECEC 100%);
    position: relative
}

.abt .team-section::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 32px;
    width: 45%;
    height: 1px;
    background: #FCBA1C;
    opacity: .5
}

.abt .team-section h2 {
    font-size: 42px;
    line-height: 1.2;
    color: #fff;
    background: #FCBA1C;
    padding: 12px 32px;
    margin: 0 auto 48px;
    display: inline-block;
    border-radius: 5px;
    text-align: center;
    width: 100%;
    box-sizing: border-box
}

.abt .team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 720px;
    margin: 0 auto
}

.abt .team-member {
    display: flex;
    flex-direction: row;
    gap: 16px;
    background: #fff;
    padding: 16px;
    border-radius: 10px;
    box-shadow: -1px 3px 2px -1px #fcba1c14;
    align-items: flex-start;
    transition: box-shadow .6s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.abt .team-member:hover {
    box-shadow: -1px 12px 60px -1px #fcba1c1a
}

.abt .team-photo {
    flex-shrink: 0;
    width: 80px;
    height: 120px;
    border-radius: 3px;
    overflow: hidden;
    background: #EDECEC
}

.abt .team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block
}

.abt .team-info {
    flex: 1
}

.abt .team-name {
    font-size: 15px;
    line-height: 1.2;
    color: #870E00;
    font-weight: 700;
    margin: 0 0 4px;
    text-align: center
}

.abt .team-role {
    font-size: 14px;
    line-height: 1.55;
    color: #6a6a6a;
    margin: 0 0 12px;
    text-align: center
}

.abt .team-bio {
    font-size: 14px;
    line-height: 1.55;
    color: #2a2a2a;
    margin: 0;
    text-align: center
}

.abt .values-block {
    padding: 48px 32px;
    background: #fff;
    position: relative
}

.abt .values-block h2 {
    font-size: 42px;
    line-height: 1.2;
    color: #fff;
    background: linear-gradient(180deg, #870E00 0%, #FCBA1C 100%);
    padding: 12px 32px;
    margin: 0 auto 32px;
    display: inline-block;
    border-radius: 5px;
    text-align: center;
    width: 100%;
    box-sizing: border-box
}

.abt .values-list {
    list-style: none;
    padding: 0;
    margin: 0;
    max-width: 800px;
    margin: 0 auto
}

.abt .values-list li {
    padding: 16px 0;
    border-bottom: 1px solid #EDECEC;
    position: relative;
    padding-left: 48px;
    font-size: 15px;
    line-height: 1.8;
    color: #2a2a2a;
    text-align: center
}

.abt .values-list li:last-child {
    border-bottom: none
}

.abt .values-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    background: linear-gradient(180deg, #870E00 0%, #FCBA1C 100%);
    border-radius: 32px
}

.abt .img-gallery {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    padding: 48px 32px;
    background: #EDECEC
}

.abt .gallery-item {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 10px;
    position: relative;
    box-shadow: -1px 3px 2px -1px #870e0014;
    transition: transform .5s ease-in-out, box-shadow .5s ease-in-out
}

.abt .gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: -1px 12px 60px -1px #870e001a
}

.abt .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: blur(0.5px)
}

.abt .contact-prompt {
    padding: 48px 32px;
    background: linear-gradient(180deg, #FCBA1C 0%, #870E00 100%);
    text-align: center;
    position: relative;
    overflow: hidden
}

.abt .contact-prompt::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, #ffffff14 0%, transparent 70%);
    pointer-events: none
}

.abt .contact-prompt h3 {
    font-size: 30px;
    line-height: 1.2;
    color: #fff;
    margin: 0 0 16px;
    font-weight: 700;
    position: relative;
    z-index: 1
}

.abt .contact-prompt p {
    font-size: 15px;
    line-height: 1.55;
    color: #fff;
    margin: 0 0 32px;
    opacity: .9;
    position: relative;
    z-index: 1
}

.abt .contact-btn {
    display: inline-block;
    padding: 16px 48px;
    background: #fff;
    color: #870E00;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 32px;
    border: 2px solid #fff;
    transition: background .55s cubic-bezier(0.25, 0.46, 0.45, 0.94), color .55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    z-index: 1;
    box-shadow: -1px 5px 25px -1px #870e0014
}

.abt .contact-btn:hover {
    background: transparent;
    color: #fff
}

.abt .contact-btn:focus {
    outline: 3px solid #ffffff80;
    outline-offset: 4px
}

.abt .contact-btn:active {
    transform: scale(0.97)
}

@media (max-width: 960px) {
    .abt .opener {
        flex-direction: column;
        gap: 32px;
        padding: 32px 16px
    }

    .abt .img-frame {
        width: 100%;
        max-width: 340px;
        height: 380px
    }

    .abt .opener h1 {
        font-size: 42px
    }

    .abt .stat-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 32px 16px
    }

    .abt .story-layout {
        flex-direction: column;
        gap: 32px
    }

    .abt .story-aside {
        width: 100%
    }

    .abt .story-wrap {
        padding: 32px 16px
    }

    .abt .team-section {
        padding: 32px 16px
    }

    .abt .team-grid {
        grid-template-columns: 1fr;
        gap: 16px
    }

    .abt .values-block {
        padding: 32px 16px
    }

    .abt .img-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        padding: 32px 16px
    }

    .abt .contact-prompt {
        padding: 32px 16px
    }

    .abt .contact-prompt h3 {
        font-size: 30px
    }
}

@media (max-width: 480px) {
    .abt .opener h1 {
        font-size: 30px
    }

    .abt .stat-number {
        font-size: 42px
    }

    .abt .story-main h2,
    .abt .team-section h2,
    .abt .values-block h2 {
        font-size: 30px;
        padding: 8px 16px
    }

    .abt .img-gallery {
        grid-template-columns: 1fr
    }

    .abt .contact-prompt h3 {
        font-size: 30px
    }
}

.learn-prog {
    background: #fff;
    color: #1a0e0d;
    overflow-x: clip
}

.learn-prog .top-intro {
    position: relative;
    padding: 48px 16px;
    max-width: 1024px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    overflow: visible
}

.learn-prog .top-intro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, #870E00 0%, #FCBA1C 100%);
    opacity: .03;
    pointer-events: none;
    z-index: 0
}

.learn-prog .top-intro::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: repeating-linear-gradient(0deg, transparent, transparent 2px, #870e0003 2px, #870e0003 4px), repeating-linear-gradient(90deg, transparent, transparent 2px, #870e0003 2px, #870e0003 4px);
    pointer-events: none;
    z-index: 1
}

.learn-prog .img-shape-box {
    position: relative;
    z-index: 2;
    clip-path: polygon(0 0, 100% 0, 85% 100%, 0% 100%);
    overflow: hidden
}

.learn-prog .img-shape-box img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    object-position: center;
    display: block
}

.learn-prog .img-shape-box::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 0% 0%, #870e0066 0%, transparent 60%), radial-gradient(circle at 100% 100%, #870e0066 0%, transparent 60%);
    pointer-events: none
}

.learn-prog .txt-zone {
    position: relative;
    z-index: 2
}

.learn-prog .txt-zone h1 {
    font-size: 42px;
    line-height: 1.2;
    margin: 0 0 16px;
    color: #870E00
}

.learn-prog .txt-zone .quote-line {
    font-size: 15px;
    line-height: 1.55;
    color: #4a3532;
    font-style: italic;
    margin: 0;
    padding: 12px 0 0 16px;
    border-left: 3px solid #FCBA1C
}

.learn-prog .strokes-deco {
    position: absolute;
    top: 32px;
    right: 32px;
    width: 80px;
    height: 80px;
    z-index: 3;
    pointer-events: none
}

.learn-prog .strokes-deco span {
    position: absolute;
    background: #870E00;
    opacity: .15;
    transform-origin: center
}

.learn-prog .strokes-deco span:nth-child(1) {
    width: 48px;
    height: 2px;
    top: 12px;
    left: 8px;
    transform: rotate(-12deg)
}

.learn-prog .strokes-deco span:nth-child(2) {
    width: 52px;
    height: 2px;
    top: 24px;
    left: 4px;
    transform: rotate(-8deg)
}

.learn-prog .strokes-deco span:nth-child(3) {
    width: 44px;
    height: 2px;
    top: 36px;
    left: 12px;
    transform: rotate(-15deg)
}

.learn-prog .strokes-deco span:nth-child(4) {
    width: 50px;
    height: 2px;
    top: 48px;
    left: 6px;
    transform: rotate(-10deg)
}

.learn-prog .pencil-divide {
    width: 100%;
    height: 32px;
    overflow: visible;
    margin: 0;
    padding: 0
}

.learn-prog .pencil-divide svg {
    width: 100%;
    height: 100%;
    display: block
}

.learn-prog .approach-block {
    padding: 48px 16px;
    background: #EDECEC;
    position: relative;
    overflow: hidden
}

.learn-prog .approach-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(45deg, transparent, transparent 80px, #870e0005 80px, #870e0005 160px);
    animation: drift-bg 48s linear infinite;
    pointer-events: none
}

@keyframes drift-bg {
    0% {
        transform: translate(0, 0)
    }

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

.learn-prog .approach-inner {
    max-width: 1024px;
    margin: 0 auto;
    position: relative;
    z-index: 1
}

.learn-prog .approach-inner h2 {
    font-size: 30px;
    line-height: 1.2;
    margin: 0 0 32px;
    text-align: center;
    color: #870E00;
    background: #fcba1c33;
    padding: 12px 32px;
    display: inline-block;
    position: relative;
    left: 50%;
    transform: translateX(-50%)
}

.learn-prog .dual-col {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 48px;
    align-items: start
}

.learn-prog .note-aside {
    background: #fff;
    padding: 16px;
    box-shadow: -1px 5px 25px -1px #870e0014;
    border-radius: 10px;
    font-size: 14px;
    line-height: 1.55;
    color: #5a4542
}

.learn-prog .note-aside strong {
    display: block;
    color: #870E00;
    margin: 0 0 8px;
    font-size: 15px
}

.learn-prog .main-txt {
    font-size: 15px;
    line-height: 1.8;
    color: #2a1e1c
}

.learn-prog .main-txt p {
    margin: 0 0 16px
}

.learn-prog .main-txt p:last-child {
    margin: 0
}

.learn-prog .structure-section {
    padding: 48px 16px;
    background: #fff;
    position: relative
}

.learn-prog .structure-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url(/article_images/our11-current.jpg);
    background-size: cover;
    background-position: center;
    opacity: .04;
    pointer-events: none
}

.learn-prog .structure-wrap {
    max-width: 1024px;
    margin: 0 auto;
    position: relative;
    z-index: 1
}

.learn-prog .structure-wrap h2 {
    font-size: 30px;
    line-height: 1.2;
    margin: 0 0 48px;
    text-align: center;
    color: #870E00;
    background: #edecece6;
    padding: 12px 32px;
    display: inline-block;
    position: relative;
    left: 50%;
    transform: translateX(-50%)
}

.learn-prog .offset-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: start
}

.learn-prog .offset-cols .col-right {
    margin-top: 80px
}

.learn-prog .phase-card {
    background: #fff;
    padding: 32px;
    border-radius: 20px;
    box-shadow: -1px 12px 60px -1px #870e001a;
    margin: 0 0 32px;
    position: relative;
    border: 1px solid #870e0014;
    transition: transform .55s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow .55s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.learn-prog .phase-card:last-child {
    margin: 0
}

.learn-prog .phase-card:hover {
    transform: translateY(-4px);
    box-shadow: -1px 16px 80px -1px #870e0026
}

.learn-prog .phase-card h3 {
    font-size: 15px;
    line-height: 1.2;
    margin: 0 0 12px;
    color: #870E00;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: .08em
}

.learn-prog .phase-card p {
    font-size: 14px;
    line-height: 1.55;
    margin: 0;
    color: #3a2e2c;
    text-align: center
}

.learn-prog .phase-card .num-badge {
    position: absolute;
    top: -12px;
    right: 32px;
    width: 32px;
    height: 32px;
    background: linear-gradient(180deg, #870E00 0%, #FCBA1C 100%);
    border-radius: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    box-shadow: -1px 3px 2px -1px #870e0014
}

.learn-prog .outcomes-area {
    padding: 48px 16px;
    background: #fcba1c0f;
    position: relative
}

.learn-prog .outcomes-container {
    max-width: 1024px;
    margin: 0 auto;
    position: relative
}

.learn-prog .outcomes-container h2 {
    font-size: 30px;
    line-height: 1.2;
    margin: 0 0 32px;
    text-align: center;
    color: #870E00;
    background: #870e0014;
    padding: 12px 32px;
    display: inline-block;
    position: relative;
    left: 50%;
    transform: translateX(-50%)
}

.learn-prog .asymmetric-grid {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 48px;
    align-items: start
}

.learn-prog .support-side {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.learn-prog .mentor-mini {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    padding: 12px;
    border-radius: 10px;
    box-shadow: -1px 3px 2px -1px #870e0014;
    transition: transform .5s ease-in-out
}

.learn-prog .mentor-mini:hover {
    transform: translateX(4px)
}

.learn-prog .mentor-mini img {
    width: 64px;
    height: 80px;
    object-fit: cover;
    object-position: top;
    border-radius: 5px;
    flex-shrink: 0
}

.learn-prog .mentor-mini .info-txt {
    flex: 1
}

.learn-prog .mentor-mini .info-txt strong {
    display: block;
    font-size: 14px;
    color: #870E00;
    margin: 0 0 4px
}

.learn-prog .mentor-mini .info-txt span {
    display: block;
    font-size: 14px;
    line-height: 1.55;
    color: #5a4542
}

.learn-prog .mentor-mini .dot-indicator {
    width: 12px;
    height: 12px;
    background: #FCBA1C;
    border-radius: 12px;
    position: relative;
    flex-shrink: 0
}

.learn-prog .mentor-mini .dot-indicator::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border: 2px solid #FCBA1C;
    border-radius: 18px;
    opacity: 0;
    animation: pulse-ring 2s ease-in-out infinite
}

@keyframes pulse-ring {

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

    50% {
        opacity: .4;
        transform: scale(1.2)
    }
}

.learn-prog .dominant-txt {
    background: #fff;
    padding: 32px;
    border-radius: 20px;
    box-shadow: -1px 5px 25px -1px #870e0014
}

.learn-prog .dominant-txt h3 {
    font-size: 15px;
    line-height: 1.2;
    margin: 0 0 16px;
    color: #870E00;
    text-align: center
}

.learn-prog .outcome-list {
    list-style: none;
    margin: 0;
    padding: 0
}

.learn-prog .outcome-list li {
    font-size: 15px;
    line-height: 1.8;
    color: #2a1e1c;
    padding: 12px 0;
    border-bottom: 1px solid #870e001a;
    text-align: center
}

.learn-prog .outcome-list li:last-child {
    border-bottom: none !important
}

.learn-prog .metrics-banner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin: 32px 0 0
}

.learn-prog .stat-box {
    text-align: center;
    padding: 32px 16px;
    background: #fff;
    border-radius: 10px;
    box-shadow: -1px 3px 2px -1px #870e0014;
    position: relative;
    overflow: hidden;
    transition: transform .6s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.learn-prog .stat-box:hover {
    transform: scale(1.05)
}

.learn-prog .stat-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #870E00 0%, #FCBA1C 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .65s ease-in-out
}

.learn-prog .stat-box:hover::before {
    transform: scaleX(1)
}

.learn-prog .stat-box .big-num {
    display: block;
    font-size: 42px;
    line-height: 1.2;
    color: #870E00;
    margin: 0 0 8px;
    font-weight: 700
}

.learn-prog .stat-box .label-txt {
    display: block;
    font-size: 14px;
    line-height: 1.55;
    color: #5a4542
}

@media (max-width: 960px) {
    .learn-prog .top-intro {
        grid-template-columns: 1fr;
        gap: 32px
    }

    .learn-prog .img-shape-box {
        clip-path: polygon(0 0, 100% 0, 100% 85%, 0% 100%)
    }

    .learn-prog .img-shape-box img {
        height: 280px
    }

    .learn-prog .txt-zone h1 {
        font-size: 30px
    }

    .learn-prog .strokes-deco {
        top: 16px;
        right: 16px;
        width: 60px;
        height: 60px
    }

    .learn-prog .dual-col {
        grid-template-columns: 1fr;
        gap: 32px
    }

    .learn-prog .offset-cols {
        grid-template-columns: 1fr;
        gap: 32px
    }

    .learn-prog .offset-cols .col-right {
        margin-top: 0
    }

    .learn-prog .asymmetric-grid {
        grid-template-columns: 1fr;
        gap: 32px
    }

    .learn-prog .metrics-banner {
        grid-template-columns: 1fr;
        gap: 16px
    }
}

@media (max-width: 480px) {
    .learn-prog .top-intro {
        padding: 32px 16px
    }

    .learn-prog .img-shape-box img {
        height: 220px
    }

    .learn-prog .txt-zone h1 {
        font-size: 30px
    }

    .learn-prog .txt-zone .quote-line {
        font-size: 14px
    }

    .learn-prog .approach-block {
        padding: 32px 16px
    }

    .learn-prog .approach-inner h2 {
        font-size: 30px;
        padding: 8px 16px
    }

    .learn-prog .structure-section {
        padding: 32px 16px
    }

    .learn-prog .structure-wrap h2 {
        font-size: 30px;
        padding: 8px 16px
    }

    .learn-prog .phase-card {
        padding: 16px
    }

    .learn-prog .outcomes-area {
        padding: 32px 16px
    }

    .learn-prog .outcomes-container h2 {
        font-size: 30px;
        padding: 8px 16px
    }

    .learn-prog .dominant-txt {
        padding: 16px
    }

    .learn-prog .stat-box {
        padding: 16px
    }

    .learn-prog .stat-box .big-num {
        font-size: 30px
    }
}

.budg {
    background: #FFF;
    color: #2B2B2B;
    overflow-x: clip
}

.budg .opener {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 1024px;
    margin: 0 auto;
    position: relative;
    min-height: 520px
}

.budg .opener-txt {
    padding: 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2
}

.budg .opener-txt::before {
    content: '€';
    position: absolute;
    font-size: 280px;
    line-height: 1;
    color: #EDECEC;
    top: 50%;
    left: 32px;
    transform: translateY(-50%);
    z-index: -1;
    font-weight: 700;
    opacity: .4
}

.budg .opener h1 {
    font-size: 56px;
    line-height: 1.2;
    margin: 0 0 16px;
    color: #870E00
}

.budg .opener-visual {
    position: relative;
    overflow: hidden
}

.budg .opener-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: grayscale(100%);
    display: block
}

.budg .doubt {
    max-width: 1024px;
    margin: 0 auto;
    padding: 48px;
    position: relative
}

.budg .doubt-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 48px;
    align-items: start
}

.budg .doubt-side {
    background: #FCBA1C;
    padding: 16px;
    border-radius: 10px;
    position: sticky;
    top: 32px;
    box-shadow: -1px 5px 25px -1px #870e0014
}

.budg .doubt-side p {
    font-size: 14px;
    line-height: 1.55;
    margin: 0;
    color: #2B2B2B
}

.budg .doubt-main h2 {
    font-size: 42px;
    line-height: 1.2;
    margin: 0 0 32px;
    text-align: center;
    background: linear-gradient(180deg, #870E00 0%, #FCBA1C 100%);
    color: #FFF;
    padding: 12px 32px;
    border-radius: 5px;
    display: inline-block;
    width: 100%
}

.budg .doubt-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px
}

.budg .doubt-card {
    background: #FFF;
    border: 2px solid #EDECEC;
    border-radius: 20px;
    padding: 32px;
    transition: border-color .55s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow .55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    max-height: none;
    animation: cardgrow .6s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    animation-play-state: running
}

@keyframes cardgrow {
    from {
        max-height: 0;
        opacity: 0
    }

    to {
        max-height: 800px;
        opacity: 1
    }
}

.budg .doubt-card:hover {
    border-color: #FCBA1C;
    box-shadow: -1px 12px 60px -1px #870e001a
}

.budg .doubt-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    object-position: center;
    border-radius: 10px;
    margin: 0 0 16px;
    display: block;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%)
}

.budg .doubt-card h3 {
    font-size: 30px;
    line-height: 1.2;
    margin: 0 0 12px;
    text-align: center;
    color: #870E00
}

.budg .doubt-card p {
    font-size: 15px;
    line-height: 1.55;
    margin: 0;
    text-align: center;
    color: #2B2B2B
}

.budg .doubt::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 8px;
    background: repeating-linear-gradient(90deg, #870E00 0px, #870E00 16px, #FCBA1C 16px, #FCBA1C 32px, #EDECEC 32px, #EDECEC 48px)
}

.budg .conditions {
    background: #EDECEC;
    padding: 48px 32px;
    position: relative;
    overflow: hidden
}

.budg .conditions::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: repeating-linear-gradient(90deg, #FCBA1C 0px, #FCBA1C 12px, #870E00 12px, #870E00 24px, #EDECEC 24px, #EDECEC 36px)
}

.budg .conditions-wrap {
    max-width: 1024px;
    margin: 0 auto
}

.budg .conditions h2 {
    font-size: 42px;
    line-height: 1.2;
    margin: 0 0 48px;
    text-align: center;
    color: #870E00
}

.budg .conditions-compare {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px
}

.budg .conditions-option {
    background: #FFF;
    border-radius: 20px;
    padding: 32px;
    text-align: center;
    border: 3px solid transparent;
    transition: transform .5s ease-in-out, border-color .5s ease-in-out, box-shadow .5s ease-in-out;
    position: relative
}

.budg .conditions-option.recommended {
    border-color: #FCBA1C;
    transform: scale(1.05);
    box-shadow: -1px 12px 60px -1px #870e001a
}

.budg .conditions-option.recommended::before {
    content: 'Recommandé';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #FCBA1C;
    color: #2B2B2B;
    padding: 4px 16px;
    border-radius: 32px;
    font-size: 14px;
    font-weight: 600
}

.budg .conditions-option h3 {
    font-size: 30px;
    line-height: 1.2;
    margin: 0 0 16px;
    color: #870E00
}

.budg .conditions-option .price {
    font-size: 42px;
    line-height: 1.2;
    margin: 0 0 16px;
    color: #2B2B2B;
    font-weight: 700
}

.budg .conditions-option ul {
    list-style: none;
    padding: 0;
    margin: 0 0 32px
}

.budg .conditions-option li {
    font-size: 15px;
    line-height: 1.55;
    padding: 8px 0;
    border-bottom: 1px solid #EDECEC;
    color: #2B2B2B
}

.budg .conditions-option li:last-child {
    border-bottom: none
}

.budg .conditions-option button {
    background: linear-gradient(180deg, #870E00 0%, #FCBA1C 100%);
    color: #FFF;
    border: 2px solid transparent;
    padding: 12px 32px;
    border-radius: 10px;
    font-size: 15px;
    cursor: pointer;
    transition: border-color .55s cubic-bezier(0.25, 0.46, 0.45, 0.94), background .55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    font-weight: 600;
    width: 100%;
    type: button
}

.budg .conditions-option button:hover {
    background: #FFF;
    border-color: #870E00;
    color: #870E00
}

.budg .lasting {
    background-image: url(/article_images/temp19temp.jpg);
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 48px 32px
}

.budg .lasting::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #2b2b2beb;
    z-index: 1
}

.budg .lasting-content {
    max-width: 1024px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center
}

.budg .lasting h2 {
    font-size: 42px;
    line-height: 1.2;
    margin: 0 0 32px;
    text-align: center;
    color: #FCBA1C
}

.budg .lasting-text p {
    font-size: 15px;
    line-height: 1.8;
    margin: 0 0 16px;
    color: #FFF;
    text-align: center
}

.budg .lasting-text p:last-child {
    margin: 0
}

.budg .lasting-profiles {
    display: flex;
    flex-direction: column;
    gap: 32px
}

.budg .lasting-profile {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 16px;
    align-items: center;
    background: #ffffff14;
    padding: 16px;
    border-radius: 10px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid #fcba1c33;
    transition: background .6s ease-in-out, border-color .6s ease-in-out
}

.budg .lasting-profile:hover {
    background: #ffffff1f;
    border-color: #fcba1c66
}

.budg .lasting-profile img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    object-position: top;
    border-radius: 50%;
    display: block;
    border: 2px solid #FCBA1C
}

.budg .lasting-profile-info h4 {
    font-size: 15px;
    line-height: 1.2;
    margin: 0 0 4px;
    color: #FCBA1C;
    font-weight: 600
}

.budg .lasting-profile-info p {
    font-size: 14px;
    line-height: 1.55;
    margin: 0;
    color: #FFF;
    text-align: left
}

.budg .lasting::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 420px;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #FCBA1C 50%, transparent 100%);
    z-index: 2
}

@media (max-width: 1440px) {
    .budg .opener h1 {
        font-size: 48px
    }

    .budg .doubt h2,
    .budg .conditions h2,
    .budg .lasting h2 {
        font-size: 38px
    }

    .budg .doubt-card h3,
    .budg .conditions-option h3 {
        font-size: 26px
    }
}

@media (max-width: 960px) {
    .budg .opener {
        grid-template-columns: 1fr;
        min-height: auto
    }

    .budg .opener-visual {
        min-height: 360px
    }

    .budg .doubt-grid {
        grid-template-columns: 1fr;
        gap: 32px
    }

    .budg .doubt-side {
        position: static
    }

    .budg .doubt-cards {
        grid-template-columns: 1fr
    }

    .budg .conditions-compare {
        grid-template-columns: 1fr
    }

    .budg .conditions-option.recommended {
        transform: scale(1)
    }

    .budg .lasting-content {
        grid-template-columns: 1fr
    }

    .budg .opener h1 {
        font-size: 42px
    }

    .budg .doubt h2,
    .budg .conditions h2,
    .budg .lasting h2 {
        font-size: 32px
    }
}

@media (max-width: 480px) {
    .budg .opener-txt {
        padding: 32px 16px
    }

    .budg .opener-txt::before {
        font-size: 180px;
        left: 16px
    }

    .budg .opener h1 {
        font-size: 30px
    }

    .budg .doubt,
    .budg .conditions-wrap,
    .budg .lasting-content {
        padding: 32px 16px
    }

    .budg .doubt h2,
    .budg .conditions h2,
    .budg .lasting h2 {
        font-size: 26px
    }

    .budg .doubt-card,
    .budg .conditions-option {
        padding: 16px
    }

    .budg .doubt-card h3,
    .budg .conditions-option h3 {
        font-size: 22px
    }

    .budg .lasting-profile {
        grid-template-columns: 64px 1fr
    }

    .budg .lasting-profile img {
        width: 64px;
        height: 64px
    }
}

.evts {
    max-width: 1024px;
    margin: 0 auto;
    padding: 0;
    background: #fff
}

.evts .launch-zone {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 32px;
    padding: 48px 32px;
    background: linear-gradient(180deg, #870E00 0%, #FCBA1C 100%);
    position: relative;
    overflow: hidden
}

.evts .launch-zone::before {
    content: '';
    position: absolute;
    left: -120px;
    top: 50%;
    transform: translateY(-50%);
    width: 280px;
    height: 280px;
    border: 3px solid #ffffff26;
    border-radius: 50%;
    pointer-events: none
}

.evts .launch-zone::after {
    content: '';
    position: absolute;
    right: -80px;
    bottom: -80px;
    width: 200px;
    height: 200px;
    background: #ffffff14;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    pointer-events: none
}

.evts .img-narrow {
    flex: 0 0 220px;
    width: 220px;
    height: 280px;
    position: relative;
    z-index: 2
}

.evts .img-narrow img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    border-radius: 5px;
    filter: sepia(0.3) saturate(1.2) brightness(1.05);
    box-shadow: -1px 5px 25px -1px #870e0014
}

.evts .right-text {
    flex: 1;
    z-index: 2
}

.evts .right-text h1 {
    font-size: 42px;
    line-height: 1.2;
    color: #fff;
    margin: 0 0 16px;
    letter-spacing: -.02em
}

.evts .right-text .action-link {
    display: inline-block;
    padding: 12px 32px;
    background: #fff;
    color: #870E00;
    text-decoration: none;
    border-radius: 3px;
    font-size: 15px;
    font-weight: 600;
    transition: background-color .55s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform .55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: -1px 3px 2px -1px #870e0014
}

.evts .right-text .action-link:hover {
    background: #EDECEC;
    transform: translateY(-2px)
}

.evts .right-text .action-link:active {
    transform: translateY(0)
}

.evts .scallop-divider {
    height: 32px;
    background: #fff;
    position: relative
}

.evts .scallop-divider::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 32px;
    background-image: radial-gradient(circle at 24px 0, transparent 24px, #870E00 24px, #870E00 25px, transparent 25px);
    background-size: 48px 32px;
    background-position: 0 0;
    background-repeat: repeat-x
}

.evts .calendar-grid {
    padding: 48px 32px;
    background: #EDECEC;
    background-image: linear-gradient(180deg, #fcba1c1f 0%, #870e0014 100%), url(/article_images/22-current.jpg);
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay, normal
}

.evts .calendar-grid h2 {
    font-size: 30px;
    line-height: 1.2;
    color: #fff;
    text-align: center;
    margin: 0 0 32px;
    padding: 8px 16px;
    background: #870e00eb;
    border-radius: 3px;
    display: inline-block;
    width: 100%;
    box-shadow: -1px 5px 25px -1px #870e0014
}

.evts .event-blocks {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px
}

.evts .ev-card {
    background: #fffffff2;
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    padding: 16px;
    border-radius: 10px;
    box-shadow: -1px 3px 2px -1px #870e0014;
    transition: transform .5s ease-in-out, box-shadow .5s ease-in-out;
    position: relative;
    overflow: hidden
}

.evts .ev-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(180deg, #870E00 0%, #FCBA1C 100%);
    transition: height .55s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.evts .ev-card:hover {
    transform: translateY(-4px);
    box-shadow: -1px 12px 60px -1px #870e001a
}

.evts .ev-card:hover::before {
    height: 100%
}

.evts .ev-date {
    display: flex;
    flex-direction: row;
    align-items: baseline;
    gap: 8px;
    margin: 0 0 12px
}

.evts .day-num {
    font-size: 42px;
    line-height: 1;
    color: #870E00;
    font-weight: 700;
    position: relative
}

.evts .day-num::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 60%;
    height: 3px;
    background: #FCBA1C;
    border-radius: 3px
}

.evts .month-year {
    font-size: 15px;
    line-height: 1.2;
    color: #333;
    font-weight: 600
}

.evts .ev-card h3 {
    font-size: 15px;
    line-height: 1.55;
    color: #1a1a1a;
    margin: 0 0 8px;
    font-weight: 700
}

.evts .ev-card p {
    font-size: 14px;
    line-height: 1.55;
    color: #4a4a4a;
    margin: 0 0 12px
}

.evts .ev-meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin: 0 0 12px
}

.evts .meta-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    line-height: 1.2;
    color: #666
}

.evts .meta-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0
}

.evts .meta-icon svg {
    width: 100%;
    height: 100%;
    fill: #870E00
}

.evts .tag-badge {
    display: inline-block;
    padding: 4px 12px;
    background: #FCBA1C;
    color: #1a1a1a;
    font-size: 14px;
    line-height: 1.2;
    border-radius: 32px;
    font-weight: 600
}

.evts .stat-bar {
    margin: 16px 0 0;
    padding: 12px 0 0;
    border-top: 1px solid #870e0026
}

.evts .stat-label {
    font-size: 14px;
    line-height: 1.2;
    color: #666;
    margin: 0 0 4px
}

.evts .progress-visual {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px
}

.evts .progress-track {
    flex: 1;
    height: 6px;
    background: #EDECEC;
    border-radius: 10px;
    position: relative;
    overflow: hidden
}

.evts .progress-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: linear-gradient(90deg, #870E00 0%, #FCBA1C 100%);
    border-radius: 10px;
    transition: width .6s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.evts .progress-num {
    font-size: 14px;
    line-height: 1.2;
    color: #870E00;
    font-weight: 700;
    min-width: 40px;
    text-align: right
}

.evts .instructor-mini {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    margin: 12px 0 0
}

.evts .instructor-pic {
    width: 32px;
    height: 40px;
    border-radius: 3px;
    overflow: hidden;
    flex-shrink: 0
}

.evts .instructor-pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top
}

.evts .instructor-name {
    font-size: 14px;
    line-height: 1.2;
    color: #333;
    font-weight: 600
}

@media (max-width: 960px) {
    .evts .launch-zone {
        flex-direction: column;
        gap: 24px;
        padding: 32px 16px
    }

    .evts .img-narrow {
        flex: 0 0 auto;
        width: 180px;
        height: 230px
    }

    .evts .right-text h1 {
        font-size: 30px;
        text-align: center
    }

    .evts .right-text .action-link {
        display: block;
        text-align: center
    }

    .evts .calendar-grid {
        padding: 32px 16px
    }

    .evts .calendar-grid h2 {
        font-size: 30px
    }

    .evts .event-blocks {
        grid-template-columns: 1fr
    }
}

@media (max-width: 480px) {
    .evts .launch-zone {
        padding: 24px 12px
    }

    .evts .img-narrow {
        width: 140px;
        height: 180px
    }

    .evts .right-text h1 {
        font-size: 30px
    }

    .evts .calendar-grid {
        padding: 24px 12px
    }

    .evts .calendar-grid h2 {
        font-size: 30px
    }

    .evts .ev-card {
        padding: 12px
    }
}

.evts .scallop-divider-bottom {
    height: 32px;
    background: #EDECEC;
    position: relative
}

.evts .scallop-divider-bottom::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 32px;
    background-image: radial-gradient(circle at 24px 32px, transparent 24px, #fff 24px, #fff 25px, transparent 25px);
    background-size: 48px 32px;
    background-position: 0 0;
    background-repeat: repeat-x
}

.evts .quote-punctuation {
    position: absolute;
    font-size: 200px;
    line-height: 1;
    color: #fcba1c1f;
    font-weight: 700;
    pointer-events: none;
    z-index: 1
}

.evts .quote-open {
    top: -40px;
    left: 20px
}

.evts .quote-close {
    bottom: -60px;
    right: 20px
}

.success-pg {
    max-width: 1024px;
    margin: 0 auto;
    padding: 48px 16px;
    background: #fff
}

.success-pg .conf-wrap {
    text-align: center;
    padding: 48px 32px;
    background: linear-gradient(to bottom, #870E00, #FCBA1C);
    border-radius: 20px;
    margin-bottom: 48px;
    box-shadow: -1px 5px 25px -1px #870e0014
}

.success-pg .conf-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 32px;
    border: 4px solid #fff;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff3;
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px)
}

.success-pg .conf-icon svg {
    width: 48px;
    height: 48px;
    stroke: #fff;
    stroke-width: 3;
    fill: none
}

.success-pg .conf-wrap h1 {
    font-size: 42px;
    line-height: 1.2;
    color: #fff;
    margin: 0 0 16px
}

.success-pg .conf-wrap .msg-txt {
    font-size: 15px;
    line-height: 1.55;
    color: #fffffff2;
    max-width: 600px;
    margin: 0 auto
}

.success-pg .info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 48px
}

.success-pg .info-card {
    background: #EDECEC;
    padding: 32px;
    border-radius: 10px;
    border-left: 4px solid #870E00
}

.success-pg .info-card h2 {
    font-size: 30px;
    line-height: 1.2;
    color: #870E00;
    margin: 0 0 16px;
    text-align: center;
    background: #870e000d;
    padding: 8px 16px;
    border-radius: 5px;
    display: inline-block;
    width: 100%
}

.success-pg .info-card p {
    font-size: 15px;
    line-height: 1.55;
    color: #2a2a2a;
    margin: 0;
    text-align: center
}

.success-pg .detail-sec {
    background: #fff;
    padding: 32px;
    border: 2px solid #EDECEC;
    border-radius: 10px;
    margin-bottom: 32px
}

.success-pg .detail-sec h3 {
    font-size: 30px;
    line-height: 1.2;
    color: #870E00;
    margin: 0 0 16px;
    text-align: center
}

.success-pg .detail-list {
    list-style: none;
    padding: 0;
    margin: 0
}

.success-pg .detail-list li {
    font-size: 15px;
    line-height: 1.55;
    color: #2a2a2a;
    padding: 12px 0;
    border-bottom: 1px solid #EDECEC;
    text-align: center
}

.success-pg .detail-list li:last-child {
    border-bottom: none
}

.success-pg .detail-list li strong {
    color: #870E00;
    font-weight: 600
}

.success-pg .contact-box {
    background: linear-gradient(to bottom, #fcba1c1a, #edecec4d);
    padding: 32px;
    border-radius: 20px;
    margin-bottom: 32px;
    text-align: center
}

.success-pg .contact-box h4 {
    font-size: 30px;
    line-height: 1.2;
    color: #870E00;
    margin: 0 0 16px
}

.success-pg .contact-box p {
    font-size: 15px;
    line-height: 1.55;
    color: #2a2a2a;
    margin: 0 0 16px
}

.success-pg .contact-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center
}

.success-pg .contact-links a {
    font-size: 15px;
    line-height: 1.55;
    color: #870E00;
    text-decoration: none;
    border-bottom: 2px dotted #870E00;
    transition: color .5s ease-in-out, border-color .5s ease-in-out
}

.success-pg .contact-links a:hover {
    color: #FCBA1C;
    border-color: #FCBA1C
}

.success-pg .action-zone {
    text-align: center;
    padding: 32px 16px
}

.success-pg .btn-home {
    display: inline-block;
    padding: 16px 48px;
    background: #870E00;
    color: #fff;
    font-size: 15px;
    line-height: 1.55;
    text-decoration: none;
    border-radius: 10px;
    border: 2px solid #870E00;
    transition: background .55s cubic-bezier(0.25, 0.46, 0.45, 0.94), color .55s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color .55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: -1px 3px 2px -1px #870e0014
}

.success-pg .btn-home:hover {
    background: #fff;
    color: #870E00;
    border-color: #870E00
}

@media (min-width: 960px) {
    .success-pg {
        padding: 48px 32px
    }

    .success-pg .info-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .success-pg .contact-links {
        flex-direction: row;
        justify-content: center;
        gap: 32px
    }
}