html {
    box-sizing: border-box
}

body {
    margin: 0;
    min-height: 100dvh;
    overflow-x: hidden;
    font-family: 'Inconsolata', monospace;
    background: #fff;
    color: #1a1a1a
}

.hd-outer {
    background: linear-gradient(135deg, #ff4d030a 0%, #05cc860f 100%);
    padding: 24px 24px 48px;
    border-radius: 36px;
    margin: 24px auto;
    max-width: 1400px;
    box-shadow: 0 5px 18px 0 #ff4d031c
}

.hd-top-strip {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 48px;
    flex-wrap: wrap;
    gap: 24px
}

.hd-contact-cluster {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    align-items: center
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #2d2d2d;
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 36px;
    background: #ffffffb3;
    transition: background .16s ease-out, transform .14s cubic-bezier(0.4, 0, 0.6, 1);
    box-shadow: 0 1px 4px 0 #5205be14
}

.contact-item:hover {
    background: #fffffff2;
    transform: scale(1.04)
}

.contact-item:focus {
    outline: 2px solid transparent;
    box-shadow: 0 0 0 3px #ff4d034d 0 0 0 5px #05cc8633
}

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

.hd-nav-primary {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center
}

.hd-nav-link {
    font-size: 15px;
    color: #2d2d2d;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 36px;
    background: transparent;
    transition: background .18s ease-out, color .15s ease-out, transform .16s cubic-bezier(0.4, 0, 0.6, 1);
    font-weight: 400;
    border: 1px solid transparent
}

.hd-nav-link:hover {
    background: #ff4d031f;
    color: #FF4D03;
    transform: scale(1.06);
    border-color: #ff4d0333
}

.hd-nav-link:focus {
    outline: 2px solid transparent;
    box-shadow: 0 0 0 3px #05cc8666 0 0 0 5px #5205be33
}

.hd-bottom-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap
}

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

.logo-container {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 36px;
    padding: 12px;
    box-shadow: 0 5px 18px 0 #5205be1c 0 1px 4px 0 #ff4d0314;
    border: 2px solid #05cc8626
}

.logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain
}

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

.brand-name {
    font-size: 32px;
    font-weight: 700;
    color: #2d2d2d;
    line-height: 1.1;
    letter-spacing: -.5px
}

.brand-tagline {
    font-size: 13px;
    color: #5d5d5d;
    line-height: 1.4;
    font-weight: 400
}

.ftr-outer {
    background: linear-gradient(165deg, #5205be0f 0%, #ff4d030a 50%, #05cc860d 100%);
    padding: 96px 24px 48px;
    margin: 96px auto 24px;
    max-width: 1400px;
    border-radius: 36px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 52px 0 #5205be1a
}

.ftr-depth-element {
    position: absolute;
    top: -120px;
    right: 48px;
    font-size: 320px;
    font-weight: 700;
    color: #ff4d030f;
    line-height: 1;
    pointer-events: none;
    user-select: none;
    z-index: 0
}

.ftr-content {
    position: relative;
    z-index: 1
}

.ftr-nav-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 48px;
    margin-bottom: 48px
}

.ftr-nav-column {
    display: flex;
    flex-direction: column;
    gap: 12px
}

.ftr-nav-heading {
    font-size: 18px;
    font-weight: 700;
    color: #2d2d2d;
    margin-bottom: 8px;
    line-height: 1.4
}

.ftr-nav-link {
    font-size: 15px;
    color: #4d4d4d;
    text-decoration: none;
    padding: 8px 0;
    transition: color .14s ease-out, padding-left .18s cubic-bezier(0.4, 0, 0.6, 1);
    line-height: 1.4
}

.ftr-nav-link:hover {
    color: #FF4D03;
    padding-left: 8px
}

.ftr-nav-link:focus {
    outline: 2px solid transparent;
    box-shadow: 0 0 0 2px #05cc8680;
    border-radius: 4px
}

.ftr-divider {
    height: 1px;
    background: linear-gradient(90deg, #ff4d0333 0%, #05cc8633 50%, #5205be33 100%);
    margin: 48px 0
}

.ftr-bottom-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px
}

.ftr-logo-container {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 36px;
    padding: 12px;
    box-shadow: 0 5px 18px 0 #ff4d031c;
    border: 2px solid #5205be1f
}

.ftr-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain
}

.ftr-info-cluster {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-end
}

.ftr-copyright {
    font-size: 13px;
    color: #5d5d5d;
    line-height: 1.4
}

.ftr-location {
    font-size: 13px;
    color: #5d5d5d;
    line-height: 1.7;
    text-align: right
}

.ftr-contact-row {
    display: flex;
    gap: 24px;
    flex-wrap: wrap
}

.ftr-contact-link {
    font-size: 13px;
    color: #4d4d4d;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 36px;
    background: #fff9;
    transition: background .16s ease-out, transform .14s cubic-bezier(0.4, 0, 0.6, 1);
    box-shadow: 0 1px 4px 0 #05cc8614
}

.ftr-contact-link:hover {
    background: #fffffff2;
    transform: scale(1.04)
}

.ftr-contact-link:focus {
    outline: 2px solid transparent;
    box-shadow: 0 0 0 3px #ff4d034d 0 0 0 5px #05cc8633
}

.ftr-contact-icon {
    width: 16px;
    height: 16px;
    fill: #05CC86
}

.consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, #fffffffa 0%, #fffffff5 100%);
    border-top: 2px solid #ff4d0326;
    box-shadow: 0 -10px 52px 0 #5205be1a;
    z-index: 1000;
    display: none;
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px)
}

.consent-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap
}

.consent-text-group {
    flex: 1;
    min-width: 280px
}

.consent-headline {
    font-size: 18px;
    font-weight: 700;
    color: #2d2d2d;
    margin-bottom: 8px;
    line-height: 1.4
}

.consent-description {
    font-size: 15px;
    color: #4d4d4d;
    line-height: 1.7
}

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

.consent-btn {
    font-family: 'Inconsolata', monospace;
    font-size: 15px;
    padding: 12px 24px;
    border-radius: 36px;
    border: 2px solid;
    background: transparent;
    cursor: pointer;
    transition: background .16s ease-out, transform .14s cubic-bezier(0.4, 0, 0.6, 1), border-color .18s ease-out;
    font-weight: 700
}

.consent-btn-accept {
    border-color: #FF4D03;
    color: #FF4D03
}

.consent-btn-accept:hover {
    background: #FF4D03;
    color: #fff;
    transform: scale(1.06)
}

.consent-btn-accept:focus {
    outline: 2px solid transparent;
    box-shadow: 0 0 0 3px #ff4d0366 0 0 0 5px #05cc8633
}

.consent-btn-decline {
    border-color: #5205BE;
    color: #5205BE
}

.consent-btn-decline:hover {
    background: #5205BE;
    color: #fff;
    transform: scale(1.06)
}

.consent-btn-decline:focus {
    outline: 2px solid transparent;
    box-shadow: 0 0 0 3px #5205be66 0 0 0 5px #ff4d0333
}

.consent-btn-preferences {
    border-color: #05CC86;
    color: #05CC86
}

.consent-btn-preferences:hover {
    background: #05CC86;
    color: #fff;
    transform: scale(1.06)
}

.consent-btn-preferences:focus {
    outline: 2px solid transparent;
    box-shadow: 0 0 0 3px #05cc8666 0 0 0 5px #5205be33
}

.consent-detail-panel {
    display: none;
    padding: 24px;
    background: #ffffffe6;
    border-top: 1px solid #5205be1f;
    margin-top: 24px
}

.consent-detail-panel.visible {
    display: block
}

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

.consent-toggle-label {
    font-size: 15px;
    color: #2d2d2d;
    font-weight: 700;
    line-height: 1.4
}

.consent-toggle-input {
    width: 48px;
    height: 24px;
    appearance: none;
    background: #5205be33;
    border-radius: 36px;
    position: relative;
    cursor: pointer;
    transition: background .18s ease-out
}

.consent-toggle-input:checked {
    background: #05CC86
}

.consent-toggle-input::before {
    content: '';
    position: absolute;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #fff;
    top: 3px;
    left: 3px;
    transition: left .18s cubic-bezier(0.4, 0, 0.6, 1);
    box-shadow: 0 1px 4px 0 #5205be14
}

.consent-toggle-input:checked::before {
    left: 27px
}

.consent-toggle-input:focus {
    outline: 2px solid transparent;
    box-shadow: 0 0 0 3px #05cc8666
}

.consent-toggle-description {
    font-size: 13px;
    color: #5d5d5d;
    line-height: 1.7;
    margin-bottom: 24px
}

.preference-tab {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%) translateX(100%);
    background: linear-gradient(135deg, #ff4d03f2 0%, #5205beeb 100%);
    padding: 12px 24px;
    border-radius: 36px 0 0 36px;
    cursor: pointer;
    z-index: 999;
    transition: transform .22s cubic-bezier(0.4, 0, 0.6, 1);
    box-shadow: -5px 0 18px 0 #ff4d031c;
    display: none
}

.preference-tab.visible {
    display: block;
    transform: translateY(-50%) translateX(0)
}

.preference-tab:hover {
    transform: translateY(-50%) translateX(-4px)
}

.preference-tab-text {
    font-size: 13px;
    color: #fff;
    font-weight: 700;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    letter-spacing: 1px
}

