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

body {
    margin: 0;
    overflow-x: hidden;
    min-height: 100vh;
    font-family: 'Public Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: #1a1818;
    background: #fff
}

.top-accent-strip {
    height: 3px;
    background: linear-gradient(90deg, #17FDE0 0%, #A8135A 100%);
    width: 100%
}

.header-container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 32px;
    position: relative
}

.brand-zone {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 24px;
    background: #FDEAF0;
    border-radius: 8px;
    box-shadow: -1px 2px 3px -1px #17fde00f;
    border-left: 4px solid #17FDE0
}

.brand-zone img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    display: block
}

.brand-text {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2;
    color: #A8135A;
    letter-spacing: -.02em
}

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

.nav-group {
    display: flex;
    gap: 8px;
    padding: 8px 16px;
    background: #f7f7f7;
    border-radius: 38px;
    align-items: center
}

.nav-group:nth-child(2) {
    background: linear-gradient(135deg, #17fde014 0%, #a8135a14 100%);
    box-shadow: -1px 4px 28px -1px #a8135a1c
}

.nav-item {
    font-size: 14px;
    line-height: 1.6;
    padding: 8px 16px;
    text-decoration: none;
    color: #2d2d2d;
    border-radius: 5px;
    transition: background .15s ease-out, color .12s ease;
    font-weight: 400
}

.nav-item:hover {
    background: #17fde026;
    color: #0d0d0d
}

.nav-item:focus {
    outline: 2px dashed #A8135A;
    outline-offset: 3px
}

.nav-item:active {
    background: #a8135a1f
}

.action-link {
    padding: 12px 32px;
    background: linear-gradient(135deg, #17FDE0 0%, #A8135A 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 38px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .03em;
    line-height: 1.2;
    box-shadow: -1px 4px 28px -1px #17fde01c;
    transition: box-shadow .18s ease-out, transform .15s ease;
    display: inline-block;
    border: 2px solid transparent
}

.action-link:hover {
    box-shadow: -1px 8px 60px -1px #a8135a21 0 0 0 4px #17fde033;
    transform: translateY(-1px)
}

.action-link:focus {
    outline: 2px dashed #A8135A;
    outline-offset: 4px
}

.action-link:active {
    transform: translateY(0);
    box-shadow: -1px 2px 3px -1px #17fde00f
}

@media (max-width: 1280px) {
    .header-container {
        padding: 24px;
        gap: 24px
    }

    .nav-group {
        flex-wrap: wrap
    }

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

@media (max-width: 768px) {
    .header-container {
        padding: 16px;
        gap: 16px
    }

    .brand-zone {
        padding: 12px 16px;
        gap: 12px
    }

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

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

    .primary-nav {
        width: 100%;
        flex-direction: column;
        align-items: stretch
    }

    .nav-group {
        flex-direction: column;
        align-items: stretch;
        border-radius: 8px
    }

    .nav-item {
        text-align: center;
        padding: 12px 16px
    }

    .action-link {
        text-align: center;
        padding: 14px 24px
    }
}

.footer-bg {
    background: #A8135A;
    color: #fff;
    padding: 32px 0;
    margin-top: 64px
}

.footer-container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 32px;
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 32px;
    align-items: start
}

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

.footer-logo-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: #ffffff1f;
    border-radius: 8px;
    border-left: 3px solid #17FDE0;
    box-shadow: -1px 2px 3px -1px #17fde00f;
    width: fit-content
}

.footer-logo-wrap img {
    width: 44px;
    height: 44px;
    object-fit: contain;
    display: block
}

.footer-company-name {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
    color: #17FDE0
}

.footer-hours {
    font-size: 14px;
    line-height: 1.6;
    color: #FDEAF0;
    opacity: .92
}

.footer-nav-section {
    display: flex;
    flex-direction: column;
    gap: 16px
}

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

.footer-nav-list li {
    margin: 0
}

.footer-nav-link {
    font-size: 14px;
    line-height: 1.6;
    color: #fff;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 5px;
    display: inline-block;
    background: #ffffff14;
    transition: background .14s ease, color .12s ease-out
}

.footer-nav-link:hover {
    background: #17fde040;
    color: #17FDE0
}

.footer-nav-link:focus {
    outline: 2px dashed #17FDE0;
    outline-offset: 3px
}

.footer-nav-link:active {
    background: #fdeaf033
}

.footer-contact-col {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 14px;
    line-height: 1.6
}

.footer-contact-item {
    color: #FDEAF0;
    text-decoration: none;
    transition: color .13s ease;
    display: flex;
    align-items: center;
    gap: 8px
}

.footer-contact-item:hover {
    color: #17FDE0
}

.footer-contact-item:focus {
    outline: 2px dashed #17FDE0;
    outline-offset: 2px
}

.contact-icon {
    width: 16px;
    height: 16px;
    fill: currentColor
}

.footer-bottom {
    max-width: 1500px;
    margin: 0 auto;
    padding: 16px 32px 0;
    border-top: 1px solid #ffffff26;
    margin-top: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px
}

.footer-copyright {
    font-size: 14px;
    line-height: 1.6;
    color: #FDEAF0;
    opacity: .85
}

.footer-location {
    font-size: 14px;
    line-height: 1.6;
    color: #FDEAF0;
    opacity: .75;
    max-width: 420px
}

@media (max-width: 1280px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
        padding: 0 24px
    }

    .footer-contact-col {
        grid-column: 1 / -1
    }

    .footer-bottom {
        padding: 16px 24px 0
    }
}

@media (max-width: 768px) {
    .footer-bg {
        padding: 24px 0
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 0 16px
    }

    .footer-bottom {
        padding: 16px 16px 0;
        flex-direction: column;
        align-items: flex-start
    }

    .footer-nav-list {
        flex-direction: column
    }
}

.consent-toast {
    position: fixed;
    bottom: 32px;
    left: 32px;
    max-width: 420px;
    background: #fff;
    border-radius: 14px;
    box-shadow: -1px 8px 60px -1px #a8135a21;
    padding: 24px;
    z-index: 8000;
    border: 2px solid #FDEAF0;
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .18s ease-out, transform .18s ease-out
}

.consent-toast.visible {
    opacity: 1;
    transform: translateY(0)
}

.consent-headline {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2;
    color: #A8135A;
    margin: 0 0 16px;
    letter-spacing: -.01em
}

.consent-description {
    font-size: 14px;
    line-height: 1.6;
    color: #2d2d2d;
    margin: 0 0 8px
}

.consent-uses {
    list-style: none;
    padding: 0;
    margin: 0 0 24px
}

.consent-uses li {
    font-size: 14px;
    line-height: 1.6;
    color: #4a4a4a;
    padding: 4px 0 4px 24px;
    position: relative
}

.consent-uses li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    background: #17FDE0;
    border-radius: 50%
}

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

.consent-btn {
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    border: none;
    border-radius: 38px;
    cursor: pointer;
    transition: box-shadow .15s ease-out, transform .12s ease, background .14s ease;
    font-family: inherit;
    letter-spacing: .02em;
    line-height: 1.2
}