@media (max-width: 1024px) {
    .hd-outer {
        padding: 24px 24px 36px;
        margin: 12px
    }

    .hd-top-strip {
        margin-bottom: 36px;
        gap: 12px
    }

    .hd-contact-cluster {
        gap: 12px
    }

    .hd-nav-primary {
        width: 100%;
        justify-content: center
    }

    .hd-bottom-row {
        gap: 24px
    }

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

    .ftr-outer {
        padding: 48px 24px 36px;
        margin: 48px 12px 12px
    }

    .ftr-depth-element {
        font-size: 240px;
        top: -80px;
        right: 24px
    }

    .ftr-nav-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 36px
    }

    .ftr-bottom-section {
        flex-direction: column;
        align-items: center
    }

    .ftr-info-cluster {
        align-items: center
    }

    .ftr-location {
        text-align: center
    }

    .consent-inner {
        flex-direction: column;
        align-items: stretch
    }

    .consent-actions {
        justify-content: center
    }
}

@media (max-width: 768px) {
    .hd-outer {
        padding: 12px;
        margin: 8px;
        border-radius: 24px
    }

    .hd-top-strip {
        flex-direction: column;
        margin-bottom: 24px
    }

    .hd-contact-cluster {
        width: 100%;
        justify-content: center
    }

    .contact-item {
        font-size: 13px;
        padding: 8px 12px
    }

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

    .hd-nav-link {
        width: 100%;
        text-align: center;
        padding: 12px
    }

    .hd-bottom-row {
        flex-direction: column
    }

    .brand-lockup {
        flex-direction: column;
        gap: 12px
    }

    .brand-text {
        align-items: center;
        text-align: center
    }

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

    .brand-tagline {
        font-size: 13px
    }

    .ftr-outer {
        padding: 36px 12px 24px;
        margin: 24px 8px 8px;
        border-radius: 24px
    }

    .ftr-depth-element {
        font-size: 180px;
        top: -60px;
        right: 12px
    }

    .ftr-nav-grid {
        grid-template-columns: 1fr;
        gap: 24px
    }

    .ftr-nav-column {
        text-align: center
    }

    .ftr-nav-heading {
        font-size: 15px
    }

    .ftr-nav-link {
        font-size: 13px
    }

    .ftr-contact-row {
        flex-direction: column;
        align-items: center
    }

    .consent-inner {
        padding: 12px
    }

    .consent-headline {
        font-size: 15px
    }

    .consent-description {
        font-size: 13px
    }

    .consent-actions {
        flex-direction: column;
        width: 100%
    }

    .consent-btn {
        width: 100%
    }

    .consent-detail-panel {
        padding: 12px
    }
}

@media (max-width: 360px) {
    .hd-outer {
        padding: 8px;
        margin: 4px
    }

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

    .brand-tagline {
        font-size: 13px
    }

    .ftr-outer {
        padding: 24px 8px 12px;
        margin: 12px 4px 4px
    }

    .ftr-depth-element {
        font-size: 140px;
        top: -40px;
        right: 8px
    }
}

.legal-area-q {
    margin: 0 auto;
    max-width: 1400px;
    padding: 48px 24px 96px
}

.legal-area-q p {
    color: #1a1a1a;
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 24px
}

.legal-area-q p:last-child {
    margin-bottom: 0
}

.legal-area-q ul,
.legal-area-q ol {
    color: #1a1a1a;
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 24px;
    padding-left: 24px
}

.legal-area-q ul:last-child,
.legal-area-q ol:last-child {
    margin-bottom: 0
}

.legal-area-q li {
    margin-bottom: 12px
}

.legal-area-q li:last-child {
    margin-bottom: 0
}

.legal-area-q a {
    color: #FF4D03;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 2px;
    transition: color .16s ease-out
}

.legal-area-q a:hover {
    color: #5205BE
}

.legal-area-q a:focus {
    outline: 2px solid #FF4D03;
    outline-offset: 2px
}

.legal-area-q hr {
    background: #ff4d0326;
    border: 0;
    height: 1px;
    margin: 48px 0
}

.legal-area-q div {
    margin-bottom: 24px
}

.legal-area-q div:last-child {
    margin-bottom: 0
}

@media (min-width: 768px) {
    .legal-area-q {
        padding: 96px 48px
    }
}

@media (min-width: 1024px) {
    .legal-area-q {
        padding: 96px
    }

    .legal-area-q p,
    .legal-area-q ul,
    .legal-area-q ol {
        font-size: 23px
    }
}

.press-dtl {
    max-width: 1400px;
    margin: 0 auto;
    background: #fff
}

.press-dtl::selection {
    background: #ff4d032e;
    color: #000
}

.press-dtl .hero-img-wrap {
    position: relative;
    padding: 96px 24px 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(180deg, #fff 0%, #05cc860a 100%);
    overflow: hidden
}

.press-dtl .hero-img-wrap::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 420px;
    height: 420px;
    border: 3px solid #5205be14;
    border-radius: 50%;
    pointer-events: none
}

.press-dtl .hero-img-wrap::after {
    content: '∫';
    position: absolute;
    bottom: 48px;
    right: 96px;
    font-size: 280px;
    line-height: 1;
    color: #ff4d0308;
    font-weight: 100;
    pointer-events: none;
    z-index: 0
}

.press-dtl .hero-visual {
    position: relative;
    width: 100%;
    max-width: 840px;
    border-radius: 36px;
    overflow: hidden;
    box-shadow: 0 10px 52px 0 #ff4d031a;
    margin: 0 0 48px
}

.press-dtl .hero-visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 30%, #00000059);
    pointer-events: none;
    z-index: 1
}

.press-dtl .hero-visual img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform .18s cubic-bezier(0.4, 0, 0.6, 1)
}

.press-dtl .hero-visual:hover img {
    transform: scale(1.04)
}

.press-dtl .hero-txt-zone {
    position: relative;
    text-align: center;
    max-width: 720px;
    z-index: 1
}

.press-dtl .hero-txt-zone::before {
    content: '';
    position: absolute;
    top: -24px;
    left: 50%;
    transform: translateX(-50%);
    width: 96px;
    height: 4px;
    background: linear-gradient(90deg, #FF4D03 0%, #05CC86 100%);
    border-radius: 36px
}

.press-dtl .main-heading {
    font-size: 62px;
    line-height: 1.1;
    margin: 0 0 24px;
    color: #000;
    text-shadow: 2px 2px 8px #ff4d031f
}

.press-dtl .meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
    align-items: center;
    margin: 24px 0 0
}

.press-dtl .meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    line-height: 1.4;
    color: #000000a6
}

.press-dtl .meta-icon {
    width: 20px;
    height: 20px;
    fill: #05CC86;
    animation: icon-sway 3.2s ease-in-out infinite
}

.press-dtl .meta-item:nth-child(2) .meta-icon {
    animation-delay: .4s
}

.press-dtl .meta-item:nth-child(3) .meta-icon {
    animation-delay: .8s
}

.press-dtl .meta-item:nth-child(4) .meta-icon {
    animation-delay: 1.2s
}

@keyframes icon-sway {

    0%,
    100% {
        transform: translateY(0) rotate(0deg)
    }

    25% {
        transform: translateY(-3px) rotate(-2deg)
    }

    75% {
        transform: translateY(3px) rotate(2deg)
    }
}

.press-dtl .tag-pill {
    display: inline-block;
    padding: 4px 12px;
    background: #5205be14;
    color: #5205BE;
    font-size: 13px;
    line-height: 1.4;
    border-radius: 36px;
    margin: 0 4px;
    transition: background .16s ease-out, box-shadow .16s ease-out
}

.press-dtl .tag-pill:hover {
    background: #5205be24;
    box-shadow: 0 0 0 2px #5205be1f
}

.press-dtl .divider-zigzag {
    width: 100%;
    height: 48px;
    overflow: hidden
}

.press-dtl .divider-zigzag svg {
    width: 100%;
    height: 100%;
    display: block
}

.press-dtl .article-body {
    position: relative;
    padding: 96px 24px;
    background: #fff;
    overflow: hidden
}

.press-dtl .article-body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, #05cc8608 0%, transparent 100%);
    pointer-events: none
}

.press-dtl .article-body::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(225deg, #ff4d0308 0%, transparent 100%);
    pointer-events: none
}

.press-dtl .article-body-inner {
    position: relative;
    max-width: 960px;
    margin: 0 auto;
    z-index: 1
}

.press-dtl .body-intro {
    font-size: 23px;
    line-height: 1.7;
    color: #000000d9;
    margin: 0 0 48px;
    padding: 0 0 48px;
    border-bottom: 2px solid #05cc861f
}

.press-dtl .body-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px
}

.press-dtl .body-columns p {
    font-size: 18px;
    line-height: 1.7;
    color: #000000bf;
    margin: 0 0 24px
}

.press-dtl .body-columns p:last-child {
    margin: 0
}

.press-dtl .body-columns h2 {
    font-size: 32px;
    line-height: 1.4;
    color: #000;
    margin: 0 0 24px;
    text-shadow: 1px 1px 4px #05cc8626
}

.press-dtl .body-columns h3 {
    font-size: 23px;
    line-height: 1.4;
    color: #000;
    margin: 0 0 12px;
    text-shadow: 1px 1px 3px #ff4d031f
}

.press-dtl .body-columns h4 {
    font-size: 18px;
    line-height: 1.4;
    color: #000000d9;
    margin: 0 0 12px
}

.press-dtl .body-columns mark {
    background: #05cc862e;
    color: #000;
    padding: 2px 4px;
    border-radius: 0
}

.press-dtl .body-columns details {
    margin: 24px 0;
    padding: 24px;
    background: #5205be0a;
    border-radius: 36px;
    box-shadow: inset 0 2px 4px #5205be14
}

.press-dtl .body-columns summary {
    font-size: 18px;
    line-height: 1.4;
    color: #5205BE;
    font-weight: 600;
    cursor: pointer;
    transition: color .14s ease-out
}

.press-dtl .body-columns summary:hover {
    color: #FF4D03
}

.press-dtl .body-columns details[open] summary {
    margin: 0 0 12px
}

.press-dtl .body-columns a {
    color: #FF4D03;
    text-decoration: none;
    position: relative;
    display: inline;
    transition: color .16s ease-out
}

.press-dtl .body-columns a::after {
    content: '→';
    display: inline-block;
    margin: 0 0 0 4px;
    transition: transform .18s cubic-bezier(0.4, 0, 0.6, 1)
}

.press-dtl .body-columns a:hover {
    color: #05CC86
}

.press-dtl .body-columns a:hover::after {
    transform: translateX(4px)
}

.press-dtl .stats-complex {
    position: relative;
    padding: 96px 24px;
    background: #fff;
    overflow: hidden
}

.press-dtl .stats-complex::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(45deg, transparent 48%, #ff4d0305 48%, #ff4d0305 52%, transparent 52%), linear-gradient(-45deg, transparent 48%, #05cc8605 48%, #05cc8605 52%, transparent 52%);
    background-size: 24px 24px;
    pointer-events: none
}

.press-dtl .stats-complex-inner {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    z-index: 1
}

.press-dtl .stats-heading {
    font-size: 45px;
    line-height: 1.1;
    color: #000;
    text-align: center;
    margin: 0 0 48px;
    text-shadow: 2px 2px 6px #5205be1a
}

.press-dtl .stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 0 0 48px
}

.press-dtl .stat-card {
    position: relative;
    padding: 24px;
    background: linear-gradient(135deg, #ff4d030a 0%, #05cc860a 100%);
    border-radius: 36px;
    text-align: center;
    transition: transform .18s cubic-bezier(0.4, 0, 0.6, 1), box-shadow .18s cubic-bezier(0.4, 0, 0.6, 1);
    box-shadow: 0 1px 4px 0 #ff4d0314
}

.press-dtl .stat-card:hover {
    transform: scale(1.03);
    box-shadow: 0 5px 18px 0 #ff4d031c 0 0 0 2px #ff4d0326
}

.press-dtl .stat-card:hover::after {
    opacity: 1
}

.press-dtl .stat-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 2px solid #FF4D03;
    border-radius: 36px;
    opacity: 0;
    transition: opacity .22s ease-out .08s;
    pointer-events: none
}

.press-dtl .stat-num {
    font-size: 45px;
    line-height: 1.1;
    color: #FF4D03;
    font-weight: 700;
    margin: 0 0 8px
}

.press-dtl .stat-label {
    font-size: 15px;
    line-height: 1.4;
    color: #000000a6
}

.press-dtl .stats-desc {
    padding: 48px;
    background: #5205be0f;
    border-radius: 36px;
    box-shadow: inset 0 3px 8px #5205be1a;
    margin: 0 0 48px
}

.press-dtl .stats-desc p {
    font-size: 18px;
    line-height: 1.7;
    color: #000000bf;
    margin: 0 0 24px
}

.press-dtl .stats-desc p:last-child {
    margin: 0
}

.press-dtl .visual-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 24px;
    background: linear-gradient(90deg, #05cc8614 0%, #ff4d0314 100%);
    border-radius: 36px
}

.press-dtl .indicator-dot {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    transition: transform .16s ease-out, box-shadow .16s ease-out
}

.press-dtl .indicator-dot:nth-child(1) {
    background: #FF4D03
}

.press-dtl .indicator-dot:nth-child(2) {
    background: #05CC86
}

.press-dtl .indicator-dot:nth-child(3) {
    background: #5205BE
}

.press-dtl .indicator-dot:nth-child(4) {
    background: #ff4d0380
}

.press-dtl .indicator-dot:nth-child(5) {
    background: #05cc8680
}

.press-dtl .visual-indicator:hover .indicator-dot {
    transform: scale(1.2);
    box-shadow: 0 5px 18px 0 #ff4d031c
}

.press-dtl .action-zone {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin: 48px 0 0
}

.press-dtl .btn-ghost {
    padding: 12px 48px;
    font-size: 18px;
    line-height: 1.4;
    color: #FF4D03;
    background: transparent;
    border: 2px solid #FF4D03;
    border-radius: 36px;
    cursor: pointer;
    transition: background .16s ease-out, color .16s ease-out, transform .14s ease-out;
    box-shadow: 0 1px 4px 0 #ff4d0314
}

.press-dtl .btn-ghost:hover {
    background: #FF4D03;
    color: #fff;
    transform: scale(1.05);
    box-shadow: 0 5px 18px 0 #ff4d031c
}

.press-dtl .btn-ghost:active {
    transform: scale(0.98)
}

.press-dtl .btn-ghost:focus {
    outline: 3px solid #ff4d0340;
    outline-offset: 4px
}

@media (max-width: 1024px) {
    .press-dtl .hero-img-wrap {
        padding: 48px 24px
    }

    .press-dtl .hero-img-wrap::after {
        font-size: 180px;
        right: 24px;
        bottom: 24px
    }

    .press-dtl .main-heading {
        font-size: 45px
    }

    .press-dtl .body-columns {
        grid-template-columns: 1fr;
        gap: 24px
    }

    .press-dtl .stats-grid {
        grid-template-columns: 1fr;
        gap: 24px
    }

    .press-dtl .action-zone {
        flex-direction: column;
        align-items: center
    }

    .press-dtl .btn-ghost {
        width: 100%;
        max-width: 420px
    }
}

@media (max-width: 768px) {
    .press-dtl .hero-img-wrap {
        padding: 48px 12px 24px
    }

    .press-dtl .hero-img-wrap::before {
        width: 280px;
        height: 280px
    }

    .press-dtl .hero-img-wrap::after {
        font-size: 120px;
        right: 12px;
        bottom: 12px
    }

    .press-dtl .main-heading {
        font-size: 32px
    }

    .press-dtl .meta-row {
        flex-direction: column;
        gap: 12px
    }

    .press-dtl .article-body {
        padding: 48px 12px
    }

    .press-dtl .body-intro {
        font-size: 18px
    }

    .press-dtl .stats-complex {
        padding: 48px 12px
    }

    .press-dtl .stats-heading {
        font-size: 32px
    }

    .press-dtl .stats-desc {
        padding: 24px
    }
}

@media (max-width: 360px) {
    .press-dtl .main-heading {
        font-size: 23px
    }

    .press-dtl .body-intro {
        font-size: 15px
    }

    .press-dtl .stats-heading {
        font-size: 23px
    }

    .press-dtl .stat-num {
        font-size: 32px
    }
}

.press-rel {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0;
    background: #fff
}

.press-rel * {
    box-sizing: border-box
}

.press-rel::selection {
    background: #ff4d0326;
    color: inherit
}

.press-rel .intro-banner {
    position: relative;
    padding: 96px 24px;
    background: linear-gradient(135deg, #ff4d0314 0%, #05cc860d 100%);
    overflow: hidden
}

.press-rel .intro-banner::before {
    content: '';
    position: absolute;
    top: 48px;
    right: 48px;
    width: 320px;
    height: 320px;
    background: radial-gradient(ellipse at center, #ff4d031f, transparent 65%);
    pointer-events: none
}

.press-rel .intro-banner::after {
    content: '';
    position: absolute;
    bottom: 24px;
    left: 24px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ff4d0366;
    box-shadow: 24px 0 0 #ff4d0366 48px 0 0 #ff4d0366 72px 0 0 #ff4d0366
}

.press-rel .intro-banner-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .15;
    mix-blend-mode: multiply;
    z-index: 1
}

.press-rel .intro-content {
    position: relative;
    z-index: 2;
    max-width: 880px;
    margin: 0 auto
}

.press-rel .intro-eyebrow {
    font-size: 13px;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #ff4d03d9;
    margin: 0 0 12px
}

.press-rel .intro-title {
    font-size: 62px;
    line-height: 1.1;
    color: #1a1a1a;
    margin: 0;
    animation: intro-reveal .8s cubic-bezier(0.4, 0, 0.6, 1) forwards
}

@keyframes intro-reveal {
    from {
        opacity: 0;
        clip-path: circle(0% at 50% 50%)
    }

    to {
        opacity: 1;
        clip-path: circle(100% at 50% 50%)
    }
}

.press-rel .post-grid {
    padding: 96px 24px;
    background: #fff
}

.press-rel .post-grid-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px
}

.press-rel .post-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid #ff4d031f;
    border-radius: 36px;
    overflow: hidden;
    transition: transform .18s ease-out, box-shadow .18s ease-out
}

.press-rel .post-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 52px 0 #ff4d031a
}

.press-rel .post-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0;
    border-color: transparent transparent #ff4d0314;
    transition: border-width .22s cubic-bezier(0.4, 0, 0.6, 1);
    z-index: 3
}

.press-rel .post-card:hover::before {
    border-width: 0 48px 48px 0
}

.press-rel .post-img-wrap {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: #ff4d030a
}

.press-rel .post-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .22s ease-out
}

.press-rel .post-card:hover .post-img {
    transform: scale(1.06)
}

.press-rel .post-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1
}

.press-rel .post-meta-top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 12px;
    flex-wrap: wrap
}

.press-rel .post-tag {
    font-size: 13px;
    color: #5205bee6;
    background: #5205be14;
    padding: 4px 12px;
    border-radius: 36px;
    letter-spacing: .03em
}

.press-rel .post-readtime {
    font-size: 13px;
    color: #0000008c
}

.press-rel .post-title {
    font-size: 32px;
    line-height: 1.4;
    color: #0a0a0a;
    margin: 0 0 12px;
    text-shadow: 0 1px 2px #ff4d0314
}

.press-rel .post-desc {
    font-size: 15px;
    line-height: 1.7;
    color: #000000b8;
    margin: 0 0 24px;
    flex-grow: 1
}

.press-rel .post-meta-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0 0;
    border-top: 1px solid #ff4d0314;
    gap: 12px;
    flex-wrap: wrap
}