.consent-btn.primary {
    background: linear-gradient(135deg, #17FDE0 0%, #A8135A 100%);
    color: #fff;
    box-shadow: -1px 4px 28px -1px #17fde01c
}

.consent-btn.primary:hover {
    box-shadow: -1px 8px 60px -1px #a8135a21 0 0 0 3px #17fde033;
    transform: translateY(-1px)
}

.consent-btn.primary:focus {
    outline: 2px dashed #A8135A;
    outline-offset: 3px
}

.consent-btn.primary:active {
    transform: translateY(0);
    box-shadow: -1px 2px 3px -1px #17fde00f
}

.consent-btn.secondary {
    background: #f7f7f7;
    color: #2d2d2d;
    box-shadow: -1px 2px 3px -1px #a8135a0f
}

.consent-btn.secondary:hover {
    background: #FDEAF0;
    box-shadow: -1px 4px 28px -1px #a8135a1c
}

.consent-btn.secondary:focus {
    outline: 2px dashed #A8135A;
    outline-offset: 3px
}

.consent-btn.secondary:active {
    background: #e8e8e8;
    box-shadow: inset 0 2px 4px #a8135a14
}

.consent-footer-text {
    font-size: 14px;
    line-height: 1.6;
    color: #6a6a6a;
    margin: 16px 0 0
}

.consent-policy-link {
    color: #A8135A;
    text-decoration: underline;
    transition: color .12s ease
}

.consent-policy-link:hover {
    color: #17FDE0
}

.consent-policy-link:focus {
    outline: 2px dashed #A8135A;
    outline-offset: 2px
}

@media (max-width: 768px) {
    .consent-toast {
        left: 16px;
        right: 16px;
        bottom: 16px;
        max-width: none;
        padding: 16px
    }

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

    .consent-actions {
        flex-direction: column
    }

    .consent-btn {
        width: 100%;
        text-align: center
    }
}

.policy-section {
    max-width: 1500px;
    margin: 0 auto;
    padding: 64px 32px;
    background: #fff
}

.policy-section h1 {
    font-size: 70px;
    line-height: 1.2;
    margin: 0 0 64px;
    letter-spacing: -.02em;
    color: #1a1a2e
}

.policy-section h2 {
    font-size: 52px;
    line-height: 1.2;
    margin: 64px 0 32px;
    letter-spacing: -.01em;
    color: #2d2d44
}

.policy-section h3 {
    font-size: 24px;
    line-height: 1.6;
    margin: 32px 0 16px;
    letter-spacing: -.01em;
    color: #3a3a52;
    font-weight: 600
}

.policy-section h4 {
    font-size: 24px;
    line-height: 1.6;
    margin: 32px 0 16px;
    letter-spacing: -.01em;
    color: #3a3a52;
    font-weight: 500
}

.policy-section h5 {
    font-size: 14px;
    line-height: 1.6;
    margin: 16px 0 8px;
    color: #4a4a62;
    font-weight: 600;
    text-transform: uppercase
}

.policy-section h6 {
    font-size: 14px;
    line-height: 1.6;
    margin: 16px 0 8px;
    color: #4a4a62;
    font-weight: 500
}

.policy-section p {
    font-size: 14px;
    line-height: 1.9;
    margin: 0 0 16px;
    color: #2d2d44
}

.policy-section ul {
    margin: 0 0 16px;
    padding: 0 0 0 32px;
    list-style-type: disc
}

.policy-section ol {
    margin: 0 0 16px;
    padding: 0 0 0 32px;
    list-style-type: decimal
}

.policy-section li {
    font-size: 14px;
    line-height: 1.9;
    margin: 0 0 8px;
    color: #2d2d44
}

.policy-section ul ul {
    margin: 8px 0;
    padding: 0 0 0 32px;
    list-style-type: circle
}

.policy-section ol ol {
    margin: 8px 0;
    padding: 0 0 0 32px;
    list-style-type: lower-alpha
}

.policy-section em {
    font-style: italic;
    color: #A8135A
}

.policy-section i {
    font-style: italic
}

.policy-section strong {
    font-weight: 600;
    color: #1a1a2e
}

.policy-section a {
    color: #A8135A;
    text-decoration: underline;
    transition: color .15s ease-out
}

.policy-section a:hover {
    color: #17FDE0
}

.policy-section table {
    width: 100%;
    margin: 32px 0;
    border-collapse: collapse;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: -1px 2px 3px -1px #17fde00f
}

.policy-section thead {
    background: #FDEAF0
}

.policy-section th {
    font-size: 14px;
    line-height: 1.6;
    padding: 16px;
    text-align: left;
    font-weight: 600;
    color: #1a1a2e;
    border-bottom: 2px solid #17FDE0
}

.policy-section td {
    font-size: 14px;
    line-height: 1.9;
    padding: 16px;
    color: #2d2d44;
    border-bottom: 1px solid #f0f0f5
}

.policy-section tbody tr:last-child td {
    border-bottom: none
}

.policy-section tbody tr:hover {
    background: #fafafe;
    transition: background .12s ease
}

.policy-section div {
    margin: 0
}

.policy-section hr {
    border: none;
    height: 2px;
    background: linear-gradient(90deg, #17FDE0 0%, #A8135A 100%);
    margin: 64px 0;
    border-radius: 5px
}

@media (max-width: 1280px) {
    .policy-section {
        padding: 64px 32px
    }

    .policy-section h1 {
        font-size: 52px;
        margin: 0 0 32px
    }

    .policy-section h2 {
        font-size: 24px;
        margin: 32px 0 16px
    }
}

@media (max-width: 768px) {
    .policy-section {
        padding: 32px 16px
    }

    .policy-section h1 {
        font-size: 24px;
        margin: 0 0 32px
    }

    .policy-section h2 {
        font-size: 24px;
        margin: 32px 0 16px
    }

    .policy-section table {
        display: block;
        overflow-x: auto
    }

    .policy-section ul {
        padding: 0 0 0 16px
    }

    .policy-section ol {
        padding: 0 0 0 16px
    }
}

.exp-opinion-detail {
    background: #fff;
    min-height: 100vh;
    padding: 0;
    margin: 0
}

.exp-opinion-detail .hero-art {
    max-width: 1500px;
    margin: 0 auto;
    padding: 32px 16px 64px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: start
}

.exp-opinion-detail .hero-art .img-col {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 14px;
    box-shadow: -1px 4px 28px -1px #17fde01c
}

.exp-opinion-detail .hero-art .img-col img {
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
    object-fit: cover;
    display: block;
    position: relative
}

.exp-opinion-detail .hero-art .img-col::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 60% 40%, transparent 30%, #0009);
    pointer-events: none
}

.exp-opinion-detail .hero-art .txt-col {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.exp-opinion-detail .hero-art .meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center
}

.exp-opinion-detail .hero-art .tag-cat {
    display: inline-block;
    padding: 8px 16px;
    background: linear-gradient(135deg, #17FDE0 0%, #A8135A 100%);
    color: #fff;
    font-size: 14px;
    line-height: 1.2;
    border-radius: 38px;
    text-transform: uppercase;
    letter-spacing: .02em;
    font-weight: 600
}

.exp-opinion-detail .hero-art .tag-art {
    display: inline-block;
    padding: 8px 16px;
    background: #FDEAF0;
    color: #A8135A;
    font-size: 14px;
    line-height: 1.2;
    border-radius: 38px;
    font-weight: 500
}

.exp-opinion-detail .hero-art .main-hdg {
    font-size: 52px;
    line-height: 1.2;
    color: #1a1b1e;
    letter-spacing: -.02em;
    margin: 0;
    text-shadow: 1px 2px 4px #17fde026
}

.exp-opinion-detail .hero-art .sub-hdg {
    font-size: 24px;
    line-height: 1.6;
    color: #4a4b4e;
    margin: 0
}

.exp-opinion-detail .hero-art .author-line {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 8px 0 0
}

.exp-opinion-detail .hero-art .author-line::before {
    content: '';
    width: 32px;
    height: 2px;
    background: linear-gradient(90deg, #17FDE0 0%, #A8135A 100%)
}

.exp-opinion-detail .hero-art .author-line span {
    font-size: 14px;
    line-height: 1.6;
    color: #6a6b6e;
    font-weight: 500
}

.exp-opinion-detail .hero-art .corner-deco {
    position: absolute;
    pointer-events: none
}

.exp-opinion-detail .hero-art .corner-deco.top-left {
    top: 16px;
    left: 16px;
    width: 48px;
    height: 48px;
    border-top: 2px solid #17fde066;
    border-left: 2px solid #17fde066
}

.exp-opinion-detail .hero-art .corner-deco.bottom-right {
    bottom: 16px;
    right: 16px;
    width: 48px;
    height: 48px;
    border-bottom: 2px solid #a8135a66;
    border-right: 2px solid #a8135a66
}

.exp-opinion-detail .divider-step {
    position: relative;
    height: 32px;
    background: linear-gradient(90deg, #fff 0%, #fff 25%, #FDEAF0 25%, #FDEAF0 50%, #fff 50%, #fff 75%, #FDEAF0 75%, #FDEAF0 100%)
}

.exp-opinion-detail .article-body {
    max-width: 1500px;
    margin: 0 auto;
    padding: 64px 16px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="200" height="200"><defs><pattern id="paper" x="0" y="0" width="4" height="4" patternUnits="userSpaceOnUse"><rect width="4" height="4" fill="%23fafbfc"/><circle cx="1" cy="1" r="0.5" fill="%23f0f1f2"/></pattern></defs><rect width="200" height="200" fill="url(%23paper)"/></svg>');
    background-size: 100px 100px;
    position: relative
}

.exp-opinion-detail .article-body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 900px;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #17FDE0 50%, transparent 100%)
}

.exp-opinion-detail .article-body .content-wrap {
    max-width: 900px;
    margin: 0 auto
}

.exp-opinion-detail .article-body .content-wrap p {
    font-size: 14px;
    line-height: 1.9;
    color: #2a2b2e;
    margin: 0 0 16px
}

.exp-opinion-detail .article-body .content-wrap h2 {
    font-size: 24px;
    line-height: 1.2;
    color: #1a1b1e;
    margin: 32px 0 16px;
    letter-spacing: -.01em;
    text-shadow: 0 1px 2px #a8135a1a;
    position: relative;
    padding-bottom: 8px
}

.exp-opinion-detail .article-body .content-wrap h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 64px;
    height: 2px;
    background: linear-gradient(90deg, #A8135A 0%, #17FDE0 100%)
}

.exp-opinion-detail .article-body .content-wrap small {
    font-size: 14px;
    line-height: 1.6;
    color: #6a6b6e;
    display: block;
    margin: 8px 0
}

.exp-opinion-detail .article-body .content-wrap cite {
    font-size: 14px;
    line-height: 1.6;
    color: #4a4b4e;
    font-style: italic;
    display: block;
    margin: 8px 0
}

.exp-opinion-detail .article-body .content-wrap ul,
.exp-opinion-detail .article-body .content-wrap ol {
    margin: 16px 0;
    padding-left: 32px
}

.exp-opinion-detail .article-body .content-wrap ul li,
.exp-opinion-detail .article-body .content-wrap ol li {
    font-size: 14px;
    line-height: 1.9;
    color: #2a2b2e;
    margin-bottom: 8px
}

.exp-opinion-detail .article-body .content-wrap ul li::marker {
    color: #17FDE0
}

.exp-opinion-detail .article-body .content-wrap ol li::marker {
    color: #A8135A;
    font-weight: 600
}

.exp-opinion-detail .article-body .content-wrap blockquote {
    margin: 32px 0;
    padding: 16px 16px 16px 24px;
    border-left: 4px solid #17FDE0;
    background: linear-gradient(90deg, #17fde00d 0%, transparent 100%);
    border-radius: 0 8px 8px 0
}

.exp-opinion-detail .article-body .content-wrap blockquote p {
    font-size: 14px;
    line-height: 1.6;
    color: #3a3b3e;
    font-style: italic;
    margin: 0
}

.exp-opinion-detail .article-body .content-wrap time {
    font-size: 14px;
    line-height: 1.6;
    color: #6a6b6e;
    font-weight: 500
}

.exp-opinion-detail .article-body .content-wrap table {
    width: 100%;
    border-collapse: collapse;
    margin: 32px 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: -1px 2px 3px -1px #a8135a0f
}

.exp-opinion-detail .article-body .content-wrap caption {
    font-size: 14px;
    line-height: 1.6;
    color: #4a4b4e;
    text-align: left;
    padding: 8px 0;
    font-weight: 600
}

.exp-opinion-detail .article-body .content-wrap th {
    background: linear-gradient(135deg, #17FDE0 0%, #A8135A 100%);
    color: #fff;
    font-size: 14px;
    line-height: 1.6;
    padding: 16px;
    text-align: left;
    font-weight: 600
}

.exp-opinion-detail .article-body .content-wrap td {
    font-size: 14px;
    line-height: 1.6;
    color: #2a2b2e;
    padding: 16px;
    border-bottom: 1px solid #e8e9ea
}

.exp-opinion-detail .article-body .content-wrap tbody tr:nth-child(odd) {
    background: #fafbfc
}

.exp-opinion-detail .article-body .content-wrap tbody tr:hover {
    background: #17fde008;
    transition: background .15s ease-out
}

.exp-opinion-detail .article-body .content-wrap a {
    color: #A8135A;
    text-decoration: none;
    border-bottom: 3px solid #17FDE0;
    transition: border-color .12s ease
}

.exp-opinion-detail .article-body .content-wrap a:hover {
    border-bottom-color: #A8135A
}

.exp-opinion-detail .divider-dashed {
    max-width: 1500px;
    margin: 0 auto;
    padding: 32px 16px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center
}

.exp-opinion-detail .divider-dashed::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 1px;
    border-top: 2px dashed #17fde04d
}

.exp-opinion-detail .divider-dashed .deco-circle {
    width: 16px;
    height: 16px;
    background: linear-gradient(135deg, #17FDE0 0%, #A8135A 100%);
    border-radius: 999px;
    position: relative;
    z-index: 1;
    box-shadow: 0 0 0 8px #fff
}

.exp-opinion-detail .stats-grid {
    max-width: 1500px;
    margin: 0 auto;
    padding: 32px 16px 64px;
    background: linear-gradient(180deg, #fff 0%, #FDEAF0 100%)
}

.exp-opinion-detail .stats-grid .grid-hdg {
    font-size: 24px;
    line-height: 1.2;
    color: #1a1b1e;
    text-align: center;
    margin: 0 0 32px;
    letter-spacing: -.01em
}

.exp-opinion-detail .stats-grid .three-col {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    position: relative
}

.exp-opinion-detail .stats-grid .three-col::before {
    content: '';
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    height: 4px;
    background: linear-gradient(90deg, transparent 0%, #17FDE0 20%, #A8135A 50%, #17FDE0 80%, transparent 100%);
    border-radius: 5px;
    animation: shift-gradient 8s linear infinite
}

@keyframes shift-gradient {
    0% {
        background-position: 0 50%
    }

    100% {
        background-position: 200% 50%
    }
}

.exp-opinion-detail .stats-grid .stat-card {
    background: #fff;
    padding: 32px;
    border-radius: 14px;
    box-shadow: -1px 4px 28px -1px #a8135a1c;
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: relative;
    overflow: hidden;
    transition: transform .18s ease-out, box-shadow .18s ease-out
}

.exp-opinion-detail .stats-grid .stat-card:hover {
    transform: translateY(-4px);
    box-shadow: -1px 8px 60px -1px #a8135a21
}

.exp-opinion-detail .stats-grid .stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #17FDE0 0%, #A8135A 100%)
}

.exp-opinion-detail .stats-grid .stat-card .label {
    font-size: 14px;
    line-height: 1.6;
    color: #6a6b6e;
    text-transform: uppercase;
    letter-spacing: .05em;
    font-weight: 500;
    margin: 0
}

.exp-opinion-detail .stats-grid .stat-card .divider-thin {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, #17FDE0 0%, transparent 100%);
    margin: 8px 0
}

.exp-opinion-detail .stats-grid .stat-card .value {
    font-size: 52px;
    line-height: 1.2;
    color: #1a1b1e;
    font-weight: 700;
    margin: 0;
    background: linear-gradient(135deg, #17FDE0 0%, #A8135A 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent
}

.exp-opinion-detail .cta-zone {
    max-width: 1500px;
    margin: 0 auto;
    padding: 64px 16px;
    background: #fff;
    text-align: center;
    position: relative
}

.exp-opinion-detail .cta-zone::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 32px;
    background: linear-gradient(90deg, #FDEAF0 0%, #FDEAF0 12.5%, #fff 12.5%, #fff 25%, #FDEAF0 25%, #FDEAF0 37.5%, #fff 37.5%, #fff 50%, #FDEAF0 50%, #FDEAF0 62.5%, #fff 62.5%, #fff 75%, #FDEAF0 75%, #FDEAF0 87.5%, #fff 87.5%, #fff 100%)
}

.exp-opinion-detail .cta-zone .cta-hdg {
    font-size: 24px;
    line-height: 1.6;
    color: #1a1b1e;
    margin: 0 0 16px;
    letter-spacing: -.01em
}

.exp-opinion-detail .cta-zone .cta-txt {
    font-size: 14px;
    line-height: 1.9;
    color: #4a4b4e;
    margin: 0 0 32px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto
}

.exp-opinion-detail .cta-zone .btn-primary {
    display: inline-block;
    padding: 16px 32px;
    background: linear-gradient(135deg, #17FDE0 0%, #A8135A 100%);
    color: #fff;
    font-size: 14px;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: .05em;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    box-shadow: -1px 4px 28px -1px #17fde01c;
    transition: transform .15s ease, box-shadow .15s ease;
    position: relative
}

.exp-opinion-detail .cta-zone .btn-primary::before {
    content: '';
    position: absolute;
    inset: -4px;
    border: 2px solid transparent;
    border-radius: 8px;
    background: linear-gradient(135deg, #17FDE0 0%, #A8135A 100%) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity .15s ease
}

.exp-opinion-detail .cta-zone .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: -1px 8px 60px -1px #17fde021
}

.exp-opinion-detail .cta-zone .btn-primary:hover::before {
    opacity: 1
}

.exp-opinion-detail .cta-zone .btn-primary:active {
    transform: translateY(0)
}

@media (min-width: 768px) {
    .exp-opinion-detail .hero-art {
        grid-template-columns: 1.2fr 1fr;
        gap: 64px;
        padding: 64px 32px 96px
    }

    .exp-opinion-detail .hero-art .img-col {
        grid-row: 1 / 2
    }

    .exp-opinion-detail .hero-art .txt-col {
        grid-row: 1 / 2
    }

    .exp-opinion-detail .article-body {
        padding: 96px 32px
    }

    .exp-opinion-detail .stats-grid {
        padding: 64px 32px 96px
    }

    .exp-opinion-detail .stats-grid .three-col {
        grid-template-columns: repeat(3, 1fr);
        gap: 32px
    }

    .exp-opinion-detail .cta-zone {
        padding: 96px 32px
    }
}

@media (min-width: 1280px) {
    .exp-opinion-detail .hero-art {
        padding: 96px 64px 128px
    }

    .exp-opinion-detail .hero-art .main-hdg {
        font-size: 70px
    }

    .exp-opinion-detail .article-body {
        padding: 128px 64px
    }

    .exp-opinion-detail .stats-grid {
        padding: 96px 64px 128px
    }

    .exp-opinion-detail .cta-zone {
        padding: 128px 64px
    }
}

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

.learn-prog .manifesto-zone {
    position: relative;
    padding: 64px 16px;
    overflow: hidden;
    background: linear-gradient(157deg, #fff 0%, #fff 45%, #FDEAF0 45%, #FDEAF0 100%)
}

.learn-prog .manifesto-inner {
    max-width: 1500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 32px;
    position: relative;
    z-index: 2
}

.learn-prog .manifesto-visual {
    width: 100%;
    max-width: 720px;
    margin: 0 auto;
    position: relative
}

.learn-prog .manifesto-visual img {
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 14px;
    display: block;
    position: relative;
    filter: brightness(0.7);
    -webkit-mask-image: linear-gradient(to bottom, #000f 0%, #000f 60%, #0000004d 100%);
    mask-image: linear-gradient(to bottom, #000f 0%, #000f 60%, #0000004d 100%)
}

.learn-prog .manifesto-text {
    text-align: center;
    max-width: 900px;
    margin: 0 auto
}

.learn-prog .manifesto-text h1 {
    font-size: 52px;
    line-height: 1.2;
    margin: 0 0 24px;
    letter-spacing: -.02em;
    text-shadow: 1px 2px 4px #17fde026
}

.learn-prog .manifesto-text .declaration {
    font-size: 24px;
    line-height: 1.6;
    margin: 0 0 16px;
    color: #333
}

.learn-prog .manifesto-text .declaration-sub {
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
    color: #555
}

.learn-prog .geo-shapes {
    position: absolute;
    top: 32px;
    right: 64px;
    width: 180px;
    height: 180px;
    opacity: .08;
    pointer-events: none
}

.learn-prog .geo-shapes .shape-circle {
    position: absolute;
    width: 80px;
    height: 80px;
    border: 3px solid #17FDE0;
    border-radius: 50%;
    top: 0;
    left: 0
}

.learn-prog .geo-shapes .shape-square {
    position: absolute;
    width: 60px;
    height: 60px;
    border: 3px solid #A8135A;
    border-radius: 5px;
    bottom: 20px;
    right: 0;
    transform: rotate(15deg)
}

.learn-prog .geo-shapes .shape-triangle {
    position: absolute;
    width: 0;
    height: 0;
    border-left: 35px solid transparent;
    border-right: 35px solid transparent;
    border-bottom: 60px solid #17FDE0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%)
}

.learn-prog .split-divider {
    width: 100%;
    height: 60px;
    overflow: hidden;
    line-height: 0;
    transform: translateY(-1px)
}

.learn-prog .split-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 2px);
    height: 60px;
    transform: translateX(30%)
}

.learn-prog .split-divider .shape-fill {
    fill: #f5f5f5
}

.learn-prog .curriculum-display {
    padding: 64px 16px;
    background: #f5f5f5;
    position: relative
}

.learn-prog .curriculum-display::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: linear-gradient(0deg, #17fde005 1px, transparent 1px), linear-gradient(90deg, #17fde005 1px, transparent 1px);
    background-size: 24px 24px;
    pointer-events: none;
    opacity: .6
}

.learn-prog .curriculum-container {
    max-width: 1500px;
    margin: 0 auto;
    position: relative;
    z-index: 1
}

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

.learn-prog .curriculum-sidebar {
    background: #fff;
    padding: 32px;
    border-radius: 14px;
    box-shadow: -1px 4px 28px -1px #17fde01c;
    border: 2px dashed #17FDE0
}

.learn-prog .curriculum-sidebar h2 {
    font-size: 24px;
    line-height: 1.2;
    margin: 0 0 24px;
    letter-spacing: -.01em;
    text-shadow: 0 1px 2px #a8135a1f
}

.learn-prog .curriculum-sidebar .sidebar-intro {
    font-size: 14px;
    line-height: 1.6;
    margin: 0 0 24px;
    color: #444
}

.learn-prog .curriculum-sidebar .skill-icons {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    margin: 32px 0
}

.learn-prog .curriculum-sidebar .skill-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #17FDE0 0%, #fff 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative
}

.learn-prog .curriculum-sidebar .skill-icon svg {
    width: 24px;
    height: 24px;
    fill: #A8135A
}

.learn-prog .curriculum-sidebar .dashed-connector {
    flex: 1;
    height: 2px;
    background-image: linear-gradient(to right, #17FDE0 50%, transparent 50%);
    background-size: 12px 2px;
    background-repeat: repeat-x
}

.learn-prog .curriculum-main {
    background: #fff;
    padding: 32px;
    border-radius: 14px;
    box-shadow: -1px 2px 3px -1px #a8135a0f
}

.learn-prog .curriculum-main h3 {
    font-size: 24px;
    line-height: 1.2;
    margin: 0 0 16px;
    letter-spacing: -.01em
}

.learn-prog .curriculum-main .main-desc {
    font-size: 14px;
    line-height: 1.6;
    margin: 0 0 8px;
    color: #333
}

.learn-prog .curriculum-main .main-detail {
    font-size: 14px;
    line-height: 1.9;
    margin: 0;
    color: #555
}

.learn-prog .progress-track {
    padding: 64px 16px;
    background: linear-gradient(225deg, #fff 0%, #f9f9f9 100%);
    position: relative;
    animation: bg-pulse 6s ease-in-out infinite
}

@keyframes bg-pulse {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: .85
    }
}

.learn-prog .progress-container {
    max-width: 1500px;
    margin: 0 auto
}

.learn-prog .progress-header {
    text-align: left;
    margin: 0 0 32px
}

.learn-prog .progress-header h2 {
    font-size: 52px;
    line-height: 1.2;
    margin: 0 0 16px;
    letter-spacing: -.02em;
    text-shadow: 2px 3px 6px #17fde02e
}

.learn-prog .progress-header .progress-intro {
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
    color: #444
}

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

.learn-prog .progress-stage {
    background: #fff;
    padding: 24px;
    border-radius: 8px;
    box-shadow: -1px 2px 3px -1px #a8135a0f;
    position: relative;
    overflow: hidden
}

.learn-prog .progress-stage::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 6px;
    background: #e0e0e0;
    transition: background .15s ease-out
}

.learn-prog .progress-stage.filled::before {
    background: linear-gradient(180deg, #17FDE0 0%, #A8135A 100%)
}

.learn-prog .progress-stage h4 {
    font-size: 24px;
    line-height: 1.2;
    margin: 0 0 8px;
    padding-left: 16px;
    letter-spacing: -.01em
}

.learn-prog .progress-stage .stage-desc {
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
    padding-left: 16px;
    color: #555
}

.learn-prog .enrollment-path {
    padding: 64px 16px;
    background: linear-gradient(45deg, #FDEAF0 0%, #fff 50%, #FDEAF0 100%);
    position: relative
}

.learn-prog .enrollment-container {
    max-width: 1500px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px
}

.learn-prog .enrollment-visual {
    position: relative
}

.learn-prog .enrollment-visual img {
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 38px;
    display: block;
    box-shadow: -1px 8px 60px -1px #a8135a21
}

.learn-prog .enrollment-details {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.learn-prog .enrollment-details h2 {
    font-size: 52px;
    line-height: 1.2;
    margin: 0;
    letter-spacing: -.02em;
    text-shadow: 1px 2px 5px #17fde024
}

.learn-prog .enrollment-details .enroll-intro {
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
    color: #333
}

.learn-prog .enrollment-details .enroll-extended {
    font-size: 14px;
    line-height: 1.9;
    margin: 0;
    color: #555
}

.learn-prog .enrollment-details .enroll-extended .inline-highlight {
    position: relative;
    display: inline;
    text-decoration: none;
    color: inherit;
    background: linear-gradient(to right, #17FDE0 0%, #17FDE0 100%);
    background-size: 0 3px;
    background-position: center bottom;
    background-repeat: no-repeat;
    transition: background-size .18s ease;
    padding-bottom: 2px
}

.learn-prog .enrollment-details .enroll-extended .inline-highlight:hover,
.learn-prog .enrollment-details .enroll-extended .inline-highlight:focus {
    background-size: 100% 3px
}

.learn-prog .enrollment-cta {
    margin-top: 16px
}

.learn-prog .enrollment-cta .cta-btn {
    display: inline-block;
    padding: 16px 32px;
    background: #A8135A;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: .05em;
    border-radius: 8px;
    border: 2px solid #A8135A;
    transition: transform .12s ease-out, box-shadow .12s ease-out;
    box-shadow: -1px 2px 3px -1px #a8135a0f;
    cursor: pointer
}

.learn-prog .enrollment-cta .cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 0 4px #a8135a26 -1px 4px 28px -1px #a8135a1c
}

.learn-prog .enrollment-cta .cta-btn:active {
    transform: translateY(0);
    box-shadow: inset 0 2px 4px #00000026
}

@media (min-width: 768px) {
    .learn-prog .manifesto-zone {
        padding: 96px 32px
    }

    .learn-prog .manifesto-inner {
        flex-direction: row;
        align-items: center;
        gap: 64px
    }

    .learn-prog .manifesto-visual {
        width: 45%;
        max-width: none;
        margin: 0
    }

    .learn-prog .manifesto-text {
        width: 55%;
        text-align: left;
        margin: 0
    }

    .learn-prog .manifesto-text h1 {
        font-size: 70px
    }

    .learn-prog .curriculum-display {
        padding: 96px 32px
    }

    .learn-prog .curriculum-layout {
        grid-template-columns: 30% 1fr;
        gap: 64px
    }

    .learn-prog .progress-track {
        padding: 96px 32px
    }

    .learn-prog .progress-header h2 {
        font-size: 70px
    }

    .learn-prog .progress-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px
    }

    .learn-prog .enrollment-path {
        padding: 96px 32px
    }

    .learn-prog .enrollment-container {
        grid-template-columns: 1fr 1fr;
        gap: 64px;
        align-items: center
    }

    .learn-prog .enrollment-details h2 {
        font-size: 70px
    }
}

@media (min-width: 1280px) {
    .learn-prog .progress-grid {
        grid-template-columns: repeat(4, 1fr)
    }
}

.reach-us {
    background: #FFF;
    color: #1A1A1A;
    overflow-x: clip
}

.reach-us h1,
.reach-us h2,
.reach-us h3,
.reach-us h4,
.reach-us h5,
.reach-us h6 {
    margin: 0;
    font-weight: 600
}

.reach-us p {
    margin: 0
}

.reach-us button {
    cursor: pointer;
    border: none;
    background: none;
    padding: 0
}

.reach-us input,
.reach-us select,
.reach-us textarea {
    border: none;
    outline: none;
    background: none
}

.reach-us * {
    box-sizing: border-box
}

.reach-us .intro-panel {
    max-width: 1500px;
    margin: 0 auto;
    padding: 64px 32px;
    position: relative;
    overflow: hidden
}

.reach-us .intro-panel::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -80px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: #17FDE0;
    opacity: .08;
    z-index: 0
}

.reach-us .intro-panel::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -60px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: #A8135A;
    opacity: .06;
    z-index: 0
}

.reach-us .intro-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto
}

.reach-us .intro-head {
    font-size: 52px;
    line-height: 1.2;
    letter-spacing: -.02em;
    margin-bottom: 32px;
    text-shadow: -1px 2px 3px #17fde01c;
    animation: slideInDown .6s ease-out
}

.reach-us .intro-text {
    font-size: 24px;
    line-height: 1.6;
    color: #4A4A4A;
    margin-bottom: 16px;
    animation: slideInDown .7s ease-out
}

.reach-us .intro-details {
    font-size: 14px;
    line-height: 1.6;
    color: #6A6A6A;
    animation: slideInDown .8s ease-out
}

.reach-us .dot-path {
    display: flex;
    gap: 8px;
    margin-top: 32px;
    justify-content: center;
    animation: slideInDown .9s ease-out
}

.reach-us .dot-path span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, #17FDE0 0%, #A8135A 100%);
    opacity: .4
}

.reach-us .dot-path span:nth-child(2) {
    opacity: .5
}

.reach-us .dot-path span:nth-child(3) {
    opacity: .6
}

.reach-us .dot-path span:nth-child(4) {
    opacity: .7
}

.reach-us .dot-path span:nth-child(5) {
    opacity: .8
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-32px)
    }

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

.reach-us .engagement-zone {
    background: linear-gradient(165deg, #FAFAFA 0%, #F5F5F5 100%);
    position: relative;
    clip-path: polygon(0 0, 100% 5%, 100% 100%, 0 95%);
    padding: 96px 32px 128px
}

.reach-us .engagement-zone::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: #17FDE0;
    opacity: .04;
    z-index: 0
}

.reach-us .engagement-zone::after {
    content: '';
    position: absolute;
    top: 20%;
    right: 10%;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: #A8135A;
    opacity: .05;
    z-index: 0
}

.reach-us .engagement-wrap {
    max-width: 1500px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr;
    gap: 64px
}

.reach-us .details-card {
    background: #FFF;
    border-radius: 14px;
    padding: 64px;
    box-shadow: -1px 4px 28px -1px #17fde01c;
    animation: cardSlideIn .7s ease-out
}

@keyframes cardSlideIn {
    from {
        opacity: 0;
        transform: translateY(48px)
    }

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

.reach-us .details-title {
    font-size: 52px;
    line-height: 1.2;
    letter-spacing: -.01em;
    margin-bottom: 32px;
    text-shadow: -1px 2px 3px #a8135a17
}

.reach-us .info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-bottom: 64px
}

.reach-us .info-item {
    padding: 32px;
    background: linear-gradient(135deg, #FAFAFA 0%, #F7F7F7 100%);
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    transition: transform .15s ease-out, box-shadow .15s ease-out
}

.reach-us .info-item:hover {
    transform: translateY(-4px);
    box-shadow: -1px 8px 60px -1px #17fde021
}

.reach-us .info-item::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #17FDE0 0%, #A8135A 100%);
    opacity: 0;
    transition: opacity .15s ease-out
}

.reach-us .info-item:hover::before {
    opacity: 1
}

.reach-us .info-label {
    font-size: 14px;
    line-height: 1.6;
    color: #7A7A7A;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: .05em
}

.reach-us .info-value {
    font-size: 24px;
    line-height: 1.6;
    color: #2A2A2A;
    word-break: break-word
}

.reach-us .info-value a {
    color: inherit;
    text-decoration: none;
    position: relative;
    transition: color .12s ease-out
}

.reach-us .info-value a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #17FDE0 0%, #A8135A 100%);
    opacity: 0;
    transition: opacity .12s ease-out
}

.reach-us .info-value a:hover {
    color: #A8135A
}

.reach-us .info-value a:hover::after {
    opacity: 1
}

.reach-us .contact-form {
    background: #FFF;
    border-radius: 14px;
    padding: 64px;
    box-shadow: -1px 4px 28px -1px #a8135a1c;
    animation: formSlideIn .8s ease-out
}

@keyframes formSlideIn {
    from {
        opacity: 0;
        transform: translateY(64px)
    }

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

.reach-us .form-head {
    font-size: 52px;
    line-height: 1.2;
    letter-spacing: -.01em;
    margin-bottom: 16px;
    text-shadow: -1px 2px 3px #17fde017
}

.reach-us .form-intro {
    font-size: 14px;
    line-height: 1.6;
    color: #6A6A6A;
    margin-bottom: 32px
}

.reach-us .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-bottom: 32px
}

.reach-us .field-group {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.reach-us .field-label {
    font-size: 14px;
    line-height: 1.6;
    color: #4A4A4A;
    font-weight: 600
}

.reach-us .field-input {
    padding: 16px;
    background: #F9F9F9;
    border-radius: 8px;
    font-size: 14px;
    line-height: 1.6;
    color: #2A2A2A;
    transition: background .12s ease-out, box-shadow .12s ease-out;
    box-shadow: inset -1px 2px 3px -1px #0000000a
}

.reach-us .field-input:focus {
    background: #FFF;
    box-shadow: inset -1px 2px 3px -1px #17fde026 -1px 4px 28px -1px #17fde01c
}

.reach-us .field-input::placeholder {
    color: #2a2a2a66
}

.reach-us .timeline-selector {
    margin-bottom: 32px
}

.reach-us .timeline-label {
    font-size: 14px;
    line-height: 1.6;
    color: #4A4A4A;
    font-weight: 600;
    margin-bottom: 16px;
    display: block
}

.reach-us .timeline-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px
}

.reach-us .timeline-opt {
    position: relative
}

.reach-us .timeline-opt input {
    position: absolute;
    opacity: 0;
    pointer-events: none
}

.reach-us .timeline-opt label {
    display: block;
    padding: 16px 32px;
    background: #F9F9F9;
    border-radius: 38px;
    font-size: 14px;
    line-height: 1.6;
    color: #4A4A4A;
    text-align: center;
    cursor: pointer;
    transition: background .15s ease-out, color .15s ease-out, box-shadow .15s ease-out, transform .1s ease-out;
    user-select: none
}

.reach-us .timeline-opt label:hover {
    background: #F0F0F0;
    transform: translateY(-2px);
    box-shadow: -1px 4px 28px -1px #17fde01c
}

.reach-us .timeline-opt input:checked+label {
    background: linear-gradient(135deg, #17FDE0 0%, #A8135A 100%);
    color: #FFF;
    box-shadow: -1px 4px 28px -1px #17fde01c;
    animation: gentleShake .4s ease-out
}

@keyframes gentleShake {

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

    25% {
        transform: translateX(-3px)
    }

    75% {
        transform: translateX(3px)
    }
}

.reach-us .consent-block {
    margin-bottom: 32px;
    display: flex;
    align-items: flex-start;
    gap: 16px
}

.reach-us .consent-check {
    position: relative;
    flex-shrink: 0;
    margin-top: 2px
}

.reach-us .consent-check input {
    position: absolute;
    opacity: 0;
    pointer-events: none
}

.reach-us .consent-check label {
    display: block;
    width: 24px;
    height: 24px;
    background: #F9F9F9;
    border-radius: 5px;
    cursor: pointer;
    position: relative;
    transition: background .12s ease-out, box-shadow .12s ease-out;
    box-shadow: inset -1px 2px 3px -1px #0000000a
}

.reach-us .consent-check label::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 12px;
    height: 12px;
    background: linear-gradient(135deg, #17FDE0 0%, #A8135A 100%);
    border-radius: 2px;
    transition: transform .15s ease-out
}

.reach-us .consent-check input:checked+label {
    background: #FFF;
    box-shadow: -1px 4px 28px -1px #17fde01c
}

.reach-us .consent-check input:checked+label::after {
    transform: translate(-50%, -50%) scale(1)
}

.reach-us .consent-text {
    font-size: 14px;
    line-height: 1.6;
    color: #6A6A6A
}

.reach-us .consent-text a {
    color: #A8135A;
    text-decoration: none;
    position: relative;
    transition: color .12s ease-out
}

.reach-us .consent-text a::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #A8135A;
    opacity: 0;
    transition: opacity .12s ease-out
}

.reach-us .consent-text a:hover {
    color: #17FDE0
}

.reach-us .consent-text a:hover::after {
    opacity: 1;
    background: #17FDE0
}

.reach-us .submit-btn {
    padding: 16px 64px;
    background: linear-gradient(135deg, #17FDE0 0%, #A8135A 100%);
    color: #FFF;
    font-size: 14px;
    line-height: 1.6;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .08em;
    border-radius: 38px;
    cursor: pointer;
    position: relative;
    overflow: visible;
    transition: transform .15s ease-out, box-shadow .15s ease-out;
    box-shadow: -1px 4px 28px -1px #17fde01c
}

.reach-us .submit-btn::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border-radius: 38px;
    border: 2px solid transparent;
    background: linear-gradient(135deg, #17FDE0 0%, #A8135A 100%);
    -webkit-mask: linear-gradient(#FFF 0 0) content-box, linear-gradient(#FFF 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity .15s ease-out
}

.reach-us .submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: -1px 8px 60px -1px #17fde021
}

.reach-us .submit-btn:hover::before {
    opacity: 1
}

.reach-us .submit-btn:active {
    transform: translateY(0)
}

.reach-us .visual-asset {
    display: none
}

@media (min-width: 768px) {
    .reach-us .intro-panel {
        padding: 96px 32px
    }

    .reach-us .intro-head {
        font-size: 70px
    }

    .reach-us .engagement-wrap {
        grid-template-columns: 1fr 1.2fr;
        align-items: start
    }

    .reach-us .details-card {
        padding: 64px
    }

    .reach-us .contact-form {
        padding: 64px
    }
}

@media (min-width: 1280px) {
    .reach-us .intro-panel {
        padding: 128px 64px
    }

    .reach-us .engagement-zone {
        padding: 128px 64px 160px
    }

    .reach-us .details-card {
        padding: 64px
    }

    .reach-us .contact-form {
        padding: 64px
    }

    .reach-us .form-row {
        gap: 32px
    }
}

@media (max-width: 767px) {
    .reach-us .intro-head {
        font-size: 52px
    }

    .reach-us .intro-text {
        font-size: 24px
    }

    .reach-us .details-title {
        font-size: 52px
    }

    .reach-us .form-head {
        font-size: 52px
    }

    .reach-us .details-card {
        padding: 32px
    }

    .reach-us .contact-form {
        padding: 32px
    }

    .reach-us .form-row {
        grid-template-columns: 1fr;
        gap: 32px
    }

    .reach-us .info-grid {
        grid-template-columns: 1fr
    }

    .reach-us .timeline-options {
        grid-template-columns: 1fr
    }
}

.exp-opn {
    max-width: 1500px;
    margin: 0 auto;
    background: #fff;
    overflow-x: clip
}

.exp-opn .stage-intro {
    background: linear-gradient(to right, #A8135A 0%, #f5f5f5 100%);
    padding: 64px 32px;
    position: relative;
    overflow: hidden
}

.exp-opn .stage-intro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, transparent 0%, #00000026 100%);
    animation: vignettePulse 4.2s ease-in-out infinite;
    pointer-events: none
}

@keyframes vignettePulse {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: .6
    }
}

.exp-opn .stage-intro-inner {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1
}

.exp-opn .stage-intro h1 {
    font-size: 70px;
    line-height: 1.2;
    letter-spacing: -.02em;
    color: #fff;
    margin: 0 0 16px;
    text-shadow: -1px 2px 3px #a8135a4d
}

.exp-opn .stage-intro .intro-desc {
    font-size: 24px;
    line-height: 1.6;
    color: #FDEAF0;
    margin: 0;
    max-width: 720px
}

@media (max-width: 768px) {
    .exp-opn .stage-intro {
        padding: 32px 16px
    }

    .exp-opn .stage-intro h1 {
        font-size: 52px
    }

    .exp-opn .stage-intro .intro-desc {
        font-size: 14px;
        line-height: 1.6
    }
}

.exp-opn .posts-grid {
    padding: 64px 32px;
    background: #fafafa;
    position: relative
}

.exp-opn .posts-grid::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    height: 32px;
    background: radial-gradient(circle at 16px 0, transparent 16px, #fafafa 16px);
    background-size: 32px 32px;
    background-position: 0 0
}

.exp-opn .posts-grid-inner {
    max-width: 1100px;
    margin: 0 auto
}

.exp-opn .posts-grid h2 {
    font-size: 52px;
    line-height: 1.2;
    letter-spacing: -.01em;
    color: #1a1a1a;
    margin: 0 0 64px;
    text-align: center;
    text-shadow: -1px 1px 2px #17fde026
}

.exp-opn .posts-listing {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px
}

@media (max-width: 1280px) {
    .exp-opn .posts-listing {
        grid-template-columns: 1fr
    }
}

@media (max-width: 768px) {
    .exp-opn .posts-grid {
        padding: 32px 16px
    }

    .exp-opn .posts-grid h2 {
        font-size: 24px;
        margin: 0 0 32px
    }

    .exp-opn .posts-listing {
        gap: 16px
    }
}

.exp-opn .post-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: -1px 2px 3px -1px #a8135a0f;
    transition: transform .15s ease-out, box-shadow .15s ease-out;
    position: relative
}

.exp-opn .post-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, transparent 50%, #17fde008 100%);
    opacity: 0;
    transition: opacity .15s ease-out;
    pointer-events: none
}

.exp-opn .post-card:hover {
    transform: translateY(-4px);
    box-shadow: -1px 8px 60px -1px #a8135a21
}

.exp-opn .post-card:hover::before {
    opacity: 1
}

.exp-opn .post-card-link {
    display: block;
    text-decoration: none;
    color: inherit
}

.exp-opn .post-img-wrap {
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: #e8e8e8;
    position: relative
}

.exp-opn .post-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .2s ease-out
}

.exp-opn .post-card:hover .post-img-wrap img {
    transform: scale(1.05)
}

.exp-opn .post-content {
    padding: 32px
}

.exp-opn .post-meta {
    display: flex;
    gap: 8px;
    margin: 0 0 16px;
    flex-wrap: wrap
}

.exp-opn .post-tag {
    display: inline-block;
    padding: 4px 12px;
    background: #FDEAF0;
    color: #A8135A;
    font-size: 14px;
    line-height: 1.6;
    border-radius: 5px;
    font-weight: 500
}

.exp-opn .post-cat-tag {
    display: inline-block;
    padding: 4px 12px;
    background: #17fde026;
    color: #0d7a6e;
    font-size: 14px;
    line-height: 1.6;
    border-radius: 5px;
    font-weight: 500
}

.exp-opn .post-card h3 {
    font-size: 24px;
    line-height: 1.2;
    letter-spacing: -.01em;
    color: #1a1a1a;
    margin: 0 0 8px;
    text-shadow: -1px 1px 2px #a8135a14
}

.exp-opn .post-subtitle {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin: 0 0 16px
}

.exp-opn .post-desc {
    font-size: 14px;
    line-height: 1.6;
    color: #4a4a4a;
    margin: 0 0 16px
}

.exp-opn .post-author {
    font-size: 14px;
    line-height: 1.6;
    color: #A8135A;
    font-weight: 500;
    margin: 0
}

@media (max-width: 768px) {
    .exp-opn .post-img-wrap {
        height: 220px
    }

    .exp-opn .post-content {
        padding: 16px
    }

    .exp-opn .post-card h3 {
        font-size: 14px
    }
}

.exp-opn .split-zone {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 500px
}

@media (max-width: 1280px) {
    .exp-opn .split-zone {
        grid-template-columns: 1fr
    }
}

.exp-opn .split-left {
    background: #17FDE0;
    padding: 64px 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative
}

.exp-opn .split-left::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 32px;
    width: 24px;
    height: 24px;
    border-right: 3px solid #fff6;
    border-bottom: 3px solid #fff6;
    transform: translateY(-50%) rotate(-45deg);
    pointer-events: none
}