.press-rel .post-author {
    font-size: 13px;
    color: #000000a6
}

.press-rel .post-date {
    font-size: 13px;
    color: #00000080
}

.press-rel .post-stats {
    display: flex;
    align-items: center;
    gap: 24px
}

.press-rel .post-stat {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #0009
}

.press-rel .post-stat-icon {
    width: 16px;
    height: 16px;
    fill: #ff4d03b3
}

.press-rel .post-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    text-indent: -9999px;
    overflow: hidden
}

.press-rel .expertise-split {
    padding: 96px 24px;
    background: #ff4d0305
}

.press-rel .expertise-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: start
}

.press-rel .expertise-left {
    background: #fff;
    border: 2px dashed #ff4d0333;
    border-radius: 36px;
    padding: 48px
}

.press-rel .expertise-title {
    font-size: 45px;
    line-height: 1.1;
    color: #0a0a0a;
    margin: 0 0 24px
}

.press-rel .expertise-text {
    font-size: 15px;
    line-height: 1.7;
    color: #000000b8;
    margin: 0 0 24px
}

.press-rel .expertise-text:last-child {
    margin: 0
}

.press-rel .expertise-right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px
}

.press-rel .expertise-box {
    background: #fff;
    border: 1px solid #05cc8626;
    border-radius: 36px;
    padding: 24px;
    position: relative;
    overflow: hidden
}

.press-rel .expertise-box::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #05cc864d, transparent)
}

.press-rel .expertise-box-title {
    font-size: 18px;
    line-height: 1.4;
    color: #0a0a0a;
    margin: 0 0 8px
}

.press-rel .expertise-box-text {
    font-size: 13px;
    line-height: 1.7;
    color: #000000a6;
    margin: 0
}

.press-rel .metrics-display {
    padding: 96px 24px;
    background: linear-gradient(135deg, #5205be0a 0%, #ff4d0308 100%);
    position: relative
}

.press-rel .metrics-display::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 120px;
    height: 2px;
    background: #ff4d034d
}

.press-rel .metrics-display::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 120px;
    height: 2px;
    background: #ff4d034d
}

.press-rel .metrics-inner {
    max-width: 1400px;
    margin: 0 auto
}

.press-rel .metrics-heading {
    font-size: 45px;
    line-height: 1.1;
    color: #0a0a0a;
    text-align: center;
    margin: 0 0 48px
}

.press-rel .metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 48px
}

.press-rel .metric-item {
    text-align: center;
    animation: metric-reveal .7s cubic-bezier(0.4, 0, 0.6, 1) forwards;
    opacity: 0
}

.press-rel .metric-item:nth-child(1) {
    animation-delay: .1s
}

.press-rel .metric-item:nth-child(2) {
    animation-delay: .2s
}

.press-rel .metric-item:nth-child(3) {
    animation-delay: .3s
}

.press-rel .metric-item:nth-child(4) {
    animation-delay: .4s
}

@keyframes metric-reveal {
    from {
        opacity: 0;
        transform: translateY(24px)
    }

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

.press-rel .metric-ring {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 24px
}

.press-rel .metric-ring-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 8px solid #ff4d031a
}

.press-rel .metric-ring-fill {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 8px solid transparent;
    border-top-color: #ff4d03cc;
    border-right-color: #ff4d03cc;
    border-bottom-color: #ff4d03cc;
    transform: rotate(-90deg)
}

.press-rel .metric-value {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 32px;
    line-height: 1.1;
    color: #0a0a0a;
    font-weight: 600
}

.press-rel .metric-label {
    font-size: 15px;
    line-height: 1.4;
    color: #000000b3;
    margin: 0
}

.press-rel .approach-flow {
    padding: 96px 24px;
    background: #fff
}

.press-rel .approach-inner {
    max-width: 1400px;
    margin: 0 auto
}

.press-rel .approach-header {
    max-width: 720px;
    margin: 0 0 48px
}

.press-rel .approach-title {
    font-size: 45px;
    line-height: 1.1;
    color: #0a0a0a;
    margin: 0 0 24px
}

.press-rel .approach-intro {
    font-size: 18px;
    line-height: 1.7;
    color: #000000b8;
    margin: 0
}

.press-rel .approach-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px
}

.press-rel .approach-col {
    font-size: 15px;
    line-height: 1.7;
    color: #000000b3
}

.press-rel .approach-col p {
    margin: 0 0 24px
}

.press-rel .approach-col p:last-child {
    margin: 0
}

.press-rel .approach-link {
    color: #ff4d03e6;
    text-decoration: none;
    position: relative;
    display: inline-block;
    transition: color .16s ease-out
}

.press-rel .approach-link::after {
    content: '→';
    display: inline-block;
    margin-left: 8px;
    transition: transform .16s ease-out
}

.press-rel .approach-link:hover {
    color: #ff4d03ff
}

.press-rel .approach-link:hover::after {
    transform: translateX(4px)
}

@media (min-width: 768px) {
    .press-rel .post-grid-inner {
        grid-template-columns: repeat(2, 1fr)
    }

    .press-rel .expertise-inner {
        grid-template-columns: 1fr 1fr
    }
}

@media (min-width: 1024px) {
    .press-rel .intro-banner {
        padding: 96px 48px
    }

    .press-rel .post-grid {
        padding: 96px 48px
    }

    .press-rel .post-grid-inner {
        grid-template-columns: repeat(3, 1fr)
    }

    .press-rel .expertise-split {
        padding: 96px 48px
    }

    .press-rel .metrics-display {
        padding: 96px 48px
    }

    .press-rel .approach-flow {
        padding: 96px 48px
    }
}

@media (min-width: 1440px) {
    .press-rel .intro-title {
        font-size: 62px
    }

    .press-rel .post-title {
        font-size: 32px
    }

    .press-rel .expertise-title {
        font-size: 45px
    }

    .press-rel .metrics-heading {
        font-size: 45px
    }

    .press-rel .approach-title {
        font-size: 45px
    }
}

@media (max-width: 767px) {
    .press-rel .intro-title {
        font-size: 45px
    }

    .press-rel .post-title {
        font-size: 23px
    }

    .press-rel .expertise-title {
        font-size: 32px
    }

    .press-rel .expertise-right {
        grid-template-columns: 1fr
    }

    .press-rel .metrics-heading {
        font-size: 32px
    }

    .press-rel .approach-title {
        font-size: 32px
    }

    .press-rel .approach-columns {
        grid-template-columns: 1fr
    }
}

.frnt {
    max-width: 1400px;
    margin: 0 auto
}

.frnt ::selection {
    background-color: #ff4d0326;
    color: inherit
}

.frnt .geo-clip {
    position: relative;
    min-height: 620px;
    display: flex;
    align-items: center;
    padding: 96px 24px;
    overflow: visible
}

.frnt .geo-clip-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    width: 100%;
    position: relative;
    z-index: 2
}

.frnt .geo-img-zone {
    position: relative;
    height: 520px
}

.frnt .geo-img-zone img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    clip-path: polygon(20% 0%, 100% 0%, 100% 85%, 75% 100%, 0% 100%, 0% 15%);
    filter: brightness(0.7);
    position: relative
}

.frnt .geo-img-zone::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to bottom, transparent, #0009);
    clip-path: polygon(20% 0%, 100% 0%, 100% 85%, 75% 100%, 0% 100%, 0% 15%);
    pointer-events: none
}

.frnt .txt-zone {
    position: relative;
    padding: 48px;
    background: #fffffff2;
    border-radius: 36px
}

.frnt .txt-zone::before {
    content: '';
    position: absolute;
    top: -12px;
    left: -12px;
    width: 120px;
    height: 120px;
    background-image: radial-gradient(circle, #ff4d0340 2px, transparent 2px);
    background-size: 12px 12px;
    z-index: -1;
    pointer-events: none
}

.frnt .main-hdg {
    font-size: 62px;
    line-height: 1.1;
    color: #1a0a00;
    margin: 0;
    letter-spacing: -.02em
}

.frnt .proof-sect {
    padding: 96px 24px;
    background: linear-gradient(135deg, #05cc8614 0%, #ffff 100%);
    position: relative
}

.frnt .proof-contain {
    max-width: 1100px;
    margin: 0 auto
}

.frnt .proof-hdg {
    font-size: 45px;
    line-height: 1.1;
    color: #1a0a00;
    margin: 0 0 48px;
    max-width: 680px
}

.frnt .proof-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start
}

.frnt .proof-txt {
    font-size: 18px;
    line-height: 1.7;
    color: #2d2520
}

.frnt .proof-txt p {
    margin: 0 0 24px
}

.frnt .proof-txt p:last-child {
    margin-bottom: 0
}

.frnt .proof-img-wrap {
    position: relative;
    height: 420px;
    border-radius: 36px;
    overflow: hidden;
    box-shadow: 0 10px 52px 0 #05cc861a
}

.frnt .proof-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .18s ease-out
}

.frnt .proof-img-wrap:hover img {
    transform: scale(1.05)
}

.frnt .proof-img-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, #ffffffe6, transparent 50%);
    pointer-events: none
}

.frnt .lasting-sect {
    padding: 96px 24px;
    background: #fff;
    position: relative
}

.frnt .lasting-contain {
    max-width: 1100px;
    margin: 0 auto
}

.frnt .lasting-intro {
    font-size: 18px;
    line-height: 1.7;
    color: #2d2520;
    margin: 0 0 48px;
    max-width: 100%
}

.frnt .lasting-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start
}

.frnt .lasting-col-left {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.frnt .lasting-col-right {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 96px
}

.frnt .lasting-card {
    background: #5205be0a;
    padding: 48px;
    border-radius: 36px;
    position: relative;
    transition: transform .16s cubic-bezier(0.4, 0, 0.6, 1)
}

.frnt .lasting-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 5px 18px 0 #5205be1c
}

.frnt .lasting-card-hdg {
    font-size: 23px;
    line-height: 1.4;
    color: #1a0a00;
    margin: 0 0 12px;
    text-shadow: 0 1px 2px #5205be26
}

.frnt .lasting-card-txt {
    font-size: 15px;
    line-height: 1.7;
    color: #2d2520;
    margin: 0
}

.frnt .doubt-sect {
    padding: 96px 24px;
    background: #ff4d03ff;
    position: relative;
    overflow: hidden
}

.frnt .doubt-sect::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 600px;
    height: 600px;
    background: radial-gradient(ellipse at center, #ffffff1f, transparent 70%);
    pointer-events: none
}

.frnt .doubt-contain {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2
}

.frnt .doubt-hdg {
    font-size: 45px;
    line-height: 1.1;
    color: #fff;
    margin: 0 0 48px;
    text-shadow: 0 2px 8px #0003
}

.frnt .doubt-content {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.frnt .doubt-txt {
    font-size: 18px;
    line-height: 1.7;
    color: #fffffff2
}

.frnt .doubt-txt p {
    margin: 0 0 24px
}

.frnt .doubt-txt p:last-child {
    margin-bottom: 0
}

.frnt .doubt-img-wrap {
    border-radius: 36px;
    overflow: hidden;
    height: 340px;
    box-shadow: 0 10px 52px 0 #00000040
}

.frnt .doubt-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .22s ease-out
}

.frnt .doubt-img-wrap:hover img {
    transform: scale(1.06)
}

.frnt .doubt-img-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 40%, #ff4d0399);
    pointer-events: none
}

.frnt .scale-sect {
    padding: 96px 24px;
    background: linear-gradient(135deg, #05cc860f 0%, #ffff 100%);
    position: relative
}

.frnt .scale-contain {
    max-width: 1100px;
    margin: 0 auto
}

.frnt .scale-hdg {
    font-size: 45px;
    line-height: 1.1;
    color: #1a0a00;
    margin: 0 0 96px;
    text-align: center
}

.frnt .scale-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px
}

.frnt .scale-item {
    text-align: center;
    padding: 48px 24px;
    background: #fff9;
    border-radius: 36px;
    position: relative;
    transition: transform .14s ease-out
}

.frnt .scale-item:hover {
    transform: scale(1.04);
    box-shadow: 0 5px 18px 0 #05cc861c
}

.frnt .scale-num {
    font-size: 62px;
    line-height: 1.1;
    color: #05CC86;
    margin: 0 0 12px;
    font-weight: 700;
    position: relative
}

.frnt .scale-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: float-gentle 3.2s ease-in-out infinite
}

@keyframes float-gentle {

    0%,
    100% {
        transform: translateY(0px)
    }

    50% {
        transform: translateY(-8px)
    }
}

.frnt .scale-icon svg {
    width: 100%;
    height: 100%;
    fill: #05CC86
}

.frnt .scale-label {
    font-size: 15px;
    line-height: 1.4;
    color: #2d2520;
    margin: 0
}

.frnt .shape-sect {
    padding: 96px 24px;
    background: #fff;
    position: relative
}

.frnt .shape-sect::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(to right, transparent, #05CC86 20%, #05CC86 80%, transparent)
}

.frnt .shape-contain {
    max-width: 1100px;
    margin: 0 auto
}

.frnt .shape-hdg {
    font-size: 45px;
    line-height: 1.1;
    color: #1a0a00;
    margin: 0 0 48px
}

.frnt .shape-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 48px;
    align-items: start
}

.frnt .shape-txt-zone {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.frnt .shape-txt {
    font-size: 18px;
    line-height: 1.7;
    color: #2d2520
}

.frnt .shape-txt p {
    margin: 0 0 24px
}

.frnt .shape-txt p:last-child {
    margin-bottom: 0
}

.frnt .shape-img-wrap {
    position: relative;
    height: 480px;
    border-radius: 36px;
    overflow: hidden;
    box-shadow: 0 5px 18px 0 #5205be1c
}

.frnt .shape-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .2s cubic-bezier(0.4, 0, 0.6, 1)
}

.frnt .shape-img-wrap:hover img {
    transform: scale(1.07)
}

.frnt .shape-img-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, #ffffffe6, transparent 60%);
    pointer-events: none
}

.frnt .hover-hdg-wrap {
    position: relative;
    display: inline-block;
    overflow: visible
}

.frnt .hover-hdg-main {
    position: relative;
    z-index: 2;
    transition: transform .18s ease-out
}

.frnt .hover-hdg-alt {
    position: absolute;
    top: 0;
    left: 0;
    color: #5205BE;
    opacity: 0;
    transform: translateX(-12px);
    transition: opacity .18s ease-out, transform .18s ease-out;
    z-index: 1;
    pointer-events: none
}

.frnt .hover-hdg-wrap:hover .hover-hdg-main {
    transform: translateX(12px);
    opacity: 0
}

.frnt .hover-hdg-wrap:hover .hover-hdg-alt {
    opacity: 1;
    transform: translateX(0)
}

.frnt .arr-pattern {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 180px;
    height: 180px;
    opacity: .06;
    pointer-events: none;
    z-index: 1
}

.frnt .arr-pattern svg {
    width: 100%;
    height: 100%;
    fill: #5205BE
}

@media (max-width: 1024px) {
    .frnt .geo-clip-inner {
        grid-template-columns: 1fr;
        gap: 48px
    }

    .frnt .geo-img-zone {
        height: 420px
    }

    .frnt .proof-grid {
        grid-template-columns: 1fr;
        gap: 48px
    }

    .frnt .lasting-cols {
        grid-template-columns: 1fr;
        gap: 48px
    }

    .frnt .lasting-col-right {
        margin-top: 0
    }

    .frnt .scale-grid {
        grid-template-columns: 1fr;
        gap: 48px
    }

    .frnt .shape-layout {
        grid-template-columns: 1fr;
        gap: 48px
    }

    .frnt .main-hdg {
        font-size: 45px
    }

    .frnt .proof-hdg,
    .frnt .doubt-hdg,
    .frnt .scale-hdg,
    .frnt .shape-hdg {
        font-size: 32px
    }
}

@media (max-width: 768px) {
    .frnt .geo-clip {
        padding: 48px 24px;
        min-height: auto
    }

    .frnt .txt-zone {
        padding: 24px
    }

    .frnt .main-hdg {
        font-size: 32px
    }

    .frnt .proof-sect,
    .frnt .lasting-sect,
    .frnt .doubt-sect,
    .frnt .scale-sect,
    .frnt .shape-sect {
        padding: 48px 24px
    }

    .frnt .proof-hdg,
    .frnt .doubt-hdg,
    .frnt .scale-hdg,
    .frnt .shape-hdg {
        font-size: 23px;
        margin-bottom: 24px
    }

    .frnt .lasting-card {
        padding: 24px
    }

    .frnt .scale-hdg {
        margin-bottom: 48px
    }

    .frnt .geo-img-zone {
        height: 320px
    }

    .frnt .proof-img-wrap {
        height: 280px
    }

    .frnt .doubt-img-wrap {
        height: 240px
    }

    .frnt .shape-img-wrap {
        height: 320px
    }
}

@media (max-width: 360px) {
    .frnt .geo-clip {
        padding: 24px 12px
    }

    .frnt .txt-zone {
        padding: 12px
    }

    .frnt .proof-sect,
    .frnt .lasting-sect,
    .frnt .doubt-sect,
    .frnt .scale-sect,
    .frnt .shape-sect {
        padding: 24px 12px
    }
}

.intl-law-contact {
    max-width: 1400px;
    margin: 0 auto
}

.intl-law-contact::selection {
    background-color: #ff4d032e;
    color: #000
}