.exp-opn .split-left-inner {
    max-width: 600px;
    margin: 0 auto
}

.exp-opn .split-left h2 {
    font-size: 52px;
    line-height: 1.2;
    letter-spacing: -.02em;
    color: #1a1a1a;
    margin: 0 0 32px;
    text-shadow: -1px 2px 4px #ffffff80
}

.exp-opn .split-left p {
    font-size: 14px;
    line-height: 1.9;
    color: #0d4a44;
    margin: 0 0 16px
}

.exp-opn .split-left p:last-of-type {
    margin: 0
}

.exp-opn .split-right {
    background: #f9f9f9;
    padding: 64px 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-left: 1px solid #e0e0e0
}

@media (max-width: 1280px) {
    .exp-opn .split-right {
        border-left: none;
        border-top: 1px solid #e0e0e0
    }
}

.exp-opn .split-right-inner {
    max-width: 600px;
    margin: 0 auto
}

.exp-opn .split-right h3 {
    font-size: 24px;
    line-height: 1.2;
    letter-spacing: -.01em;
    color: #A8135A;
    margin: 0 0 16px;
    text-shadow: -1px 1px 2px #a8135a1a
}

.exp-opn .split-right p {
    font-size: 14px;
    line-height: 1.6;
    color: #4a4a4a;
    margin: 0 0 16px
}

.exp-opn .split-right p:last-of-type {
    margin: 0
}

@media (max-width: 768px) {

    .exp-opn .split-left,
    .exp-opn .split-right {
        padding: 32px 16px
    }

    .exp-opn .split-left h2 {
        font-size: 24px;
        margin: 0 0 16px
    }

    .exp-opn .split-right h3 {
        font-size: 14px
    }
}

.exp-opn .checkerboard-section {
    padding: 64px 32px;
    background: #fff;
    position: relative
}

.exp-opn .checkerboard-section::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    height: 32px;
    background: radial-gradient(circle at 16px 0, transparent 16px, #fff 16px);
    background-size: 32px 32px;
    background-position: 0 0
}

.exp-opn .checkerboard-inner {
    max-width: 1100px;
    margin: 0 auto
}

.exp-opn .checkerboard-section h2 {
    font-size: 52px;
    line-height: 1.2;
    letter-spacing: -.02em;
    color: #1a1a1a;
    margin: 0 0 32px;
    text-align: center;
    text-shadow: -1px 2px 3px #17fde01f
}

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

@media (max-width: 1280px) {
    .exp-opn .feature-grid {
        grid-template-columns: 1fr
    }
}

@media (max-width: 768px) {
    .exp-opn .checkerboard-section {
        padding: 32px 16px
    }

    .exp-opn .checkerboard-section h2 {
        font-size: 24px;
        margin: 0 0 16px
    }

    .exp-opn .feature-grid {
        gap: 16px
    }
}