.intl-law-contact .intro-panel {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 520px;
    background: linear-gradient(135deg, #05cc860a 0%, #ffff 100%);
    position: relative;
    overflow: hidden
}

.intl-law-contact .intro-panel::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: repeating-linear-gradient(to right, #05CC86 0px, #05CC86 8px, transparent 8px, transparent 16px)
}

.intl-law-contact .intro-panel::before {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 0;
    right: 0;
    height: 2px;
    background: repeating-linear-gradient(to right, #05CC86 0px, #05CC86 8px, transparent 8px, transparent 16px)
}

.intl-law-contact .visual-half {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 48px;
    background: radial-gradient(ellipse at center, #5205be0f 0%, transparent 70%)
}

.intl-law-contact .abstract-geo {
    position: absolute;
    width: 280px;
    height: 280px;
    border: 3px solid #ff4d0326;
    border-radius: 36px;
    transform: rotate(12deg);
    top: 50%;
    left: 50%;
    margin-left: -140px;
    margin-top: -140px
}

.intl-law-contact .abstract-geo::before {
    content: '';
    position: absolute;
    width: 120px;
    height: 120px;
    background: #05cc8614;
    border-radius: 36px;
    top: -24px;
    right: -24px;
    transform: rotate(-24deg)
}

.intl-law-contact .abstract-geo::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 80px;
    border: 2px solid #5205be33;
    border-radius: 0;
    bottom: 24px;
    left: -12px;
    transform: rotate(45deg)
}

.intl-law-contact .arrow-guide {
    position: absolute;
    right: 48px;
    top: 50%;
    width: 60px;
    height: 2px;
    background: #ff4d034d;
    transform: translateY(-50%)
}

.intl-law-contact .arrow-guide::after {
    content: '';
    position: absolute;
    right: 0;
    top: -4px;
    width: 0;
    height: 0;
    border-left: 10px solid #ff4d034d;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent
}

.intl-law-contact .text-half {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 48px 96px 48px 48px;
    gap: 24px
}

.intl-law-contact .overline-tag {
    display: inline-block;
    background: #05cc861f;
    color: #000;
    font-size: 13px;
    line-height: 1.1;
    padding: 8px 24px;
    border-radius: 36px;
    letter-spacing: .05em;
    text-transform: uppercase;
    align-self: flex-start
}

.intl-law-contact .primary-heading {
    font-size: 45px;
    line-height: 1.1;
    color: #000;
    margin: 0;
    text-shadow: 0 2px 12px #5205be14
}

.intl-law-contact .supporting-text {
    font-size: 18px;
    line-height: 1.7;
    color: #000000c7;
    margin: 0
}

.intl-law-contact .form-zone {
    padding: 96px 48px;
    background: linear-gradient(180deg, #ffff 0%, #5205be08 100%);
    position: relative
}

.intl-law-contact .form-zone::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: url('data:image/svg+xml,<svg width="100" height="10" xmlns="http://www.w3.org/2000/svg"><path d="M 0 5 Q 25 0,50 5 T 100 5" stroke="#ff4d0333" fill="none" stroke-width="2"/></svg>') repeat-x;
    background-size: 100px 10px
}

.intl-law-contact .form-container {
    max-width: 920px;
    margin: 0 auto
}

.intl-law-contact .form-header {
    margin-bottom: 48px;
    text-align: center
}

.intl-law-contact .form-title {
    font-size: 32px;
    line-height: 1.4;
    color: #000;
    margin: 0 0 12px;
    text-shadow: 0 1px 8px #ff4d030f
}

.intl-law-contact .form-subtitle {
    font-size: 15px;
    line-height: 1.7;
    color: #000000ad;
    margin: 0
}

.intl-law-contact .contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.intl-law-contact .name-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px
}

.intl-law-contact .field-group {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.intl-law-contact .field-label {
    font-size: 15px;
    line-height: 1.4;
    color: #000;
    font-weight: 600
}

.intl-law-contact .field-input {
    width: 100%;
    padding: 12px 24px;
    font-size: 15px;
    line-height: 1.4;
    color: #000;
    background: #fff;
    border: 2px solid #5205be26;
    border-radius: 36px;
    transition: border-color .18s cubic-bezier(0.4, 0, 0.6, 1), box-shadow .18s cubic-bezier(0.4, 0, 0.6, 1);
    box-shadow: inset 0 1px 3px #5205be0a
}

.intl-law-contact .field-input:focus {
    outline: none;
    border-color: #ff4d0380;
    box-shadow: 0 5px 18px 0 #ff4d031c
}

.intl-law-contact .field-input:hover {
    border-color: #5205be47
}

.intl-law-contact .radio-section {
    display: flex;
    flex-direction: column;
    gap: 12px
}

.intl-law-contact .radio-heading {
    font-size: 15px;
    line-height: 1.4;
    color: #000;
    font-weight: 600;
    margin: 0
}

.intl-law-contact .radio-options {
    display: flex;
    flex-wrap: wrap;
    gap: 12px
}

.intl-law-contact .radio-item {
    position: relative
}

.intl-law-contact .radio-input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0
}

.intl-law-contact .radio-label {
    display: block;
    padding: 12px 24px;
    font-size: 15px;
    line-height: 1.4;
    color: #000000b8;
    background: #fff;
    border: 2px solid #05cc862e;
    border-radius: 36px;
    cursor: pointer;
    transition: background-color .16s ease-out, border-color .16s ease-out, color .16s ease-out, transform .14s ease-out;
    box-shadow: 0 1px 4px 0 #05cc8614
}

.intl-law-contact .radio-label:hover {
    background: #05cc860f;
    border-color: #05cc8652;
    transform: scale(1.04)
}

.intl-law-contact .radio-input:checked+.radio-label {
    background: #05cc8624;
    border-color: #05cc8680;
    color: #000;
    font-weight: 600;
    box-shadow: 0 5px 18px 0 #05cc861c
}

.intl-law-contact .radio-input:focus+.radio-label {
    outline: 2px solid #ff4d0366;
    outline-offset: 2px
}

.intl-law-contact .privacy-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 24px;
    background: #ff4d030a;
    border-radius: 36px;
    border: 1px solid #ff4d031f
}

.intl-law-contact .privacy-checkbox {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    cursor: pointer;
    accent-color: #FF4D03;
    flex-shrink: 0
}

.intl-law-contact .privacy-text {
    font-size: 13px;
    line-height: 1.7;
    color: #000000c2;
    margin: 0
}

.intl-law-contact .privacy-link {
    color: #5205BE;
    text-decoration: underline;
    transition: color .14s ease-out
}

.intl-law-contact .privacy-link:hover {
    color: #FF4D03
}

.intl-law-contact .submit-btn {
    align-self: center;
    padding: 12px 48px;
    font-size: 18px;
    line-height: 1.4;
    color: #FF4D03;
    background: transparent;
    border: 2px solid #FF4D03;
    border-radius: 36px;
    cursor: pointer;
    transition: background-color .18s cubic-bezier(0.4, 0, 0.6, 1), color .18s cubic-bezier(0.4, 0, 0.6, 1), transform .16s ease-out, box-shadow .18s cubic-bezier(0.4, 0, 0.6, 1);
    font-weight: 600;
    box-shadow: 0 1px 4px 0 #ff4d0314
}

.intl-law-contact .submit-btn:hover {
    background: #FF4D03;
    color: #fff;
    transform: scale(1.06);
    box-shadow: 0 10px 52px 0 #ff4d031a
}

.intl-law-contact .submit-btn:active {
    transform: scale(1.02);
    box-shadow: inset 0 2px 4px #0000001f
}

.intl-law-contact .submit-btn:focus {
    outline: 2px solid #5205be66;
    outline-offset: 4px
}

.intl-law-contact .info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
    animation: stagger-reveal 1.2s cubic-bezier(0.4, 0, 0.6, 1) forwards
}

.intl-law-contact .info-card {
    padding: 24px;
    background: #fff;
    border-radius: 36px;
    border: 1px solid #5205be1f;
    box-shadow: 0 5px 18px 0 #5205be1c;
    transition: transform .2s cubic-bezier(0.4, 0, 0.6, 1), box-shadow .2s cubic-bezier(0.4, 0, 0.6, 1);
    opacity: 0;
    clip-path: inset(0 100% 0 0);
    animation: clip-wipe .8s cubic-bezier(0.4, 0, 0.6, 1) forwards
}

.intl-law-contact .info-card:nth-child(1) {
    animation-delay: .2s
}

.intl-law-contact .info-card:nth-child(2) {
    animation-delay: .4s
}

.intl-law-contact .info-card:nth-child(3) {
    animation-delay: .6s
}

.intl-law-contact .info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 52px 0 #5205be1a
}

.intl-law-contact .card-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(ellipse at center, #05cc861f 0%, transparent 70%);
    border-radius: 36px
}

.intl-law-contact .icon-svg {
    width: 24px;
    height: 24px;
    fill: #05CC86
}

.intl-law-contact .card-label {
    font-size: 13px;
    line-height: 1.1;
    color: #00000094;
    margin: 0 0 8px;
    letter-spacing: .04em;
    text-transform: uppercase
}

.intl-law-contact .card-value {
    font-size: 18px;
    line-height: 1.4;
    color: #000;
    margin: 0;
    font-weight: 600
}

.intl-law-contact .card-link {
    color: #5205BE;
    text-decoration: none;
    transition: color .14s ease-out;
    display: inline-flex;
    align-items: center;
    gap: 4px
}

.intl-law-contact .card-link::after {
    content: '→';
    display: inline-block;
    transition: transform .16s ease-out
}

.intl-law-contact .card-link:hover {
    color: #FF4D03
}

.intl-law-contact .card-link:hover::after {
    transform: translateX(4px)
}

@keyframes clip-wipe {
    0% {
        opacity: 0;
        clip-path: inset(0 100% 0 0)
    }

    100% {
        opacity: 1;
        clip-path: inset(0 0 0 0)
    }
}

@media (max-width: 1024px) {
    .intl-law-contact .intro-panel {
        grid-template-columns: 1fr;
        min-height: auto
    }

    .intl-law-contact .visual-half {
        order: 2;
        min-height: 320px
    }

    .intl-law-contact .text-half {
        order: 1;
        padding: 48px
    }

    .intl-law-contact .arrow-guide {
        display: none
    }

    .intl-law-contact .name-row {
        grid-template-columns: 1fr
    }

    .intl-law-contact .info-grid {
        grid-template-columns: 1fr
    }

    .intl-law-contact .form-zone {
        padding: 48px 24px
    }
}

@media (max-width: 768px) {
    .intl-law-contact .text-half {
        padding: 24px
    }

    .intl-law-contact .primary-heading {
        font-size: 32px
    }

    .intl-law-contact .form-title {
        font-size: 23px
    }

    .intl-law-contact .visual-half {
        padding: 24px
    }

    .intl-law-contact .abstract-geo {
        width: 200px;
        height: 200px;
        margin-left: -100px;
        margin-top: -100px
    }

    .intl-law-contact .radio-options {
        flex-direction: column
    }
}

@media (max-width: 360px) {
    .intl-law-contact .text-half {
        padding: 12px
    }

    .intl-law-contact .form-zone {
        padding: 24px 12px
    }

    .intl-law-contact .primary-heading {
        font-size: 23px
    }

    .intl-law-contact .submit-btn {
        width: 100%
    }
}

.abt-us {
    max-width: 1400px;
    margin: 0 auto;
    background: #fff;
    color: #1a1a1a;
    overflow-x: clip
}