.exp-opn .feature-item {
    background: #fafafa;
    padding: 32px;
    border-radius: 8px;
    box-shadow: -1px 2px 3px -1px #17fde00f;
    position: relative;
    overflow: hidden;
    transition: background .18s ease
}

.exp-opn .feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: linear-gradient(45deg, transparent 25%, #a8135a0a 25%, #a8135a0a 50%, transparent 50%, transparent 75%, #a8135a0a 75%), linear-gradient(45deg, transparent 25%, #a8135a0a 25%, #a8135a0a 50%, transparent 50%, transparent 75%, #a8135a0a 75%);
    background-size: 20px 20px;
    background-position: 0 0, 10px 10px;
    opacity: 0;
    transition: opacity .18s ease;
    pointer-events: none
}

.exp-opn .feature-item:hover::before {
    opacity: 1
}

.exp-opn .feature-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #17FDE0 0%, #A8135A 100%);
    border-radius: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 16px;
    box-shadow: -1px 4px 28px -1px #a8135a1c
}

.exp-opn .feature-icon svg {
    width: 28px;
    height: 28px;
    fill: #fff
}

.exp-opn .feature-item h4 {
    font-size: 24px;
    line-height: 1.2;
    letter-spacing: -.01em;
    color: #1a1a1a;
    margin: 0 0 8px;
    text-shadow: -1px 1px 2px #17fde014
}

.exp-opn .feature-item p {
    font-size: 14px;
    line-height: 1.6;
    color: #4a4a4a;
    margin: 0
}

@media (max-width: 768px) {
    .exp-opn .feature-item {
        padding: 16px
    }

    .exp-opn .feature-icon {
        width: 48px;
        height: 48px;
        margin: 0 0 8px
    }

    .exp-opn .feature-icon svg {
        width: 24px;
        height: 24px
    }

    .exp-opn .feature-item h4 {
        font-size: 14px
    }
}

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

.abt-pg .intro-hero {
    background: linear-gradient(127deg, #17FDE0 0%, #e8f9f7 100%);
    padding: 64px 32px;
    position: relative;
    overflow: hidden
}

.abt-pg .intro-hero::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, #17fde026 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse-expand 6s ease-in-out infinite;
    pointer-events: none
}

@keyframes pulse-expand {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: .4
    }

    50% {
        transform: translate(-50%, -50%) scale(1.3);
        opacity: .1
    }
}

.abt-pg .intro-hero::after {
    content: '';
    position: absolute;
    top: 16px;
    right: 16px;
    width: 80px;
    height: 80px;
    background-image: linear-gradient(90deg, #a8135a4d 0%, #a8135a4d 2px, transparent 2px), linear-gradient(90deg, #a8135a4d 0%, #a8135a4d 2px, transparent 2px), linear-gradient(90deg, #a8135a4d 0%, #a8135a4d 2px, transparent 2px);
    background-size: 100% 2px;
    background-position: 0 0, 0 12px, 0 24px;
    background-repeat: no-repeat;
    pointer-events: none
}

.abt-pg .dot-scatter {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none
}

.abt-pg .dot-scatter::before,
.abt-pg .dot-scatter::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    background: #a8135a26;
    border-radius: 50%
}

.abt-pg .dot-scatter::before {
    top: 20%;
    left: 15%
}

.abt-pg .dot-scatter::after {
    bottom: 30%;
    right: 25%
}

.abt-pg .intro-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    text-align: center
}

.abt-pg .intro-content h1 {
    font-size: 70px;
    line-height: 1.2;
    margin: 0 0 32px;
    letter-spacing: -.02em;
    color: #0a0a0a;
    text-shadow: 2px 2px 8px #17fde04d
}

.abt-pg .intro-content .lead {
    font-size: 24px;
    line-height: 1.6;
    margin: 0;
    color: #2a2a2a
}

.abt-pg .divider-dual {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 32px;
    margin: 0;
    height: 1px
}

.abt-pg .divider-dual::before,
.abt-pg .divider-dual::after {
    content: '';
    width: 120px;
    height: 2px;
    background: linear-gradient(90deg, #17FDE0, #A8135A)
}

.abt-pg .story-grid {
    padding: 64px 32px;
    background: #fafafa;
    position: relative
}

.abt-pg .story-grid::before {
    content: '';
    position: absolute;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, #a8135a14 0%, transparent 70%);
    top: 50%;
    left: 20%;
    transform: translate(-50%, -50%);
    animation: pulse-expand-alt 8s ease-in-out infinite;
    pointer-events: none
}

@keyframes pulse-expand-alt {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: .3
    }

    50% {
        transform: translate(-50%, -50%) scale(1.4);
        opacity: .05
    }
}

.abt-pg .story-wrap {
    max-width: 1500px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 64px;
    align-items: start
}

.abt-pg .story-txt h2 {
    font-size: 52px;
    line-height: 1.2;
    margin: 0 0 32px;
    letter-spacing: -.01em;
    color: #0a0a0a;
    text-shadow: 1px 1px 4px #a8135a26
}

.abt-pg .story-txt .para-micro {
    font-size: 14px;
    line-height: 1.6;
    margin: 0 0 16px;
    color: #3a3a3a
}

.abt-pg .story-txt .para-medium {
    font-size: 14px;
    line-height: 1.9;
    margin: 0 0 32px;
    color: #3a3a3a
}

.abt-pg .story-img-wrap {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: -1px 4px 28px -1px #17fde01c
}

.abt-pg .story-img-wrap img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block
}

.abt-pg .divider-dual-alt {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 32px;
    margin: 0;
    height: 1px
}

.abt-pg .divider-dual-alt::before,
.abt-pg .divider-dual-alt::after {
    content: '';
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, #A8135A, #17FDE0)
}

.abt-pg .tiers-showcase {
    padding: 64px 32px;
    background: #e8f4f9
}

.abt-pg .tiers-container {
    max-width: 1500px;
    margin: 0 auto
}

.abt-pg .tiers-header {
    text-align: left;
    margin: 0 0 64px
}

.abt-pg .tiers-header h2 {
    font-size: 52px;
    line-height: 1.2;
    margin: 0 0 16px;
    letter-spacing: -.01em;
    color: #0a0a0a;
    text-shadow: 1px 1px 3px #17fde033
}

.abt-pg .tiers-header .desc {
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
    color: #3a3a3a
}

.abt-pg .tiers-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr 1fr;
    gap: 32px
}

.abt-pg .tier-card {
    background: #fff;
    border-radius: 14px;
    padding: 32px;
    box-shadow: -1px 2px 3px -1px #a8135a0f;
    transition: transform .15s ease-out, box-shadow .15s ease-out;
    position: relative;
    overflow: hidden
}

.abt-pg .tier-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #17FDE0, #A8135A);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .18s ease
}

.abt-pg .tier-card:hover {
    transform: translateY(-8px);
    box-shadow: -1px 8px 60px -1px #a8135a21
}

.abt-pg .tier-card:hover::before {
    transform: scaleX(1)
}

.abt-pg .tier-card h3 {
    font-size: 24px;
    line-height: 1.2;
    margin: 0 0 16px;
    color: #0a0a0a
}

.abt-pg .tier-card .tier-price {
    font-size: 52px;
    line-height: 1.2;
    margin: 0 0 8px;
    color: #A8135A;
    font-weight: 700
}

.abt-pg .tier-card .tier-period {
    font-size: 14px;
    line-height: 1.6;
    margin: 0 0 32px;
    color: #5a5a5a
}

.abt-pg .tier-features {
    list-style: none;
    padding: 0;
    margin: 0
}

.abt-pg .tier-features li {
    font-size: 14px;
    line-height: 1.9;
    padding: 8px 0;
    color: #3a3a3a;
    position: relative;
    padding-left: 24px
}

.abt-pg .tier-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 16px;
    width: 12px;
    height: 2px;
    background: #17FDE0
}

.abt-pg .divider-dual-third {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 32px;
    margin: 0;
    height: 1px
}

.abt-pg .divider-dual-third::before,
.abt-pg .divider-dual-third::after {
    content: '';
    width: 140px;
    height: 2px;
    background: linear-gradient(90deg, #17FDE0, #A8135A)
}

.abt-pg .team-density {
    padding: 64px 32px;
    background: #fff;
    position: relative
}

.abt-pg .team-density::after {
    content: '';
    position: absolute;
    bottom: 16px;
    left: 16px;
    width: 60px;
    height: 60px;
    background-image: linear-gradient(90deg, #17fde040 0%, #17fde040 2px, transparent 2px), linear-gradient(90deg, #17fde040 0%, #17fde040 2px, transparent 2px), linear-gradient(90deg, #17fde040 0%, #17fde040 2px, transparent 2px);
    background-size: 100% 2px;
    background-position: 0 0, 0 10px, 0 20px;
    background-repeat: no-repeat;
    pointer-events: none
}

.abt-pg .team-wrap {
    max-width: 1500px;
    margin: 0 auto
}

.abt-pg .team-intro {
    text-align: center;
    margin: 0 0 64px
}

.abt-pg .team-intro h2 {
    font-size: 52px;
    line-height: 1.2;
    margin: 0 0 16px;
    letter-spacing: -.01em;
    color: #0a0a0a;
    text-shadow: 1px 1px 4px #a8135a33
}

.abt-pg .team-intro .desc {
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
    color: #3a3a3a;
    max-width: 700px;
    margin: 0 auto
}

.abt-pg .team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px
}

.abt-pg .team-member {
    background: #f5f5f5;
    border-radius: 8px;
    padding: 16px;
    text-align: center;
    transition: background .12s ease
}

.abt-pg .team-member:hover {
    background: #FDEAF0
}

.abt-pg .member-img-wrap {
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: 8px;
    overflow: hidden;
    margin: 0 0 16px;
    box-shadow: -1px 2px 3px -1px #17fde00f
}

.abt-pg .member-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block
}

.abt-pg .team-member h4 {
    font-size: 14px;
    line-height: 1.2;
    margin: 0 0 8px;
    color: #0a0a0a
}

.abt-pg .team-member .role {
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
    color: #5a5a5a
}

.abt-pg .team-member .specialty {
    font-size: 14px;
    line-height: 1.6;
    margin: 8px 0 0;
    color: #A8135A
}

@media (max-width: 1280px) {
    .abt-pg .intro-content h1 {
        font-size: 52px
    }

    .abt-pg .story-wrap {
        grid-template-columns: 1fr;
        gap: 32px
    }

    .abt-pg .tiers-grid {
        grid-template-columns: 1fr
    }

    .abt-pg .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px
    }
}

@media (max-width: 768px) {
    .abt-pg .intro-hero {
        padding: 32px 16px
    }

    .abt-pg .intro-content h1 {
        font-size: 24px;
        margin: 0 0 16px
    }

    .abt-pg .intro-content .lead {
        font-size: 14px
    }

    .abt-pg .story-grid,
    .abt-pg .tiers-showcase,
    .abt-pg .team-density {
        padding: 32px 16px
    }

    .abt-pg .story-txt h2,
    .abt-pg .tiers-header h2,
    .abt-pg .team-intro h2 {
        font-size: 24px
    }

    .abt-pg .tier-card .tier-price {
        font-size: 24px
    }

    .abt-pg .divider-dual::before,
    .abt-pg .divider-dual::after,
    .abt-pg .divider-dual-alt::before,
    .abt-pg .divider-dual-alt::after,
    .abt-pg .divider-dual-third::before,
    .abt-pg .divider-dual-third::after {
        width: 60px
    }

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

    .abt-pg .tiers-header {
        margin: 0 0 32px
    }

    .abt-pg .team-intro {
        margin: 0 0 32px
    }
}

.accred-vault {
    background: #fff;
    color: #1a1a1a;
    overflow-x: clip
}

.accred-vault .top-hero {
    max-width: 1500px;
    margin: 0 auto;
    padding: 64px 16px;
    display: flex;
    flex-direction: column;
    gap: 32px;
    position: relative
}

.accred-vault .img-zone {
    width: 100%;
    height: 420px;
    position: relative;
    overflow: hidden;
    border-radius: 14px
}

.accred-vault .img-zone::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #17fde04d 0%, #a8135a4d 100%);
    z-index: 2;
    pointer-events: none
}

.accred-vault .img-zone img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .15s ease-out
}

.accred-vault .img-zone:hover img {
    transform: scale(1.03)
}

.accred-vault .img-zone::after {
    content: '';
    position: absolute;
    inset: -2px;
    border: 3px solid #17FDE0;
    border-radius: 14px;
    opacity: 0;
    transition: opacity .12s ease;
    z-index: 3;
    pointer-events: none
}

.accred-vault .img-zone:hover::after {
    opacity: 1
}

.accred-vault .txt-zone {
    padding: 32px;
    border: 2px solid #FDEAF0;
    border-radius: 14px;
    position: relative
}

.accred-vault .txt-zone::before,
.accred-vault .txt-zone::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 40px;
    border: 3px solid #A8135A
}

.accred-vault .txt-zone::before {
    top: -3px;
    left: -3px;
    border-right: none;
    border-bottom: none;
    border-radius: 14px 0 0 0
}

.accred-vault .txt-zone::after {
    bottom: -3px;
    right: -3px;
    border-left: none;
    border-top: none;
    border-radius: 0 0 14px 0
}

.accred-vault .hero-h {
    font-size: 52px;
    line-height: 1.2;
    letter-spacing: -.02em;
    margin: 0 0 16px;
    text-shadow: 1px 2px 4px #17fde026
}

.accred-vault .hero-desc {
    font-size: 24px;
    line-height: 1.6;
    margin: 0;
    color: #2a2a2a
}

.accred-vault .cert-grid {
    max-width: 1500px;
    margin: 0 auto;
    padding: 64px 16px;
    background: linear-gradient(165deg, #f8f8f8 0%, #fff 100%)
}

.accred-vault .grid-h {
    font-size: 52px;
    line-height: 1.2;
    letter-spacing: -.02em;
    margin: 0 0 32px;
    text-align: center;
    text-shadow: 2px 3px 6px #a8135a1f
}

.accred-vault .cards-wrap {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px
}

.accred-vault .cert-card {
    background: #fff;
    border-radius: 14px;
    padding: 32px;
    box-shadow: -1px 4px 28px -1px #17fde01c;
    transition: box-shadow .15s ease, transform .12s ease-out;
    position: relative;
    border: 1px solid transparent
}

.accred-vault .cert-card:hover {
    box-shadow: -1px 8px 60px -1px #17fde021;
    transform: translateY(-4px);
    border-color: #17FDE0
}

.accred-vault .cert-card-h {
    font-size: 24px;
    line-height: 1.2;
    letter-spacing: -.01em;
    margin: 0 0 16px;
    color: #1a1a1a;
    position: relative;
    padding-bottom: 12px
}

.accred-vault .cert-card-h::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: #A8135A;
    border-radius: 5px
}

.accred-vault .cert-card-txt {
    font-size: 14px;
    line-height: 1.6;
    margin: 0 0 16px;
    color: #3a3a3a
}

.accred-vault .cert-card-txt:last-child {
    margin-bottom: 0
}

.accred-vault .cert-meta {
    font-size: 14px;
    line-height: 1.6;
    color: #5a5a5a;
    margin: 16px 0 0;
    padding-top: 16px;
    border-top: 1px solid #FDEAF0;
    font-style: italic
}

.accred-vault .process-flow {
    max-width: 1500px;
    margin: 0 auto;
    padding: 64px 16px;
    position: relative;
    background: #17FDE0
}

.accred-vault .flow-h {
    font-size: 52px;
    line-height: 1.2;
    letter-spacing: -.02em;
    margin: 0 0 32px;
    text-align: center;
    color: #1a1a1a;
    text-shadow: 1px 2px 3px #ffffff4d
}

.accred-vault .steps-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    list-style: none;
    margin: 0;
    padding: 0
}

.accred-vault .step-item {
    background: #fff;
    border-radius: 8px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    box-shadow: -1px 2px 3px -1px #a8135a0f;
    position: relative;
    overflow: hidden
}

.accred-vault .step-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 6px;
    background: #A8135A;
    transform: scaleY(0);
    transform-origin: top;
    transition: transform .18s ease-out
}

.accred-vault .step-item:hover::before {
    transform: scaleY(1)
}

.accred-vault .step-num {
    font-size: 52px;
    line-height: 1;
    letter-spacing: -.02em;
    color: #FDEAF0;
    font-weight: 700;
    margin: 0
}

.accred-vault .step-title {
    font-size: 24px;
    line-height: 1.2;
    letter-spacing: -.01em;
    margin: 0 0 8px;
    color: #1a1a1a
}

.accred-vault .step-txt {
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
    color: #3a3a3a
}