.abt-us .intro-band {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 24px;
    background: linear-gradient(135deg, #ff4d0308 0%, #05cc8608 100%);
    position: relative
}

.abt-us .intro-band::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 8px;
    width: 12px;
    height: 12px;
    background: #FF4D03;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    opacity: .4
}

.abt-us .intro-band::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 28px;
    width: 12px;
    height: 12px;
    background: #05CC86;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    opacity: .4
}

.abt-us .intro-left {
    flex: 1;
    min-width: 0
}

.abt-us .intro-eyebrow {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: #FF4D03;
    margin: 0 0 8px;
    font-weight: 600
}

.abt-us .intro-heading {
    font-size: 45px;
    line-height: 1.1;
    margin: 0;
    color: #1a1a1a;
    font-weight: 700
}

.abt-us .intro-right {
    width: 280px;
    flex-shrink: 0;
    position: relative
}

.abt-us .intro-img-wrap {
    width: 100%;
    height: 180px;
    overflow: hidden;
    border-radius: 36px;
    position: relative;
    box-shadow: 0 5px 18px 0 #ff4d031c
}

.abt-us .intro-img-wrap::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(0deg, transparent, transparent 2px, #00000008 2px, #00000008 4px);
    pointer-events: none;
    z-index: 2
}

.abt-us .intro-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .18s cubic-bezier(0.4, 0, 0.6, 1), filter .18s cubic-bezier(0.4, 0, 0.6, 1)
}

.abt-us .intro-img-wrap:hover img {
    transform: scale(1.08);
    filter: sepia(0.3) hue-rotate(-10deg) saturate(1.4)
}

.abt-us .intro-pattern {
    position: absolute;
    bottom: -12px;
    right: -12px;
    width: 48px;
    height: 48px;
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    pointer-events: none
}

.abt-us .intro-pattern span {
    width: 8px;
    height: 8px;
    background: #05CC86;
    opacity: .3;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%)
}

.abt-us .story-section {
    padding: 96px 24px;
    background: #fff;
    position: relative
}

.abt-us .story-section::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 80px;
    background: #fff;
    border-radius: 50% 50% 0 0 / 100% 100% 0 0;
    transform: translateY(100%);
    box-shadow: 0 -10px 52px 0 #5205be1a
}

.abt-us .story-inner {
    max-width: 960px;
    margin: 0 auto
}

.abt-us .story-intro {
    font-size: 23px;
    line-height: 1.4;
    color: #2a2a2a;
    margin: 0 0 48px;
    font-weight: 500
}

.abt-us .story-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px
}

.abt-us .story-col p {
    font-size: 15px;
    line-height: 1.7;
    color: #3a3a3a;
    margin: 0 0 24px
}

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

.abt-us .story-col a {
    color: #FF4D03;
    text-decoration: none;
    position: relative;
    transition: color .15s ease-out;
    display: inline-flex;
    align-items: center;
    gap: 4px
}

.abt-us .story-col a::after {
    content: '→';
    display: inline-block;
    transition: transform .15s ease-out
}

.abt-us .story-col a:hover {
    color: #d63f00
}

.abt-us .story-col a:hover::after {
    transform: translateX(4px)
}

.abt-us .expertise-section {
    padding: 96px 24px 48px;
    background: #0a0a0a;
    color: #fff;
    position: relative
}

.abt-us .expertise-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 30%, #ff4d0314 0%, transparent 50%), radial-gradient(circle at 80% 70%, #05cc860f 0%, transparent 50%);
    pointer-events: none
}

.abt-us .expertise-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle, #ffffff08 1px, transparent 1px), radial-gradient(circle, #ffffff08 1px, transparent 1px);
    background-size: 40px 40px, 60px 60px;
    background-position: 0 0, 20px 20px;
    opacity: .4;
    pointer-events: none
}

.abt-us .expertise-inner {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1
}

.abt-us .expertise-header {
    text-align: center;
    margin-bottom: 48px
}

.abt-us .expertise-heading {
    font-size: 45px;
    line-height: 1.1;
    margin: 0 0 12px;
    color: #fff;
    font-weight: 700;
    text-shadow: 0 2px 8px #0000004d
}

.abt-us .expertise-subhead {
    font-size: 18px;
    line-height: 1.4;
    color: #ffffffb3;
    margin: 0
}

.abt-us .expertise-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px
}

.abt-us .expertise-card {
    background: #ffffff0a;
    padding: 24px;
    border-radius: 36px;
    border: 1px solid #ffffff14;
    transition: transform .16s ease-out, background .16s ease-out, box-shadow .16s ease-out;
    position: relative;
    overflow: hidden
}

.abt-us .expertise-card::before {
    content: '';
    position: absolute;
    top: -2px;
    right: -2px;
    width: 60px;
    height: 60px;
    background: radial-gradient(circle at center, #ff4d0333 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity .16s ease-out
}

.abt-us .expertise-card:hover {
    transform: scale(1.04);
    background: #ffffff0f;
    box-shadow: 0 10px 52px 0 #ff4d031a
}

.abt-us .expertise-card:hover::before {
    opacity: 1
}

.abt-us .expertise-card-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ff4d031f;
    border-radius: 0;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%)
}

.abt-us .expertise-card-icon svg {
    width: 24px;
    height: 24px;
    fill: #FF4D03
}

.abt-us .expertise-card-title {
    font-size: 18px;
    line-height: 1.4;
    margin: 0 0 8px;
    color: #fff;
    font-weight: 600
}

.abt-us .expertise-card-text {
    font-size: 13px;
    line-height: 1.7;
    color: #ffffffb3;
    margin: 0
}

.abt-us .expertise-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: center
}

.abt-us .expertise-showcase-img {
    width: 100%;
    height: 320px;
    border-radius: 36px;
    overflow: hidden;
    box-shadow: 0 10px 52px 0 #05cc861a;
    position: relative
}

.abt-us .expertise-showcase-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .18s cubic-bezier(0.4, 0, 0.6, 1), filter .18s cubic-bezier(0.4, 0, 0.6, 1)
}

.abt-us .expertise-showcase-img:hover img {
    transform: scale(1.08);
    filter: sepia(0.3) hue-rotate(-10deg) saturate(1.4)
}

.abt-us .expertise-showcase-content p {
    font-size: 15px;
    line-height: 1.7;
    color: #fffc;
    margin: 0 0 24px
}

.abt-us .expertise-showcase-content p:last-child {
    margin-bottom: 0
}

.abt-us .timeline-section {
    padding: 96px 24px;
    background: linear-gradient(180deg, #5205be05 0%, #05cc8605 100%);
    position: relative
}

.abt-us .timeline-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 48px;
    align-items: start
}

.abt-us .timeline-left {
    position: sticky;
    top: 96px
}

.abt-us .timeline-heading {
    font-size: 45px;
    line-height: 1.1;
    margin: 0 0 24px;
    color: #1a1a1a;
    font-weight: 700;
    text-shadow: 2px 2px 4px #5205be1f
}

.abt-us .timeline-description {
    font-size: 15px;
    line-height: 1.7;
    color: #3a3a3a;
    margin: 0 0 24px
}

.abt-us .timeline-img-wrap {
    width: 100%;
    height: 240px;
    border-radius: 36px;
    overflow: hidden;
    box-shadow: 0 5px 18px 0 #5205be1c;
    position: relative;
    margin-bottom: 24px
}

.abt-us .timeline-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .18s cubic-bezier(0.4, 0, 0.6, 1), filter .18s cubic-bezier(0.4, 0, 0.6, 1)
}

.abt-us .timeline-img-wrap:hover img {
    transform: scale(1.08);
    filter: sepia(0.3) hue-rotate(-10deg) saturate(1.4)
}

.abt-us .timeline-connect {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 24px
}