.accred-vault .divider-band {
    max-width: 600px;
    height: 4px;
    background: linear-gradient(90deg, transparent 0%, #A8135A 50%, transparent 100%);
    margin: 0 auto;
    border-radius: 38px
}

.accred-vault .stats-dual {
    max-width: 1500px;
    margin: 0 auto;
    padding: 64px 16px;
    background: linear-gradient(180deg, #fff 0%, #f5f5f5 100%)
}

.accred-vault .stats-h {
    font-size: 52px;
    line-height: 1.2;
    letter-spacing: -.02em;
    margin: 0 0 32px;
    text-align: center;
    text-shadow: 2px 3px 5px #17fde01a
}

.accred-vault .metrics-wrap {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 32px
}

.accred-vault .metric-box {
    background: #fff;
    border-radius: 14px;
    padding: 32px;
    text-align: center;
    box-shadow: -1px 4px 28px -1px #a8135a1c;
    position: relative;
    overflow: hidden
}

.accred-vault .metric-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #17fde00d 0%, #a8135a0d 100%);
    opacity: 0;
    transition: opacity .14s ease
}

.accred-vault .metric-box:hover::before {
    opacity: 1
}

.accred-vault .metric-val {
    font-size: 70px;
    line-height: 1;
    letter-spacing: -.03em;
    margin: 0 0 16px;
    background: linear-gradient(135deg, #17FDE0 0%, #A8135A 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700
}

.accred-vault .metric-label {
    font-size: 24px;
    line-height: 1.2;
    margin: 0;
    color: #2a2a2a
}

.accred-vault .stats-desc {
    font-size: 14px;
    line-height: 1.9;
    margin: 0 0 16px;
    color: #3a3a3a;
    text-align: left
}

.accred-vault .stats-desc:last-child {
    margin-bottom: 0
}

.accred-vault .tags-reveal {
    display: inline-flex;
    gap: 8px;
    flex-wrap: wrap;
    position: relative;
    margin-top: 16px
}

.accred-vault .tag-base {
    background: #FDEAF0;
    color: #A8135A;
    padding: 8px 16px;
    border-radius: 38px;
    font-size: 14px;
    line-height: 1.2;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .05em;
    cursor: default;
    transition: background .12s ease, color .12s ease
}

.accred-vault .tag-base:hover {
    background: #A8135A;
    color: #fff
}

.accred-vault .tag-hidden {
    opacity: 0;
    transform: translateY(8px);
    transition: opacity .16s ease-out, transform .16s ease-out
}

.accred-vault .tags-reveal:hover .tag-hidden {
    opacity: 1;
    transform: translateY(0)
}

.accred-vault .tags-reveal:hover .tag-hidden:nth-child(2) {
    transition-delay: .05s
}

.accred-vault .tags-reveal:hover .tag-hidden:nth-child(3) {
    transition-delay: .1s
}

.accred-vault .tags-reveal:hover .tag-hidden:nth-child(4) {
    transition-delay: .15s
}

@media (min-width: 768px) {
    .accred-vault .top-hero {
        padding: 64px 32px
    }

    .accred-vault .img-zone {
        height: 480px
    }

    .accred-vault .txt-zone {
        padding: 64px
    }

    .accred-vault .txt-zone::before,
    .accred-vault .txt-zone::after {
        width: 60px;
        height: 60px
    }

    .accred-vault .cert-grid {
        padding: 64px 32px
    }

    .accred-vault .cards-wrap {
        grid-template-columns: repeat(2, 1fr)
    }

    .accred-vault .process-flow {
        padding: 64px 32px
    }

    .accred-vault .steps-list {
        gap: 32px
    }

    .accred-vault .step-item {
        flex-direction: row;
        align-items: center;
        gap: 32px
    }

    .accred-vault .step-num {
        flex-shrink: 0;
        width: 100px;
        text-align: center
    }

    .accred-vault .stats-dual {
        padding: 64px 32px
    }

    .accred-vault .metrics-wrap {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media (min-width: 1280px) {
    .accred-vault .top-hero {
        padding: 64px;
        flex-direction: row;
        gap: 64px
    }

    .accred-vault .img-zone {
        width: 55%;
        height: 540px
    }

    .accred-vault .txt-zone {
        width: 45%;
        display: flex;
        flex-direction: column;
        justify-content: center
    }

    .accred-vault .cert-grid {
        padding: 64px
    }

    .accred-vault .cards-wrap {
        grid-template-columns: repeat(3, 1fr)
    }

    .accred-vault .process-flow {
        padding: 64px
    }

    .accred-vault .stats-dual {
        padding: 64px
    }
}

.accred-vault .bg-anim-layer {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0
}

.accred-vault .bg-anim-layer::before,
.accred-vault .bg-anim-layer::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    opacity: .08
}

.accred-vault .bg-anim-layer::before {
    background: radial-gradient(circle, #17FDE0 0%, transparent 70%);
    top: -100px;
    right: -100px;
    animation: drift-one 25s ease-in-out infinite
}

.accred-vault .bg-anim-layer::after {
    background: radial-gradient(circle, #A8135A 0%, transparent 70%);
    bottom: -100px;
    left: -100px;
    animation: drift-two 30s ease-in-out infinite
}

@keyframes drift-one {

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

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

@keyframes drift-two {

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

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

.accred-vault .process-flow>* {
    position: relative;
    z-index: 1
}

.deb {
    max-width: 1500px;
    margin: 0 auto;
    background: #fff;
    overflow-x: clip
}

.deb .title-zone {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    padding: 64px 32px;
    position: relative;
    overflow: hidden
}

.deb .title-zone::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(45deg, transparent, transparent 20px, #17fde008 20px, #17fde008 40px);
    pointer-events: none;
    z-index: 1
}

.deb .title-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
    z-index: 2;
    position: relative
}

.deb .title-main {
    font-size: 52px;
    line-height: 1.2;
    letter-spacing: -.02em;
    color: #1a1a1a;
    margin: 0
}

.deb .title-points {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none
}

.deb .title-points li {
    font-size: 14px;
    line-height: 1.6;
    color: #4a4a4a;
    padding: 0 0 0 16px;
    position: relative
}

.deb .title-points li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 6px;
    height: 6px;
    background: #17FDE0;
    border-radius: 5px
}

.deb .title-visual {
    position: relative;
    z-index: 2
}

.deb .title-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    filter: saturate(0.7);
    box-shadow: -1px 4px 28px -1px #17fde01c
}

@media (max-width: 768px) {
    .deb .title-zone {
        grid-template-columns: 1fr;
        padding: 32px 16px
    }

    .deb .title-main {
        font-size: 24px
    }

    .deb .title-visual {
        min-height: 280px
    }
}

.deb .gap-reveal {
    padding: 64px 32px;
    background: radial-gradient(ellipse at center, #fdeaf066, #fff);
    position: relative
}

.deb .gap-inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center
}

.deb .gap-heading {
    font-size: 24px;
    line-height: 1.2;
    color: #2a2a2a;
    margin: 0 0 32px;
    text-shadow: 1px 1px 2px #a8135a14
}

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

.deb .gap-card {
    background: #fff;
    padding: 32px;
    border-radius: 14px;
    box-shadow: -1px 2px 3px -1px #a8135a0f;
    text-align: left;
    transition: transform .15s ease-out, box-shadow .15s ease-out;
    position: relative;
    overflow: hidden
}

.deb .gap-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #17FDE0, #A8135A);
    opacity: 0;
    transition: opacity .12s ease
}

.deb .gap-card:hover::before {
    opacity: 1
}

.deb .gap-card:hover {
    transform: translateY(-3px);
    box-shadow: -1px 8px 60px -1px #a8135a21
}

.deb .gap-label {
    font-size: 14px;
    line-height: 1.6;
    color: #A8135A;
    text-transform: uppercase;
    letter-spacing: .05em;
    margin: 0 0 8px
}

.deb .gap-desc {
    font-size: 14px;
    line-height: 1.6;
    color: #3a3a3a;
    margin: 0
}

@media (max-width: 768px) {
    .deb .gap-reveal {
        padding: 32px 16px
    }

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

    .deb .gap-card {
        padding: 16px
    }
}

.deb .scale-proof {
    padding: 64px 32px;
    background: #fff;
    position: relative
}

.deb .scale-content {
    max-width: 1200px;
    margin: 0 auto
}

.deb .scale-title {
    font-size: 24px;
    line-height: 1.2;
    color: #2a2a2a;
    margin: 0 0 64px;
    text-align: center;
    text-shadow: 1px 1px 3px #17fde01a
}

.deb .metrics-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px
}

.deb .metric-box {
    text-align: center;
    padding: 32px 16px;
    background: linear-gradient(135deg, #fafbfc, #fff);
    border-radius: 8px;
    box-shadow: -1px 2px 3px -1px #17fde00f;
    position: relative;
    overflow: hidden
}

.deb .metric-box::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #17FDE0, #A8135A);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .18s ease-out
}

.deb .metric-box:hover::after {
    transform: scaleX(1)
}

.deb .metric-num {
    font-size: 52px;
    line-height: 1.2;
    color: #A8135A;
    margin: 0 0 8px;
    font-weight: 700
}

.deb .metric-label {
    font-size: 14px;
    line-height: 1.6;
    color: #4a4a4a;
    margin: 0
}

.deb .scale-divider {
    margin: 64px auto;
    width: 60px;
    height: 0;
    border: none;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center
}

.deb .scale-divider::before {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 12px solid #17FDE0
}

.deb .scale-divider::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100px;
    right: -100px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #17FDE0, transparent)
}

.deb .scale-statement {
    max-width: 800px;
    margin: 0 auto;
    text-align: center
}

.deb .scale-para {
    font-size: 14px;
    line-height: 1.9;
    color: #3a3a3a;
    margin: 0 0 16px
}

.deb .scale-para:last-child {
    margin: 0
}

@media (max-width: 1280px) {
    .deb .metrics-row {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media (max-width: 768px) {
    .deb .scale-proof {
        padding: 32px 16px
    }

    .deb .scale-title {
        margin: 0 0 32px
    }

    .deb .metrics-row {
        grid-template-columns: 1fr;
        gap: 16px
    }

    .deb .metric-num {
        font-size: 24px
    }

    .deb .scale-divider {
        margin: 32px auto
    }
}

.deb .experience-flow {
    padding: 64px 32px;
    background: radial-gradient(ellipse at center, #17fde014, #fff);
    position: relative
}

.deb .flow-wrapper {
    max-width: 1200px;
    margin: 0 auto
}

.deb .flow-heading {
    font-size: 24px;
    line-height: 1.2;
    color: #2a2a2a;
    margin: 0 0 32px;
    text-shadow: 2px 2px 4px #a8135a0f
}

.deb .flow-stages {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin: 0 0 64px
}

.deb .stage-item {
    position: relative;
    padding: 32px;
    background: #fff;
    border-radius: 14px;
    box-shadow: -1px 4px 28px -1px #17fde01c;
    transition: transform .14s ease
}

.deb .stage-item:hover {
    transform: scale(1.03)
}

.deb .stage-item::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 14px;
    border: 2px solid transparent;
    background: linear-gradient(135deg, #17FDE0, #A8135A) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity .14s ease;
    pointer-events: none
}

.deb .stage-item:hover::before {
    opacity: 1
}

.deb .stage-num {
    font-size: 70px;
    line-height: 1.2;
    color: #FDEAF0;
    margin: 0 0 16px;
    font-weight: 700
}

.deb .stage-name {
    font-size: 14px;
    line-height: 1.6;
    color: #A8135A;
    text-transform: uppercase;
    letter-spacing: .05em;
    margin: 0 0 8px
}

.deb .stage-text {
    font-size: 14px;
    line-height: 1.6;
    color: #3a3a3a;
    margin: 0
}

.deb .flow-visual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: center
}

.deb .flow-img-holder {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: -1px 2px 3px -1px #a8135a0f
}

.deb .flow-img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
    transition: transform .2s ease-out
}

.deb .flow-img-holder:hover .flow-img {
    transform: scale(1.05)
}

.deb .flow-summary {
    font-size: 14px;
    line-height: 1.9;
    color: #3a3a3a;
    margin: 0
}

@media (max-width: 1280px) {
    .deb .flow-stages {
        grid-template-columns: 1fr
    }
}

@media (max-width: 768px) {
    .deb .experience-flow {
        padding: 32px 16px
    }

    .deb .flow-stages {
        margin: 0 0 32px
    }

    .deb .stage-item {
        padding: 16px
    }

    .deb .stage-num {
        font-size: 24px
    }

    .deb .flow-visual {
        grid-template-columns: 1fr
    }

    .deb .flow-img {
        height: 240px
    }
}

.deb .outcomes-real {
    padding: 64px 32px;
    background: #fff;
    position: relative
}

.deb .outcomes-inner {
    max-width: 1200px;
    margin: 0 auto
}

.deb .outcomes-header {
    font-size: 24px;
    line-height: 1.2;
    color: #2a2a2a;
    margin: 0 0 64px;
    text-align: center;
    text-shadow: 1px 2px 3px #17fde014
}

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

.deb .testimonial-card {
    padding: 32px;
    background: linear-gradient(135deg, #fafbfc, #fff);
    border-radius: 38px;
    box-shadow: -1px 4px 28px -1px #a8135a1c;
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
    transition: box-shadow .16s ease-out
}

.deb .testimonial-card:hover {
    box-shadow: -1px 8px 60px -1px #a8135a21
}

.deb .testimonial-card::before {
    content: '';
    position: absolute;
    top: 16px;
    left: 16px;
    width: 40px;
    height: 40px;
    background: #FDEAF0;
    border-radius: 5px;
    z-index: 0
}

.deb .testimonial-quote {
    font-size: 14px;
    line-height: 1.6;
    color: #3a3a3a;
    margin: 0;
    position: relative;
    z-index: 1
}

.deb .testimonial-author {
    font-size: 14px;
    line-height: 1.6;
    color: #A8135A;
    margin: 0;
    font-weight: 600;
    position: relative;
    z-index: 1
}

.deb .testimonial-context {
    font-size: 14px;
    line-height: 1.6;
    color: #6a6a6a;
    margin: 0;
    position: relative;
    z-index: 1
}

@media (max-width: 1280px) {
    .deb .testimonial-list {
        grid-template-columns: 1fr
    }
}

@media (max-width: 768px) {
    .deb .outcomes-real {
        padding: 32px 16px
    }

    .deb .outcomes-header {
        margin: 0 0 32px
    }

    .deb .testimonial-card {
        padding: 16px;
        border-radius: 14px
    }
}

.deb .lasting-value {
    padding: 64px 32px;
    background: radial-gradient(ellipse at center, #fdeaf080, #fff);
    position: relative
}

.deb .lasting-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center
}

.deb .lasting-text-block {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.deb .lasting-headline {
    font-size: 24px;
    line-height: 1.2;
    color: #2a2a2a;
    margin: 0;
    text-shadow: 2px 2px 4px #a8135a12
}

.deb .lasting-para {
    font-size: 14px;
    line-height: 1.9;
    color: #3a3a3a;
    margin: 0
}

.deb .lasting-image-zone {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px
}

.deb .lasting-img-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    box-shadow: -1px 2px 3px -1px #17fde00f
}

.deb .lasting-img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    transition: transform .18s ease-out
}

.deb .lasting-img-wrap:hover .lasting-img {
    transform: scale(1.08)
}

.deb .lasting-bracket {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    pointer-events: none;
    z-index: 10
}

.deb .lasting-bracket::before,
.deb .lasting-bracket::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 100%;
    border: 3px solid #17FDE0;
    border-radius: 8px
}

.deb .lasting-bracket::before {
    left: 0;
    border-right: none
}

.deb .lasting-bracket::after {
    right: 0;
    border-left: none
}

@media (max-width: 1280px) {
    .deb .lasting-container {
        grid-template-columns: 1fr;
        gap: 32px
    }
}

@media (max-width: 768px) {
    .deb .lasting-value {
        padding: 32px 16px
    }

    .deb .lasting-image-zone {
        grid-template-columns: 1fr
    }

    .deb .lasting-img {
        height: 220px
    }
}

.deb .form-engage {
    padding: 64px 32px;
    background: #fff;
    position: relative
}

.deb .form-holder {
    max-width: 700px;
    margin: 0 auto
}

.deb .form-title {
    font-size: 24px;
    line-height: 1.2;
    color: #2a2a2a;
    margin: 0 0 32px;
    text-align: center;
    text-shadow: 1px 1px 2px #17fde014
}

.deb .contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.deb .form-row {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.deb .form-label {
    font-size: 14px;
    line-height: 1.6;
    color: #4a4a4a;
    text-transform: uppercase;
    letter-spacing: .05em
}

.deb .form-input,
.deb .form-textarea {
    padding: 16px;
    font-size: 14px;
    line-height: 1.6;
    color: #2a2a2a;
    background: #fff;
    border: 1px solid #d0d0d0;
    border-radius: 8px;
    box-shadow: inset 1px 2px 3px #17fde00a;
    transition: border-color .12s ease, box-shadow .12s ease
}

.deb .form-input::placeholder,
.deb .form-textarea::placeholder {
    color: #4a4a4a66
}

.deb .form-input:focus,
.deb .form-textarea:focus {
    outline: none;
    border-color: #17FDE0;
    box-shadow: inset 1px 2px 3px #17fde014 -1px 2px 3px -1px #17fde00f
}

.deb .form-textarea {
    min-height: 120px;
    resize: vertical
}

.deb .form-submit {
    padding: 16px 32px;
    font-size: 14px;
    line-height: 1.6;
    color: #fff;
    background: linear-gradient(135deg, #17FDE0, #A8135A);
    border: 2px solid transparent;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: .05em;
    cursor: pointer;
    transition: transform .14s ease-out, box-shadow .14s ease-out;
    box-shadow: -1px 2px 3px -1px #a8135a0f
}

.deb .form-submit:hover {
    transform: translateY(-2px);
    box-shadow: -1px 8px 60px -1px #a8135a21
}

.deb .form-submit:active {
    transform: translateY(0);
    box-shadow: inset 1px 2px 4px #0000001a
}

@media (max-width: 768px) {
    .deb .form-engage {
        padding: 32px 16px
    }

    .deb .form-title {
        margin: 0 0 16px
    }
}

@media (min-width: 769px) {
    .deb .title-img {
        transform: translateY(0);
        transition: transform .1s linear
    }

    .deb .flow-img {
        transform: translateY(0) scale(1);
        transition: transform .1s linear
    }

    .deb .lasting-img {
        transform: translateY(0) scale(1);
        transition: transform .1s linear
    }

    @supports (animation-timeline: scroll()) {
        .deb .title-img {
            animation: parallax-slow linear;
            animation-timeline: scroll();
            animation-range: entry 0 exit 100%
        }

        .deb .flow-img {
            animation: parallax-medium linear;
            animation-timeline: scroll();
            animation-range: entry 0 exit 100%
        }

        .deb .lasting-img {
            animation: parallax-fast linear;
            animation-timeline: scroll();
            animation-range: entry 0 exit 100%
        }

        @keyframes parallax-slow {
            from {
                transform: translateY(0)
            }

            to {
                transform: translateY(-40px)
            }
        }

        @keyframes parallax-medium {
            from {
                transform: translateY(0) scale(1)
            }

            to {
                transform: translateY(-60px) scale(1)
            }
        }

        @keyframes parallax-fast {
            from {
                transform: translateY(0) scale(1)
            }

            to {
                transform: translateY(-80px) scale(1)
            }
        }
    }
}

.success-page {
    max-width: 1500px;
    margin: 0 auto;
    padding: 64px 16px;
    background: linear-gradient(167deg, #fff 0%, #f5f5f5 100%)
}

.success-page .confirmation-block {
    background: #fff;
    border-radius: 14px;
    padding: 64px 32px;
    text-align: center;
    box-shadow: -1px 4px 28px -1px #17fde01c;
    margin-bottom: 64px
}

.success-page .status-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 32px;
    background: linear-gradient(135deg, #17FDE0 0%, #fff 100%);
    border-radius: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative
}

.success-page .status-icon::before {
    content: '';
    width: 38px;
    height: 20px;
    border-left: 5px solid #fff;
    border-bottom: 5px solid #fff;
    transform: rotate(-45deg);
    position: relative;
    top: -4px
}

.success-page .confirmation-block h1 {
    font-size: 52px;
    line-height: 1.2;
    margin: 0 0 16px;
    color: #1a1a2e
}

.success-page .confirmation-block .lead-text {
    font-size: 24px;
    line-height: 1.6;
    color: #4a4a5e;
    margin: 0 0 32px;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto
}

.success-page .confirmation-block .detail-text {
    font-size: 14px;
    line-height: 1.6;
    color: #6a6a7e;
    margin: 0;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto
}

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

.success-page .info-card {
    background: #fff;
    border-radius: 8px;
    padding: 32px;
    box-shadow: -1px 2px 3px -1px #a8135a0f;
    transition: transform .15s ease-out, box-shadow .15s ease-out
}

.success-page .info-card:hover {
    transform: translateY(-3px);
    box-shadow: -1px 8px 60px -1px #a8135a21
}

.success-page .info-card h2 {
    font-size: 24px;
    line-height: 1.2;
    margin: 0 0 16px;
    color: #1a1a2e;
    text-shadow: 1px 1px 2px #a8135a14
}

.success-page .info-card p {
    font-size: 14px;
    line-height: 1.6;
    color: #4a4a5e;
    margin: 0 0 16px
}

.success-page .info-card p:last-child {
    margin-bottom: 0
}

.success-page .info-card .highlight-link {
    color: #A8135A;
    text-decoration: none;
    border-bottom: 3px solid #17FDE0;
    padding-bottom: 2px;
    transition: border-color .12s ease
}

.success-page .info-card .highlight-link:hover {
    border-bottom-color: #A8135A
}

.success-page .contact-strip {
    background: linear-gradient(92deg, #FDEAF0 0%, #fff 100%);
    border-radius: 5px;
    padding: 32px;
    margin-bottom: 64px;
    display: flex;
    flex-direction: column;
    gap: 16px
}

.success-page .contact-strip h3 {
    font-size: 24px;
    line-height: 1.2;
    margin: 0;
    color: #1a1a2e
}

.success-page .contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 14px;
    line-height: 1.6;
    color: #4a4a5e
}

.success-page .contact-item svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0
}

.success-page .contact-item a {
    color: #A8135A;
    text-decoration: none;
    border-bottom: 2px solid #17FDE0;
    transition: border-color .18s ease-out
}

.success-page .contact-item a:hover {
    border-bottom-color: #A8135A
}

.success-page .action-section {
    text-align: center;
    padding: 32px;
    background: #fff;
    border-radius: 14px;
    box-shadow: -1px 2px 3px -1px #17fde00f
}

.success-page .action-section h4 {
    font-size: 24px;
    line-height: 1.2;
    margin: 0 0 32px;
    color: #1a1a2e
}

.success-page .button-group {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 420px;
    margin: 0 auto
}

.success-page .btn-primary {
    background: linear-gradient(135deg, #17FDE0 0%, #fff 100%);
    color: #1a1a2e;
    border: none;
    padding: 16px 32px;
    border-radius: 5px;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
    cursor: pointer;
    transition: transform .14s ease, box-shadow .14s ease;
    box-shadow: -1px 2px 3px -1px #17fde00f;
    text-decoration: none;
    display: inline-block
}

.success-page .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: -1px 8px 60px -1px #17fde021
}

.success-page .btn-secondary {
    background: transparent;
    color: #A8135A;
    border: 2px solid #A8135A;
    padding: 16px 32px;
    border-radius: 5px;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
    cursor: pointer;
    transition: border-width .16s ease-out, padding .16s ease-out;
    text-decoration: none;
    display: inline-block
}

.success-page .btn-secondary:hover {
    border-width: 4px;
    padding: 14px 30px
}

@media (min-width: 768px) {
    .success-page {
        padding: 64px 32px
    }

    .success-page .confirmation-block {
        padding: 64px
    }

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

    .success-page .contact-strip {
        flex-direction: row;
        justify-content: space-between;
        align-items: center
    }

    .success-page .contact-strip h3 {
        margin-bottom: 0
    }

    .success-page .button-group {
        flex-direction: row;
        justify-content: center
    }
}

@media (min-width: 1280px) {
    .success-page .info-grid {
        grid-template-columns: repeat(3, 1fr)
    }
}