.abt-us .timeline-connect-icon {
    width: 32px;
    height: 32px;
    background: #05CC86;
    border-radius: 0;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.abt-us .timeline-connect-icon svg {
    width: 16px;
    height: 16px;
    fill: #fff
}

.abt-us .timeline-connect-line {
    height: 2px;
    flex: 1;
    background: repeating-linear-gradient(to right, #05CC86 0px, #05CC86 8px, transparent 8px, transparent 16px)
}

.abt-us .timeline-connect-icon:last-child {
    background: #5205BE
}

.abt-us .timeline-right {
    position: relative
}

.abt-us .timeline-track {
    position: relative;
    padding-left: 48px
}

.abt-us .timeline-track::before {
    content: '';
    position: absolute;
    left: 16px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, #FF4D03 0%, #05CC86 50%, #5205BE 100%);
    opacity: .3
}

.abt-us .timeline-item {
    position: relative;
    margin-bottom: 48px;
    opacity: 0;
    transform: translateX(40px);
    animation: timeline-slide-in .6s cubic-bezier(0.4, 0, 0.6, 1) forwards
}

.abt-us .timeline-item:nth-child(1) {
    animation-delay: .1s
}

.abt-us .timeline-item:nth-child(2) {
    animation-delay: .2s
}

.abt-us .timeline-item:nth-child(3) {
    animation-delay: .3s
}

.abt-us .timeline-item:nth-child(4) {
    animation-delay: .4s
}

.abt-us .timeline-item:last-child {
    margin-bottom: 0
}

.abt-us .timeline-item::before {
    content: '';
    position: absolute;
    left: -40px;
    top: 8px;
    width: 16px;
    height: 16px;
    background: #fff;
    border: 3px solid #FF4D03;
    border-radius: 50%;
    box-shadow: 0 2px 8px 0 #ff4d034d;
    z-index: 2
}

.abt-us .timeline-item.active::before {
    background: #FF4D03;
    border-color: #FF4D03;
    box-shadow: 0 0 0 4px #ff4d0333
}

.abt-us .timeline-item-year {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: #FF4D03;
    margin: 0 0 8px;
    font-weight: 600
}

.abt-us .timeline-item-title {
    font-size: 18px;
    line-height: 1.4;
    margin: 0 0 8px;
    color: #1a1a1a;
    font-weight: 600
}

.abt-us .timeline-item-text {
    font-size: 15px;
    line-height: 1.7;
    color: #3a3a3a;
    margin: 0
}

@keyframes timeline-slide-in {
    to {
        opacity: 1;
        transform: translateX(0)
    }
}

.abt-us .approach-section {
    padding: 96px 24px;
    background: #fff;
    position: relative
}

.abt-us .approach-section::before {
    content: '';
    position: absolute;
    top: 24px;
    right: 24px;
    width: 120px;
    height: 120px;
    background: #5205BE;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    opacity: .06;
    pointer-events: none
}

.abt-us .approach-inner {
    max-width: 1200px;
    margin: 0 auto
}

.abt-us .approach-header {
    margin-bottom: 48px
}

.abt-us .approach-heading {
    font-size: 45px;
    line-height: 1.1;
    margin: 0 0 12px;
    color: #1a1a1a;
    font-weight: 700
}

.abt-us .approach-subhead {
    font-size: 18px;
    line-height: 1.4;
    color: #4a4a4a;
    margin: 0
}

.abt-us .approach-layout {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 24px
}

.abt-us .approach-card {
    background: #5205be05;
    padding: 24px;
    border-radius: 36px;
    border: 1px solid #5205be14;
    transition: transform .14s ease-out, box-shadow .14s ease-out, background .14s ease-out;
    position: relative;
    overflow: hidden
}

.abt-us .approach-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, #05cc8614 50%, transparent 100%);
    transition: left .5s ease-out;
    pointer-events: none
}

.abt-us .approach-card:hover {
    transform: scale(1.06);
    box-shadow: 0 10px 52px 0 #5205be1a;
    background: #5205be0a
}

.abt-us .approach-card:hover::before {
    left: 100%
}

.abt-us .approach-card-num {
    font-size: 32px;
    line-height: 1.1;
    color: #5205BE;
    font-weight: 700;
    margin: 0 0 12px;
    opacity: .4
}

.abt-us .approach-card-title {
    font-size: 18px;
    line-height: 1.4;
    margin: 0 0 8px;
    color: #1a1a1a;
    font-weight: 600
}

.abt-us .approach-card-text {
    font-size: 13px;
    line-height: 1.7;
    color: #3a3a3a;
    margin: 0
}

.abt-us .approach-feature {
    grid-column: 3 / 5;
    grid-row: 2;
    background: linear-gradient(135deg, #ff4d030a 0%, #05cc860a 100%);
    padding: 24px;
    border-radius: 36px;
    display: flex;
    gap: 24px;
    align-items: center;
    box-shadow: 0 5px 18px 0 #ff4d031c;
    position: relative
}

.abt-us .approach-feature-img {
    width: 180px;
    height: 180px;
    border-radius: 36px;
    overflow: hidden;
    flex-shrink: 0
}

.abt-us .approach-feature-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .18s cubic-bezier(0.4, 0, 0.6, 1), filter .18s cubic-bezier(0.4, 0, 0.6, 1)
}

.abt-us .approach-feature:hover .approach-feature-img img {
    transform: scale(1.08);
    filter: sepia(0.3) hue-rotate(-10deg) saturate(1.4)
}

.abt-us .approach-feature-content p {
    font-size: 15px;
    line-height: 1.7;
    color: #2a2a2a;
    margin: 0 0 12px
}

.abt-us .approach-feature-content p:last-child {
    margin-bottom: 0
}

@media (max-width: 1024px) {
    .abt-us .intro-band {
        flex-direction: column;
        padding: 48px 24px
    }

    .abt-us .intro-right {
        width: 100%;
        max-width: 400px
    }

    .abt-us .intro-img-wrap {
        height: 240px
    }

    .abt-us .story-cols {
        grid-template-columns: 1fr;
        gap: 24px
    }

    .abt-us .expertise-grid {
        grid-template-columns: 1fr 1fr
    }

    .abt-us .expertise-showcase {
        grid-template-columns: 1fr
    }

    .abt-us .timeline-inner {
        grid-template-columns: 1fr;
        gap: 48px
    }

    .abt-us .timeline-left {
        position: static
    }

    .abt-us .approach-layout {
        grid-template-columns: 1fr 1fr
    }

    .abt-us .approach-feature {
        grid-column: 1 / 3;
        grid-row: auto
    }
}

@media (max-width: 768px) {
    .abt-us .intro-heading {
        font-size: 32px
    }

    .abt-us .intro-eyebrow {
        font-size: 13px
    }

    .abt-us .story-section {
        padding: 48px 24px
    }

    .abt-us .story-intro {
        font-size: 18px
    }

    .abt-us .expertise-section {
        padding: 48px 24px 24px
    }

    .abt-us .expertise-heading {
        font-size: 32px
    }

    .abt-us .expertise-grid {
        grid-template-columns: 1fr
    }

    .abt-us .expertise-showcase-img {
        height: 240px
    }

    .abt-us .timeline-section {
        padding: 48px 24px
    }

    .abt-us .timeline-heading {
        font-size: 32px
    }

    .abt-us .timeline-img-wrap {
        height: 200px
    }

    .abt-us .approach-section {
        padding: 48px 24px
    }

    .abt-us .approach-heading {
        font-size: 32px
    }

    .abt-us .approach-layout {
        grid-template-columns: 1fr
    }

    .abt-us .approach-feature {
        grid-column: 1;
        flex-direction: column
    }

    .abt-us .approach-feature-img {
        width: 100%;
        height: 200px
    }
}

@media (max-width: 360px) {
    .abt-us .intro-band {
        padding: 24px 12px
    }

    .abt-us .intro-heading {
        font-size: 23px
    }

    .abt-us .story-section {
        padding: 24px 12px
    }

    .abt-us .story-intro {
        font-size: 15px
    }

    .abt-us .expertise-section {
        padding: 24px 12px
    }

    .abt-us .expertise-heading {
        font-size: 23px
    }

    .abt-us .timeline-section {
        padding: 24px 12px
    }

    .abt-us .timeline-heading {
        font-size: 23px
    }

    .abt-us .approach-section {
        padding: 24px 12px
    }

    .abt-us .approach-heading {
        font-size: 23px
    }
}

.success-pg {
    background: linear-gradient(180deg, #05cc8608 0%, #ffff 100%);
    min-height: 100vh;
    padding: 96px 24px
}

.success-pg .wrap {
    max-width: 1400px;
    margin: 0 auto
}

.success-pg .center-box {
    background: #ffffffeb;
    border: 1px solid #05cc862e;
    border-radius: 36px;
    box-shadow: 0 10px 52px 0 #05cc861a;
    margin: 0 auto;
    max-width: 720px;
    padding: 48px;
    text-align: center
}

.success-pg .icon-check {
    align-items: center;
    background: linear-gradient(135deg, #05cc861f 0%, #05cc860a 100%);
    border-radius: 36px;
    display: inline-flex;
    height: 96px;
    justify-content: center;
    margin-bottom: 24px;
    width: 96px
}

.success-pg .icon-check svg {
    fill: none;
    height: 48px;
    stroke: #05CC86;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 3;
    width: 48px
}

.success-pg .title-main {
    color: #1a1a1a;
    font-size: 45px;
    line-height: 1.1;
    margin-bottom: 12px
}

.success-pg .desc-text {
    color: #000000ad;
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 48px
}

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

.success-pg .info-item {
    background: #5205be0a;
    border-radius: 36px;
    padding: 24px;
    text-align: left
}

.success-pg .info-label {
    color: #00000085;
    font-size: 13px;
    letter-spacing: .08em;
    margin-bottom: 8px;
    text-transform: uppercase
}

.success-pg .info-value {
    color: #1a1a1a;
    font-size: 18px;
    line-height: 1.4
}

.success-pg .info-value a {
    color: #5205BE;
    text-decoration: none;
    transition: color .16s ease-out
}

.success-pg .info-value a:hover {
    color: #FF4D03
}

.success-pg .btn-group {
    display: flex;
    flex-direction: column;
    gap: 12px
}

.success-pg .btn {
    background: transparent;
    border: 2px solid #ff4d033d;
    border-radius: 36px;
    color: #FF4D03;
    cursor: pointer;
    font-size: 15px;
    padding: 12px 24px;
    text-decoration: none;
    transition: all .18s cubic-bezier(0.4, 0, 0.6, 1)
}

.success-pg .btn:hover {
    background: #FF4D03;
    border-color: #FF4D03;
    color: #fff;
    transform: scale(1.04)
}

.success-pg .btn-primary {
    background: #FF4D03;
    border-color: #FF4D03;
    color: #fff
}

.success-pg .btn-primary:hover {
    background: #e04502;
    border-color: #e04502
}

.success-pg .note-box {
    background: #ff4d030f;
    border-radius: 36px;
    margin-top: 48px;
    padding: 24px
}

.success-pg .note-text {
    color: #000000b8;
    font-size: 15px;
    line-height: 1.7
}

@media (min-width: 768px) {
    .success-pg .center-box {
        padding: 96px
    }

    .success-pg .info-grid {
        grid-template-columns: 1fr 1fr
    }

    .success-pg .btn-group {
        flex-direction: row;
        justify-content: center
    }

    .success-pg .btn {
        min-width: 180px
    }
}

@media (min-width: 1024px) {
    .success-pg .icon-check {
        height: 120px;
        margin-bottom: 48px;
        width: 120px
    }

    .success-pg .icon-check svg {
        height: 62px;
        width: 62px
    }

    .success-pg .title-main {
        font-size: 62px;
        margin-bottom: 24px
    }

    .success-pg .desc-text {
        font-size: 23px
    }
}