html {
    font-size: 100%;
}

body {
    font-family: 'Lato', sans-serif;
    background-color: #f5f0f2;
}

.skiplink-guard {
    display: none;
}

.brand-bar {
    background: linear-gradient(135deg, #BC4F65 0%, #9a3d52 100%);
    padding: 8px 0;
}

.brand-bar-pod {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand-contact-strip {
    display: flex;
    align-items: center;
    gap: 32px;
}

.brand-contact-strip a {
    color: #E5C4D0;
    font-size: 15px;
    font-weight: 300;
    letter-spacing: 0.01em;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.5s ease-in-out;
}

.brand-contact-strip a:focus {
    outline: 2px solid #fff;
    outline-offset: 2px;
    border-radius: 0px;
}

.brand-contact-strip a:hover {
    color: #fff;
}

.brand-contact-icon {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.brand-tagline {
    color: rgba(229, 196, 208, 0.7);
    font-size: 15px;
    font-weight: 300;
    letter-spacing: 0.02em;
}

.headermain {
    background-color: #fff;
    box-shadow: 0 6px 25px -1px rgba(188, 79, 101, 0.11);
    position: relative;
    z-index: 100;
}

.header-identity-deck {
    max-width: 1200px;
    margin: 0 auto;
    padding: 32px 32px 0;
    display: flex;
    justify-content: center;
}

.logowrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #2a1a20;
    border-radius: 12px;
    padding: 8px 32px;
    box-shadow: 0 6px 25px -1px rgba(188, 79, 101, 0.14), 0 1px 3px -1px rgba(188, 79, 101, 0.06);
    text-decoration: none;
}

.logowrap img {
    display: block;
    object-fit: contain;
}

.header-nav-deck {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
}

.primary-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    border-top: 1px solid #E5C4D0;
    margin-top: 16px;
    flex-wrap: wrap;
    gap: 8px;
}

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

.primary-nav-links li a {
    display: inline-block;
    color: #3d1e28;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.01em;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 36px;
    transition: background-color 0.5s ease-in-out, color 0.5s ease-in-out;
    min-height: 44px;
    line-height: 1.6;
    display: flex;
    align-items: center;
}

.primary-nav-links li a:hover {
    background-color: #E5C4D0;
    color: #2a1a20;
}

.primary-nav-links li a:focus {
    outline: 2px solid #BC4F65;
    outline-offset: 2px;
}

.primary-nav-links li a[aria-current="page"] {
    background-color: #BC4F65;
    color: #fff;
}

.nav-trial-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #BC4F65;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-decoration: none;
    padding: 8px 32px;
    border-radius: 36px;
    min-height: 44px;
    box-shadow: 0 6px 25px -1px rgba(188, 79, 101, 0.14);
    transition: background-color 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.nav-trial-link:hover {
    background-color: #9a3d52;
    box-shadow: 0 12px 44px -1px rgba(188, 79, 101, 0.14);
}

.nav-trial-link:focus {
    outline: 2px solid #3d1e28;
    outline-offset: 3px;
}

.ripple-ring {
    position: absolute;
    border-radius: 36px;
    background-color: rgba(255, 255, 255, 0.28);
    transform: scale(0);
    animation: rippleout 0.6s ease-in-out forwards;
    pointer-events: none;
}

@keyframes rippleout {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

.footermain {
    background-color: #2a1a20;
    color: #E5C4D0;
    padding: 32px 0 0;
    position: relative;
    overflow: hidden;
}

.footermain::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #BC4F65 0%, #E5C4D0 50%, #BC4F65 100%);
}

.footer-grid-deck {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    padding-bottom: 32px;
}

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

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

.footer-logowrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #1a0e14;
    border-radius: 12px;
    padding: 8px 32px;
    box-shadow: 0 6px 25px -1px rgba(188, 79, 101, 0.14);
    text-decoration: none;
    align-self: flex-start;
}

.footer-logowrap img {
    display: block;
    object-fit: contain;
}

.footer-since {
    font-size: 15px;
    font-weight: 300;
    letter-spacing: 0.01em;
    color: rgba(229, 196, 208, 0.6);
    line-height: 1.6;
}

.footer-blurb {
    font-size: 15px;
    font-weight: 300;
    letter-spacing: 0.01em;
    color: rgba(229, 196, 208, 0.8);
    line-height: 1.6;
}

.footer-col-heading {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: #fff;
    line-height: 1.1;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(188, 79, 101, 0.35);
}

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

.footer-linklist li a {
    color: rgba(229, 196, 208, 0.8);
    font-size: 15px;
    font-weight: 300;
    letter-spacing: 0.01em;
    text-decoration: none;
    line-height: 1.6;
    display: inline-block;
    transition: color 0.5s ease-in-out;
    padding: 4px 0;
}

.footer-linklist li a:hover {
    color: #fff;
}

.footer-linklist li a:focus {
    outline: 2px solid #BC4F65;
    outline-offset: 2px;
}

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

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.footer-contact-list li a,
.footer-contact-list li span {
    color: rgba(229, 196, 208, 0.8);
    font-size: 15px;
    font-weight: 300;
    letter-spacing: 0.01em;
    text-decoration: none;
    line-height: 1.6;
    transition: color 0.5s ease-in-out;
}

.footer-contact-list li a:hover {
    color: #fff;
}

.footer-contact-list li a:focus {
    outline: 2px solid #BC4F65;
    outline-offset: 2px;
}

.footer-contact-icon {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    margin-top: 4px;
    fill: #BC4F65;
}

.footer-deco-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-deco-dot {
    width: 4px;
    height: 4px;
    border-radius: 36px;
    background-color: rgba(188, 79, 101, 0.4);
}

.footer-deco-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(188, 79, 101, 0.3), transparent);
}

.footer-bottom-bar {
    background-color: #1a0e14;
    padding: 16px 32px;
}

.footer-bottom-pod {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-copy {
    font-size: 15px;
    font-weight: 300;
    letter-spacing: 0.01em;
    color: rgba(229, 196, 208, 0.5);
    line-height: 1.6;
}

.footer-legal-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-legal-links li a {
    color: rgba(229, 196, 208, 0.5);
    font-size: 15px;
    font-weight: 300;
    letter-spacing: 0.01em;
    text-decoration: none;
    line-height: 1.6;
    transition: color 0.5s ease-in-out;
}

.footer-legal-links li a:hover {
    color: #E5C4D0;
}

.footer-legal-links li a:focus {
    outline: 2px solid #BC4F65;
    outline-offset: 2px;
}

.cookie-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1500;
    background-color: #fff;
    box-shadow: 0 6px 25px -1px rgba(188, 79, 101, 0.14);
    border-bottom: 3px solid #BC4F65;
    display: none;
    transform: translateX(-100%);
    transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.cookie-bar.shown {
    transform: translateX(0);
}

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

.cookie-text-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
    min-width: 0;
}

.cookie-choice-label {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.01em;
    color: #2a1a20;
    line-height: 1.1;
}

.cookie-context {
    font-size: 15px;
    font-weight: 300;
    letter-spacing: 0.01em;
    color: #5a3a44;
    line-height: 1.6;
}

.cookie-context a {
    color: #BC4F65;
    text-decoration: underline;
}

.cookie-context a:focus {
    outline: 2px solid #BC4F65;
    outline-offset: 2px;
}

.cookie-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.cookie-accept-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #BC4F65;
    color: #fff;
    font-family: 'Lato', sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.02em;
    border: none;
    border-radius: 36px;
    padding: 8px 32px;
    min-height: 44px;
    cursor: pointer;
    transition: background-color 0.5s ease-in-out;
    position: relative;
    overflow: hidden;
}

.cookie-accept-btn:hover {
    background-color: #9a3d52;
}

.cookie-accept-btn:focus {
    outline: 2px solid #3d1e28;
    outline-offset: 3px;
}

.cookie-decline-link {
    background: none;
    border: none;
    font-family: 'Lato', sans-serif;
    font-size: 15px;
    font-weight: 300;
    letter-spacing: 0.01em;
    color: #5a3a44;
    cursor: pointer;
    text-decoration: underline;
    padding: 8px 0;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    transition: color 0.5s ease-in-out;
}

.cookie-decline-link:hover {
    color: #2a1a20;
}

.cookie-decline-link:focus {
    outline: 2px solid #BC4F65;
    outline-offset: 2px;
}

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

    .brand-tagline {
        display: none;
    }
}

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

    .brand-contact-strip {
        gap: 16px;
    }

    .primary-nav {
        flex-direction: column;
        align-items: flex-start;
    }

    .primary-nav-links {
        gap: 4px;
    }

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

    .header-identity-deck {
        padding: 16px 16px 0;
    }

    .header-nav-deck {
        padding: 0 16px;
    }

    .brand-bar-pod {
        padding: 0 16px;
    }

    .footer-grid-deck {
        padding: 0 16px 32px;
    }

    .footer-bottom-bar {
        padding: 16px;
    }

    .cookie-bar-pod {
        padding: 16px;
    }
}

@media (max-width: 360px) {
    .primary-nav-links li a {
        font-size: 15px;
        padding: 8px 8px;
    }

    .nav-trial-link {
        padding: 8px 16px;
    }

    .brand-contact-strip a {
        font-size: 15px;
    }
}

.terms-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 32px;
    color: #2c2c2c;
}

.terms-section h1 {
    font-size: 70px;
    line-height: 1.1;
    letter-spacing: 0.01em;
    color: #BC4F65;
    margin-bottom: 32px;
    margin-top: 0;
}

.terms-section h2 {
    font-size: 31px;
    line-height: 1.1;
    letter-spacing: 0.01em;
    color: #2c2c2c;
    margin-top: 32px;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid #E5C4D0;
}

.terms-section h3 {
    font-size: 24px;
    line-height: 1.1;
    letter-spacing: 0.015em;
    color: #3a2028;
    margin-top: 32px;
    margin-bottom: 16px;
}

.terms-section h4 {
    font-size: 19px;
    line-height: 1.6;
    letter-spacing: 0.015em;
    color: #3a2028;
    margin-top: 16px;
    margin-bottom: 8px;
}

.terms-section h5 {
    font-size: 15px;
    line-height: 1.6;
    letter-spacing: 0.02em;
    color: #BC4F65;
    text-transform: uppercase;
    margin-top: 16px;
    margin-bottom: 8px;
}

.terms-section h6 {
    font-size: 15px;
    line-height: 1.6;
    letter-spacing: 0.02em;
    color: #7a4050;
    margin-top: 16px;
    margin-bottom: 8px;
}

.terms-section p {
    font-size: 15px;
    line-height: 1.6;
    letter-spacing: 0.01em;
    color: #2c2c2c;
    margin-top: 0;
    margin-bottom: 16px;
    max-width: 72ch;
}

.terms-section strong,
.terms-section b {
    font-weight: 700;
    color: #3a2028;
}

.terms-section em,
.terms-section i {
    font-style: italic;
    color: #5a3040;
}

.terms-section a {
    color: #BC4F65;
    text-decoration: underline;
    text-decoration-color: #E5C4D0;
    text-underline-offset: 3px;
    transition: color 0.5s ease-in-out, text-decoration-color 0.55s ease-in-out;
}

.terms-section a:hover {
    color: #8a3048;
    text-decoration-color: #BC4F65;
}

.terms-section a:visited {
    color: #7a4050;
}

.terms-section div {
    margin-bottom: 16px;
}

.terms-section table {
    width: 100%;
    border-collapse: collapse;
    font-size: 15px;
    line-height: 1.6;
    letter-spacing: 0.01em;
    margin-top: 16px;
    margin-bottom: 32px;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 25px -1px rgba(188, 79, 101, 0.11);
}

.terms-section thead {
    background: #BC4F65;
}

.terms-section thead th {
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.02em;
    padding: 16px;
    text-align: left;
    border: none;
}

.terms-section tbody tr {
    border-bottom: 1px solid #E5C4D0;
    transition: background 0.45s ease-in-out;
}

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

.terms-section tbody tr:nth-child(even) {
    background: #fdf5f7;
}

.terms-section tbody tr:hover {
    background: #f5e8ec;
}

.terms-section th {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.015em;
    padding: 16px;
    text-align: left;
    color: #2c2c2c;
    background: #f0dde3;
}

.terms-section td {
    font-size: 15px;
    line-height: 1.6;
    letter-spacing: 0.01em;
    padding: 16px;
    color: #2c2c2c;
    vertical-align: top;
}

@media (max-width: 1024px) {
    .terms-section {
        padding: 32px 16px;
    }

    .terms-section h1 {
        font-size: 31px;
    }

    .terms-section h2 {
        font-size: 24px;
    }

    .terms-section h3 {
        font-size: 19px;
    }
}

@media (max-width: 640px) {
    .terms-section {
        padding: 16px;
    }

    .terms-section h1 {
        font-size: 24px;
    }

    .terms-section h2 {
        font-size: 19px;
    }

    .terms-section h3 {
        font-size: 15px;
    }

    .terms-section table {
        display: block;
        overflow-x: auto;
        border-radius: 12px;
    }

    .terms-section th,
    .terms-section td {
        padding: 8px;
        min-width: 120px;
    }
}

@media (max-width: 360px) {
    .terms-section {
        padding: 8px;
    }

    .terms-section h1 {
        font-size: 19px;
    }

    .terms-section p {
        font-size: 15px;
    }
}

.jdet {
    background: #f5f0f2;
    min-height: 100vh;
    padding: 0;
    overflow-x: hidden;
}

.jdet .print-only {
    display: none;
}

.jdet .topbar {
    background: #fff;
    border-bottom: 1px solid #E5C4D0;
    padding: 16px 32px;
}

.jdet .topbar-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
}

.jdet .breadcrumb {
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.jdet .breadcrumb li {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 4px;
}

.jdet .breadcrumb a {
    color: #BC4F65;
    font-size: 15px;
    letter-spacing: 0.01em;
    line-height: 1.6;
    text-decoration: none;
    transition: color 0.5s ease-in-out;
}

.jdet .breadcrumb a:hover {
    color: #8a3347;
}

.jdet .breadcrumb .sep {
    color: #BC4F65;
    font-size: 15px;
    opacity: 0.45;
}

.jdet .breadcrumb .current {
    color: #3d1f28;
    font-size: 15px;
    letter-spacing: 0.01em;
    line-height: 1.6;
    opacity: 0.7;
}

.jdet .titlestrip {
    background: #fff;
    padding: 32px 32px 0 32px;
    position: relative;
}

.jdet .titlestrip-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 32px;
}

.jdet .titlestrip-text {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 32px 0 32px 0;
    position: relative;
}

.jdet .titlestrip-text::before {
    background: #BC4F65;
    content: "";
    display: block;
    height: 3px;
    margin-bottom: 16px;
    width: 48px;
}

.jdet .article-label {
    color: #BC4F65;
    font-size: 15px;
    letter-spacing: 0.02em;
    line-height: 1.6;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.jdet .article-heading {
    color: #1e0d13;
    font-size: 31px;
    font-weight: 700;
    letter-spacing: 0.01em;
    line-height: 1.1;
    margin: 0 0 16px 0;
}

.jdet .article-meta {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.jdet .meta-item {
    align-items: center;
    color: #5c3040;
    display: flex;
    flex-direction: row;
    font-size: 15px;
    gap: 8px;
    letter-spacing: 0.01em;
    line-height: 1.6;
    opacity: 0.75;
}

.jdet .meta-icon {
    display: inline-block;
    flex-shrink: 0;
    height: 16px;
    width: 16px;
}

.jdet .titlestrip-image {
    flex: 0 0 420px;
    position: relative;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
    align-self: flex-end;
}

.jdet .titlestrip-image img {
    display: block;
    height: 280px;
    object-fit: cover;
    object-position: center top;
    width: 100%;
}

.jdet .img-overlay {
    background: linear-gradient(155deg, rgba(188, 79, 101, 0.55) 0%, rgba(229, 196, 208, 0.18) 100%);
    bottom: 0;
    left: 0;
    pointer-events: none;
    position: absolute;
    right: 0;
    top: 0;
}

.jdet .diag-deco {
    bottom: 0;
    left: 0;
    overflow: hidden;
    pointer-events: none;
    position: absolute;
    right: 0;
    top: 0;
}

.jdet .diag-deco svg {
    bottom: 0;
    height: 100%;
    left: 0;
    position: absolute;
    width: 100%;
}

.jdet .article-body-wrap {
    background: #fff;
    padding: 32px;
}

.jdet .article-body-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    gap: 32px;
    align-items: flex-start;
}

.jdet .article-body-main {
    flex: 2 1 0;
    min-width: 0;
}

.jdet .article-body-side {
    flex: 1 1 0;
    min-width: 0;
}

.jdet .body-text p {
    color: #2a1219;
    font-size: 19px;
    letter-spacing: 0.01em;
    line-height: 1.6;
    margin: 0 0 16px 0;
}

.jdet .body-text h2 {
    color: #1e0d13;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 0.01em;
    line-height: 1.1;
    margin: 32px 0 16px 0;
}

.jdet .body-text h3 {
    color: #2a1219;
    font-size: 19px;
    font-weight: 600;
    letter-spacing: 0.01em;
    line-height: 1.1;
    margin: 32px 0 16px 0;
}

.jdet .body-text ul {
    color: #2a1219;
    font-size: 19px;
    letter-spacing: 0.01em;
    line-height: 1.6;
    margin: 0 0 16px 16px;
    padding: 0;
}

.jdet .body-text li {
    margin-bottom: 8px;
}

.jdet .body-text del {
    color: #BC4F65;
    opacity: 0.6;
}

.jdet .body-text details {
    background: #f5f0f2;
    border-radius: 12px;
    margin-bottom: 16px;
    padding: 16px;
}

.jdet .body-text summary {
    color: #1e0d13;
    cursor: pointer;
    font-size: 19px;
    font-weight: 600;
    letter-spacing: 0.01em;
    line-height: 1.6;
    list-style: none;
    user-select: none;
}

.jdet .body-text summary::-webkit-details-marker {
    display: none;
}

.jdet .body-text details[open] summary {
    color: #BC4F65;
    margin-bottom: 8px;
}

.jdet .stat-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 6px 25px -1px rgba(188, 79, 101, 0.11);
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 32px;
    overflow: hidden;
    position: relative;
}

.jdet .stat-card::before {
    animation: flicker 4.5s ease-in-out infinite;
    background: rgba(188, 79, 101, 0.07);
    border-radius: 36px;
    bottom: -16px;
    content: "";
    height: 80px;
    pointer-events: none;
    position: absolute;
    right: -8px;
    width: 80px;
}

@keyframes flicker {

    0%,
    100% {
        opacity: 0.4;
    }

    40% {
        opacity: 1;
    }

    60% {
        opacity: 0.6;
    }

    80% {
        opacity: 0.9;
    }
}

.jdet .stat-top {
    background: #BC4F65;
    display: flex;
    flex-direction: row;
    gap: 0;
}

.jdet .stat-zone {
    align-items: center;
    display: flex;
    flex-direction: column;
    flex: 1 1 0;
    gap: 4px;
    padding: 16px;
    position: relative;
    text-align: center;
}

.jdet .stat-zone:first-child {
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.jdet .stat-num {
    color: #fff;
    font-size: 31px;
    font-weight: 700;
    letter-spacing: 0.01em;
    line-height: 1.1;
}

.jdet .stat-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    letter-spacing: 0.02em;
    line-height: 1.6;
}

.jdet .stat-bottom {
    padding: 16px;
}

.jdet .stat-desc {
    color: #5c3040;
    font-size: 15px;
    letter-spacing: 0.01em;
    line-height: 1.6;
    margin: 0;
}

.jdet .side-cta {
    background: #f5f0f2;
    border-radius: 12px;
    box-shadow: 0 1px 3px -1px rgba(188, 79, 101, 0.06);
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 32px;
    text-align: center;
}

.jdet .side-cta-heading {
    color: #1e0d13;
    font-size: 19px;
    font-weight: 700;
    letter-spacing: 0.01em;
    line-height: 1.1;
    margin: 0;
}

.jdet .side-cta-text {
    color: #5c3040;
    font-size: 15px;
    letter-spacing: 0.01em;
    line-height: 1.6;
    margin: 0;
}

.jdet .btn-primary {
    background: #BC4F65;
    border: none;
    border-radius: 36px;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    font-size: 15px;
    letter-spacing: 0.02em;
    line-height: 1.6;
    overflow: hidden;
    padding: 16px 32px;
    position: relative;
    text-align: center;
    text-decoration: none;
    transition: background 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.55s ease-in-out;
}

.jdet .btn-primary:hover {
    background: #8a3347;
    box-shadow: 0 6px 25px -1px rgba(188, 79, 101, 0.22);
}

.jdet .btn-primary:focus {
    outline: 3px solid #BC4F65;
    outline-offset: 3px;
}

.jdet .btn-primary:active {
    background: #6b2537;
}

.jdet .btn-ripple {
    pointer-events: none;
    position: absolute;
}

.jdet .icon-circle {
    align-items: center;
    background: #BC4F65;
    border: 3px solid rgba(188, 79, 101, 0.25);
    border-radius: 36px;
    box-shadow: 0 0 0 5px rgba(229, 196, 208, 0.45);
    display: flex;
    flex-direction: row;
    height: 48px;
    justify-content: center;
    margin: 0 auto 16px auto;
    width: 48px;
}

.jdet .icon-circle svg {
    fill: #fff;
    height: 22px;
    width: 22px;
}

.jdet .divider-partial {
    background: #E5C4D0;
    height: 1px;
    margin: 0 auto;
    width: 60%;
}

.jdet .steps-wrap {
    background: #f5f0f2;
    padding: 32px;
}

.jdet .steps-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.jdet .steps-heading {
    color: #1e0d13;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 0.01em;
    line-height: 1.1;
    margin: 0 0 32px 0;
    text-align: center;
}

.jdet .steps-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(3, 1fr);
}

.jdet .step-item {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 1px 3px -1px rgba(188, 79, 101, 0.06);
    display: flex;
    flex-direction: column;
    gap: 8px;
    outline: 2px solid transparent;
    padding: 32px 16px;
    text-align: left;
    transition: outline-color 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.55s ease-in-out;
}

.jdet .step-item:hover {
    box-shadow: 0 12px 44px -1px rgba(188, 79, 101, 0.14);
    outline-color: #BC4F65;
}

.jdet .step-item.even {
    margin-top: 32px;
}

.jdet .step-num {
    color: #BC4F65;
    font-size: 31px;
    font-weight: 700;
    letter-spacing: 0.01em;
    line-height: 1.1;
}

.jdet .step-title {
    color: #1e0d13;
    font-size: 19px;
    font-weight: 600;
    letter-spacing: 0.01em;
    line-height: 1.1;
    margin: 0;
}

.jdet .step-desc {
    color: #5c3040;
    font-size: 15px;
    letter-spacing: 0.01em;
    line-height: 1.6;
    margin: 0;
}

.jdet .closing-wrap {
    background: #BC4F65;
    padding: 32px;
    position: relative;
}

.jdet .closing-deco {
    bottom: 0;
    left: 0;
    overflow: hidden;
    pointer-events: none;
    position: absolute;
    right: 0;
    top: 0;
}

.jdet .closing-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 32px;
    position: relative;
    z-index: 1;
}

.jdet .closing-text {
    flex: 2 1 0;
}

.jdet .closing-heading {
    color: #fff;
    font-size: 24px;
    font-weight: 300;
    letter-spacing: 0.01em;
    line-height: 1.1;
    margin: 0 0 16px 0;
}

.jdet .closing-para {
    color: rgba(255, 255, 255, 0.85);
    font-size: 19px;
    letter-spacing: 0.01em;
    line-height: 1.6;
    margin: 0;
}

.jdet .closing-action {
    flex: 1 1 0;
    text-align: center;
}

.jdet .btn-light {
    background: #fff;
    border: none;
    border-radius: 36px;
    color: #BC4F65;
    cursor: pointer;
    display: inline-block;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.02em;
    line-height: 1.6;
    overflow: hidden;
    padding: 16px 32px;
    position: relative;
    text-align: center;
    text-decoration: none;
    transition: background 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), color 0.5s ease-in-out;
}

.jdet .btn-light:hover {
    background: #E5C4D0;
    color: #6b2537;
}

.jdet .btn-light:focus {
    outline: 3px solid #fff;
    outline-offset: 3px;
}

.jdet .btn-light:active {
    background: #d4a8b8;
}

@media (max-width: 1024px) {
    .jdet .titlestrip-image {
        flex: 0 0 300px;
    }

    .jdet .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .jdet .step-item.even {
        margin-top: 0;
    }
}

@media (max-width: 640px) {
    .jdet .titlestrip-inner {
        flex-direction: column;
    }

    .jdet .titlestrip-image {
        flex: 0 0 auto;
        width: 100%;
    }

    .jdet .titlestrip-image img {
        height: 200px;
    }

    .jdet .article-body-inner {
        flex-direction: column;
    }

    .jdet .steps-grid {
        grid-template-columns: 1fr;
    }

    .jdet .closing-inner {
        flex-direction: column;
        text-align: center;
    }

    .jdet .topbar {
        padding: 16px;
    }

    .jdet .titlestrip {
        padding: 16px 16px 0 16px;
    }

    .jdet .article-body-wrap {
        padding: 16px;
    }

    .jdet .steps-wrap {
        padding: 16px;
    }

    .jdet .closing-wrap {
        padding: 16px;
    }
}

@media (max-width: 360px) {
    .jdet .article-heading {
        font-size: 24px;
    }

    .jdet .stat-num {
        font-size: 24px;
    }
}

@media print {
    .jdet .topbar {
        background: #fff;
        border-bottom: 1px solid #ccc;
        padding: 8px 16px;
    }

    .jdet .titlestrip {
        padding: 16px;
    }

    .jdet .titlestrip-image {
        display: none;
    }

    .jdet .article-body-wrap {
        padding: 16px;
    }

    .jdet .article-body-inner {
        flex-direction: column;
    }

    .jdet .stat-card,
    .jdet .side-cta,
    .jdet .btn-primary,
    .jdet .btn-light,
    .jdet .closing-wrap {
        display: none;
    }

    .jdet .steps-wrap {
        background: #fff;
        padding: 16px;
    }

    .jdet .step-item {
        box-shadow: none;
        border: 1px solid #ccc;
        break-inside: avoid;
    }

    .jdet .body-text p,
    .jdet .body-text h2,
    .jdet .body-text h3,
    .jdet .body-text ul,
    .jdet .body-text li {
        color: #000;
    }

    .jdet .article-heading {
        color: #000;
        font-size: 24px;
    }

    .jdet .print-only {
        display: block;
        color: #333;
        font-size: 15px;
        margin-top: 16px;
        padding: 8px 0;
        border-top: 1px solid #ccc;
    }
}

.jrnl {
    background: #fff;
    overflow-x: clip;
    padding: 0;
}

.jrnl .postlist-hero {
    position: relative;
    padding: 64px 32px 48px;
    background: linear-gradient(170deg, #fff 0%, #E5C4D0 60%, #BC4F65 100%);
}

.jrnl .postlist-hero .atmo-spot {
    position: absolute;
    border-radius: 36px;
    filter: blur(48px);
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.jrnl .postlist-hero .atmo-spot.sp1 {
    width: 320px;
    height: 320px;
    background: rgba(188, 79, 101, 0.18);
    top: -80px;
    left: -60px;
}

.jrnl .postlist-hero .atmo-spot.sp2 {
    width: 240px;
    height: 240px;
    background: rgba(229, 196, 208, 0.28);
    bottom: -40px;
    right: 40px;
}

.jrnl .postlist-hero .hero-body {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}

.jrnl .postlist-hero .pg-label {
    font-size: 15px;
    letter-spacing: 0.08em;
    color: #BC4F65;
    text-transform: uppercase;
    margin-bottom: 16px;
    font-weight: 600;
}

.jrnl .postlist-hero .pg-heading {
    font-size: 70px;
    line-height: 1.1;
    letter-spacing: 0.01em;
    font-weight: 800;
    color: #2a1018;
    margin: 0 0 16px;
}

.jrnl .postlist-hero .pg-quote {
    font-size: 19px;
    line-height: 1.6;
    color: #5a2a36;
    max-width: 560px;
    margin: 0;
    font-weight: 400;
    font-style: italic;
}

@media (max-width: 1024px) {
    .jrnl .postlist-hero .pg-heading {
        font-size: 48px;
    }
}

@media (max-width: 640px) {
    .jrnl .postlist-hero .pg-heading {
        font-size: 31px;
    }

    .jrnl .postlist-hero {
        padding: 48px 16px 32px;
    }
}

@media (max-width: 360px) {
    .jrnl .postlist-hero .pg-heading {
        font-size: 24px;
    }
}

.jrnl .divider-num {
    display: flex;
    align-items: center;
    gap: 16px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
}

.jrnl .divider-num .dn-line {
    flex: 1;
    height: 1px;
    background: #E5C4D0;
}

.jrnl .divider-num .dn-num {
    font-size: 15px;
    color: #BC4F65;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.jrnl .posts-grid-area {
    padding: 64px 32px;
    max-width: 1200px;
    margin: 0 auto;
}

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

@media (max-width: 1024px) {
    .jrnl .posts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .jrnl .posts-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .jrnl .posts-grid-area {
        padding: 32px 16px;
    }
}

.jrnl .post-card {
    display: flex;
    flex-direction: column;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 6px 25px -1px rgba(188, 79, 101, 0.11);
    transition: box-shadow 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-decoration: none;
    color: inherit;
    animation: cardReveal 0.65s ease-in-out both;
}

.jrnl .post-card:nth-child(1) {
    animation-delay: 0.05s;
}

.jrnl .post-card:nth-child(2) {
    animation-delay: 0.15s;
}

.jrnl .post-card:nth-child(3) {
    animation-delay: 0.25s;
}

@keyframes cardReveal {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

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

.jrnl .post-card:hover {
    box-shadow: 0 12px 44px -1px rgba(188, 79, 101, 0.14);
    transform: translateY(-4px);
}

.jrnl .post-card:focus-visible {
    outline: 2px solid #BC4F65;
    outline-offset: 2px;
}

.jrnl .card-img-wrap {
    overflow: hidden;
    position: relative;
    height: 200px;
}

.jrnl .card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: transform 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.jrnl .post-card:hover .card-img-wrap img {
    transform: scale(1.06);
}

.jrnl .card-img-wrap .img-vignette {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 50%, rgba(188, 79, 101, 0.22) 100%);
    pointer-events: none;
}

.jrnl .card-body {
    padding: 16px;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 8px;
}

.jrnl .card-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.jrnl .meta-date {
    font-size: 15px;
    color: #BC4F65;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.jrnl .meta-stats {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
}

.jrnl .stat-item {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 15px;
    color: #8a4a58;
}

.jrnl .stat-icon {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.jrnl .card-title {
    font-size: 19px;
    line-height: 1.6;
    font-weight: 700;
    color: #2a1018;
    letter-spacing: 0.01em;
    margin: 0;
}

.jrnl .card-desc {
    font-size: 15px;
    line-height: 1.6;
    color: #5a2a36;
    margin: 0;
}

.jrnl .card-readmore {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    font-size: 15px;
    font-weight: 600;
    color: #BC4F65;
    letter-spacing: 0.02em;
    text-decoration: none;
    padding: 8px 0;
    transition: color 0.45s ease-in-out;
}

.jrnl .card-readmore svg {
    transition: transform 0.45s ease-in-out;
}

.jrnl .post-card:hover .card-readmore {
    color: #8a1a2e;
}

.jrnl .post-card:hover .card-readmore svg {
    transform: translateX(4px);
}

.jrnl .about-strip {
    background: linear-gradient(160deg, #f5eaee 0%, #fff 100%);
    padding: 64px 32px;
    position: relative;
    overflow: hidden;
}

.jrnl .about-strip .math-bg {
    position: absolute;
    right: 48px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 220px;
    line-height: 1;
    color: rgba(188, 79, 101, 0.05);
    font-weight: 900;
    pointer-events: none;
    user-select: none;
    letter-spacing: -0.05em;
}

.jrnl .about-strip .strip-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 32px;
    align-items: start;
    position: relative;
    z-index: 1;
}

@media (max-width: 1024px) {
    .jrnl .about-strip .strip-inner {
        grid-template-columns: 1fr;
    }

    .jrnl .about-strip .math-bg {
        font-size: 120px;
        right: 8px;
        opacity: 0.5;
    }
}

.jrnl .strip-accent {
    width: 40px;
    height: 3px;
    background: #BC4F65;
    border-radius: 0px;
    margin-bottom: 16px;
}

.jrnl .strip-heading {
    font-size: 31px;
    line-height: 1.1;
    font-weight: 800;
    color: #2a1018;
    letter-spacing: 0.01em;
    margin: 0 0 16px;
}

.jrnl .strip-body {
    font-size: 15px;
    line-height: 1.6;
    color: #3d1820;
    margin: 0 0 8px;
}

.jrnl .strip-aside {
    background: #fff;
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 1px 3px -1px rgba(188, 79, 101, 0.06), inset 0 2px 8px rgba(229, 196, 208, 0.18);
}

.jrnl .aside-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 16px;
}

.jrnl .aside-stat:last-child {
    margin-bottom: 0;
}

.jrnl .aside-stat .stat-val {
    font-size: 31px;
    font-weight: 800;
    color: #BC4F65;
    line-height: 1.1;
    letter-spacing: 0.01em;
}

.jrnl .aside-stat .stat-label {
    font-size: 15px;
    color: #5a2a36;
    line-height: 1.6;
}

.jrnl .aside-divider {
    height: 1px;
    background: #E5C4D0;
    margin: 16px 0;
}

.jrnl .schedule-area {
    padding: 64px 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.jrnl .sched-heading {
    font-size: 31px;
    line-height: 1.1;
    font-weight: 300;
    color: #2a1018;
    letter-spacing: 0.01em;
    text-align: center;
    margin: 0 0 32px;
}

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

@media (max-width: 1024px) {
    .jrnl .sched-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .jrnl .sched-grid {
        grid-template-columns: 1fr;
    }
}

.jrnl .sched-item {
    background: #fff;
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 6px 25px -1px rgba(188, 79, 101, 0.11);
    display: flex;
    flex-direction: column;
    gap: 8px;
    animation: cardReveal 0.65s ease-in-out both;
}

.jrnl .sched-item:nth-child(1) {
    animation-delay: 0.05s;
}

.jrnl .sched-item:nth-child(2) {
    animation-delay: 0.12s;
}

.jrnl .sched-item:nth-child(3) {
    animation-delay: 0.19s;
}

.jrnl .sched-item:nth-child(4) {
    animation-delay: 0.26s;
}

.jrnl .sched-time {
    font-size: 15px;
    font-weight: 700;
    color: #BC4F65;
    letter-spacing: 0.04em;
}

.jrnl .sched-topic {
    font-size: 15px;
    font-weight: 700;
    color: #2a1018;
    line-height: 1.6;
}

.jrnl .sched-speaker {
    font-size: 15px;
    color: #5a2a36;
    line-height: 1.6;
}

.jrnl .sched-tag {
    display: inline-block;
    font-size: 15px;
    background: #E5C4D0;
    color: #5a2a36;
    border-radius: 36px;
    padding: 4px 16px;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.jrnl .image-feature {
    padding: 64px 32px;
    background: #2a1018;
    position: relative;
    overflow: hidden;
}

.jrnl .image-feature .bg-dashes {
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(0deg,
            transparent,
            transparent 28px,
            rgba(229, 196, 208, 0.06) 28px,
            rgba(229, 196, 208, 0.06) 29px),
        repeating-linear-gradient(90deg,
            transparent,
            transparent 28px,
            rgba(229, 196, 208, 0.06) 28px,
            rgba(229, 196, 208, 0.06) 29px);
    pointer-events: none;
}

.jrnl .image-feature .feat-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (max-width: 1024px) {
    .jrnl .image-feature .feat-inner {
        grid-template-columns: 1fr;
    }
}

.jrnl .feat-img-wrap {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    height: 380px;
}

.jrnl .feat-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
    transition: transform 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.jrnl .feat-img-wrap:hover img {
    transform: scale(1.04);
}

.jrnl .feat-img-wrap .corner-vig {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 0% 0%, rgba(42, 16, 24, 0.45) 0%, transparent 55%),
        radial-gradient(circle at 100% 0%, rgba(42, 16, 24, 0.45) 0%, transparent 55%),
        radial-gradient(circle at 0% 100%, rgba(42, 16, 24, 0.45) 0%, transparent 55%),
        radial-gradient(circle at 100% 100%, rgba(42, 16, 24, 0.45) 0%, transparent 55%);
    pointer-events: none;
}

.jrnl .feat-text {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.jrnl .feat-accent {
    width: 40px;
    height: 3px;
    background: #BC4F65;
    border-radius: 0px;
}

.jrnl .feat-heading {
    font-size: 24px;
    line-height: 1.1;
    font-weight: 800;
    color: #fff;
    letter-spacing: 0.01em;
    margin: 0;
}

.jrnl .feat-body {
    font-size: 15px;
    line-height: 1.6;
    color: #E5C4D0;
    margin: 0;
}

.jrnl .feat-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 700;
    color: #BC4F65;
    text-decoration: none;
    letter-spacing: 0.02em;
    padding: 8px 0;
    transition: color 0.5s ease-in-out;
}

.jrnl .feat-link:hover {
    color: #E5C4D0;
}

.jrnl .feat-link:focus-visible {
    outline: 2px solid #BC4F65;
    outline-offset: 2px;
}

.jrnl .cta-band {
    padding: 64px 32px;
    background: linear-gradient(155deg, #fff 0%, #f5eaee 100%);
    position: relative;
    overflow: hidden;
}

.jrnl .cta-band .cta-math {
    position: absolute;
    left: 32px;
    bottom: -20px;
    font-size: 180px;
    line-height: 1;
    color: rgba(188, 79, 101, 0.05);
    font-weight: 900;
    pointer-events: none;
    user-select: none;
}

.jrnl .cta-band .cta-inner {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.jrnl .cta-heading {
    font-size: 31px;
    line-height: 1.1;
    font-weight: 800;
    color: #2a1018;
    letter-spacing: 0.01em;
    margin: 0;
}

.jrnl .cta-sub {
    font-size: 19px;
    line-height: 1.6;
    color: #5a2a36;
    max-width: 520px;
    margin: 0;
}

.jrnl .cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #BC4F65;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.04em;
    border: none;
    border-radius: 36px;
    padding: 16px 32px;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 6px 25px -1px rgba(188, 79, 101, 0.11);
    transition: background 0.5s ease-in-out, box-shadow 0.5s ease-in-out, transform 0.5s ease-in-out;
    position: relative;
    overflow: hidden;
}

.jrnl .cta-btn:hover {
    background: #8a1a2e;
    box-shadow: 0 12px 44px -1px rgba(188, 79, 101, 0.14);
    transform: translateY(-2px);
}

.jrnl .cta-btn:focus-visible {
    outline: 2px solid #BC4F65;
    outline-offset: 3px;
}

.jrnl .cta-btn:active::after {
    content: '';
    position: absolute;
    border-radius: 36px;
    background: rgba(255, 255, 255, 0.25);
    width: 100px;
    height: 100px;
    margin-top: -50px;
    margin-left: -50px;
    animation: ripple 0.6s ease-in-out;
    pointer-events: none;
}

@keyframes ripple {
    from {
        transform: scale(0);
        opacity: 1;
    }

    to {
        transform: scale(4);
        opacity: 0;
    }
}

@media (max-width: 640px) {
    .jrnl .about-strip {
        padding: 32px 16px;
    }

    .jrnl .schedule-area {
        padding: 32px 16px;
    }

    .jrnl .image-feature {
        padding: 32px 16px;
    }

    .jrnl .cta-band {
        padding: 32px 16px;
    }

    .jrnl .divider-num {
        padding: 0 16px;
    }
}

.trialac {
    background: #f5f0f2;
    overflow-x: clip;
    position: relative;
}

.trialac ::selection {
    background: #BC4F65;
    color: #FFFFFF;
    font-weight: 700;
}

.trialac .divider-dotdash {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 0;
    overflow: hidden;
}

.trialac .divider-dotdash span {
    display: inline-block;
    width: 4px;
    height: 4px;
    border-radius: 36px;
    background: #BC4F65;
    opacity: 0.35;
}

.trialac .divider-dotdash span:nth-child(3n+1) {
    width: 12px;
    border-radius: 0px;
    opacity: 0.2;
}

.trialac .divider-dotdash span:nth-child(5n+2) {
    opacity: 0.5;
}

.trialac .splitopen {
    animation: splitReveal 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    clip-path: inset(0 50% 0 50%);
}

@keyframes splitReveal {
    0% {
        clip-path: inset(0 50% 0 50%);
    }

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

.trialac .fadein {
    opacity: 0;
    transform: translateY(24px);
    animation: fadeUp 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.trialac .fadein.delay1 {
    animation-delay: 0.15s;
}

.trialac .fadein.delay2 {
    animation-delay: 0.28s;
}

.trialac .fadein.delay3 {
    animation-delay: 0.42s;
}

.trialac .fadein.delay4 {
    animation-delay: 0.55s;
}

@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(24px);
    }

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

.trialac .typewriter {
    display: inline-block;
    overflow: hidden;
    white-space: nowrap;
    border-right: 2px solid #BC4F65;
    animation: typing 2.2s steps(38, end) 0.3s forwards, blink 0.75s step-end 2.5s infinite;
    width: 0;
}

@keyframes typing {
    0% {
        width: 0;
    }

    100% {
        width: 100%;
    }
}

@keyframes blink {

    0%,
    100% {
        border-color: #BC4F65;
    }

    50% {
        border-color: transparent;
    }
}

.trialac .grain-bg {
    position: relative;
    background: #2a1018;
    padding: 64px 32px;
    overflow: hidden;
}

.trialac .grain-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.08'/%3E%3C/svg%3E");
    opacity: 0.45;
    pointer-events: none;
}

.trialac .grain-bg::after {
    content: "\201C";
    position: absolute;
    top: -32px;
    left: 32px;
    font-size: 240px;
    line-height: 1.1;
    color: #BC4F65;
    opacity: 0.07;
    pointer-events: none;
    font-weight: 900;
    z-index: 0;
}

.trialac .grain-inner {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: center;
}

.trialac .grain-text {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.trialac .grain-label {
    font-size: 15px;
    line-height: 1.6;
    letter-spacing: 0.15em;
    color: #E5C4D0;
    text-transform: uppercase;
    opacity: 0.75;
}

.trialac .grain-h1 {
    font-size: 70px;
    line-height: 1.1;
    letter-spacing: -0.01em;
    color: #FFFFFF;
    font-weight: 900;
    margin: 0;
}

.trialac .grain-sub {
    font-size: 19px;
    line-height: 1.6;
    letter-spacing: 0.01em;
    color: #E5C4D0;
    margin: 0;
    max-width: 480px;
}

.trialac .grain-imgwrap {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 12px 44px -1px rgba(188, 79, 101, 0.14);
}

.trialac .grain-imgwrap img {
    display: block;
    width: 100%;
    height: 420px;
    object-fit: cover;
    object-position: center 30%;
    filter: saturate(0.6) contrast(1.1) sepia(0.25);
    transition: filter 0.55s ease-in-out;
}

.trialac .grain-imgwrap:hover img {
    filter: saturate(1) contrast(1.05) sepia(0);
}

.trialac .grain-imgoverlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(188, 79, 101, 0.22) 0%, rgba(42, 16, 24, 0.55) 100%);
    pointer-events: none;
}

.trialac .grain-badge {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background: rgba(42, 16, 24, 0.82);
    border: 1px solid rgba(229, 196, 208, 0.25);
    border-radius: 12px;
    padding: 8px 16px;
    color: #E5C4D0;
    font-size: 15px;
    line-height: 1.6;
    letter-spacing: 0.02em;
}

.trialac .metrics-band {
    background: #FFFFFF;
    padding: 32px;
}

.trialac .metrics-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.trialac .metric-card {
    border-radius: 12px;
    padding: 24px 16px;
    background: #f5f0f2;
    box-shadow: 0 1px 3px -1px rgba(188, 79, 101, 0.06);
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: box-shadow 0.55s ease-in-out, transform 0.45s ease-in-out;
    cursor: default;
}

.trialac .metric-card:hover {
    box-shadow: 0 6px 25px -1px rgba(188, 79, 101, 0.11);
    transform: translateY(-4px);
}

.trialac .metric-num {
    font-size: 31px;
    line-height: 1.1;
    letter-spacing: -0.01em;
    color: #BC4F65;
    font-weight: 700;
}

.trialac .metric-label {
    font-size: 15px;
    line-height: 1.6;
    letter-spacing: 0.02em;
    color: #3d1a23;
}

.trialac .metric-bar {
    height: 4px;
    border-radius: 0px;
    background: #E5C4D0;
    margin-top: 4px;
    position: relative;
    overflow: hidden;
}

.trialac .metric-bar-fill {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    background: #BC4F65;
    border-radius: 0px;
    animation: barGrow 1.1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.5s both;
}

@keyframes barGrow {
    0% {
        width: 0;
    }
}

.trialac .process-section {
    padding: 64px 32px;
    background: #f5f0f2;
    position: relative;
}

.trialac .process-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.trialac .process-header {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 32px;
}

.trialac .accent-bar {
    width: 40px;
    height: 3px;
    background: #BC4F65;
    border-radius: 0px;
}

.trialac .process-h2 {
    font-size: 31px;
    line-height: 1.1;
    letter-spacing: 0.01em;
    color: #2a1018;
    font-weight: 700;
    margin: 0;
}

.trialac .process-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 32px;
    align-items: start;
}

.trialac .process-steps {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.trialac .step-item {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 16px;
    align-items: start;
    padding: 16px;
    border-radius: 12px;
    background: #FFFFFF;
    box-shadow: 0 1px 3px -1px rgba(188, 79, 101, 0.06);
    transition: box-shadow 0.5s ease-in-out;
}

.trialac .step-item:hover {
    box-shadow: 0 6px 25px -1px rgba(188, 79, 101, 0.11);
}

.trialac .step-num {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: #BC4F65;
    color: #FFFFFF;
    font-size: 19px;
    line-height: 1.1;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.trialac .step-body {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.trialac .step-title {
    font-size: 19px;
    line-height: 1.1;
    letter-spacing: 0.01em;
    color: #2a1018;
    font-weight: 700;
    margin: 0;
}

.trialac .step-desc {
    font-size: 15px;
    line-height: 1.6;
    letter-spacing: 0.01em;
    color: #5a2e3a;
    margin: 0;
}

.trialac .process-aside {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.trialac .aside-dashed {
    border: 2px dashed #BC4F65;
    border-radius: 12px;
    padding: 24px 16px;
    background: rgba(229, 196, 208, 0.12);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.trialac .aside-dashed-label {
    font-size: 15px;
    line-height: 1.6;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #BC4F65;
    font-weight: 700;
}

.trialac .aside-dashed-text {
    font-size: 15px;
    line-height: 1.6;
    letter-spacing: 0.01em;
    color: #3d1a23;
    margin: 0;
}

.trialac .aside-stat {
    background: #FFFFFF;
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 6px 25px -1px rgba(188, 79, 101, 0.11);
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.trialac .aside-stat-num {
    font-size: 31px;
    line-height: 1.1;
    letter-spacing: -0.01em;
    color: #BC4F65;
    font-weight: 700;
}

.trialac .aside-stat-text {
    font-size: 15px;
    line-height: 1.6;
    letter-spacing: 0.01em;
    color: #5a2e3a;
    margin: 0;
}

.trialac .split-section {
    position: relative;
}

.trialac .split-top {
    background: #2a1018;
    padding: 64px 32px 32px;
}

.trialac .split-bottom {
    background: #FFFFFF;
    padding: 32px 32px 64px;
}

.trialac .split-card-row {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    position: relative;
    top: 32px;
    margin-bottom: 32px;
}

.trialac .split-top-header {
    max-width: 1200px;
    margin: 0 auto 32px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: center;
    align-items: center;
}

.trialac .split-h2 {
    font-size: 31px;
    line-height: 1.1;
    letter-spacing: 0.01em;
    color: #FFFFFF;
    font-weight: 300;
    margin: 0;
}

.trialac .split-sub {
    font-size: 15px;
    line-height: 1.6;
    letter-spacing: 0.01em;
    color: #E5C4D0;
    margin: 0;
    max-width: 560px;
    opacity: 0.8;
}

.trialac .feature-card {
    background: #FFFFFF;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 12px 44px -1px rgba(188, 79, 101, 0.14);
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.trialac .feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 44px -1px rgba(188, 79, 101, 0.14);
}

.trialac .feature-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: linear-gradient(160deg, #BC4F65 0%, #E5C4D0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.trialac .feature-icon svg {
    width: 20px;
    height: 20px;
}

.trialac .feature-h4 {
    font-size: 19px;
    line-height: 1.1;
    letter-spacing: 0.01em;
    color: #2a1018;
    font-weight: 700;
    margin: 0;
}

.trialac .feature-p {
    font-size: 15px;
    line-height: 1.6;
    letter-spacing: 0.01em;
    color: #5a2e3a;
    margin: 0;
}

.trialac .split-bottom-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.trialac .split-bottom-text {
    font-size: 15px;
    line-height: 1.6;
    letter-spacing: 0.01em;
    color: #5a2e3a;
    margin: 0;
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
}

.trialac .honeycomb-section {
    padding: 64px 32px;
    position: relative;
    overflow: hidden;
}

.trialac .honeycomb-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.trialac .honeycomb-bg svg {
    width: 100%;
    height: 100%;
    opacity: 0.06;
}

.trialac .honeycomb-inner {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 32px;
    align-items: start;
}

.trialac .honey-left {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.trialac .honey-h2 {
    font-size: 31px;
    line-height: 1.1;
    letter-spacing: 0.01em;
    color: #2a1018;
    font-weight: 700;
    margin: 0;
}

.trialac .honey-p {
    font-size: 15px;
    line-height: 1.6;
    letter-spacing: 0.01em;
    color: #5a2e3a;
    margin: 0;
}

.trialac .honey-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    border-radius: 12px;
    background: #BC4F65;
    color: #FFFFFF;
    font-size: 15px;
    line-height: 1.6;
    letter-spacing: 0.02em;
    font-weight: 700;
    text-decoration: none;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: background 0.5s ease-in-out, box-shadow 0.5s ease-in-out;
    box-shadow: 0 6px 25px -1px rgba(188, 79, 101, 0.11);
    align-self: flex-start;
}

.trialac .honey-cta:hover {
    background: #a0404f;
    box-shadow: 0 12px 44px -1px rgba(188, 79, 101, 0.14);
}

.trialac .honey-cta:focus {
    outline: 3px solid #E5C4D0;
    outline-offset: 3px;
}

.trialac .honey-cta .ripple-container {
    position: absolute;
    inset: 0;
    border-radius: 12px;
    overflow: hidden;
    pointer-events: none;
}

.trialac .honey-right {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.trialac .detail-card {
    background: #FFFFFF;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 1px 3px -1px rgba(188, 79, 101, 0.06), inset 0 1px 4px rgba(188, 79, 101, 0.04);
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: box-shadow 0.5s ease-in-out;
}

.trialac .detail-card:hover {
    box-shadow: 0 6px 25px -1px rgba(188, 79, 101, 0.11);
}

.trialac .detail-card.wide {
    grid-column: span 2;
}

.trialac .detail-h5 {
    font-size: 19px;
    line-height: 1.1;
    letter-spacing: 0.01em;
    color: #2a1018;
    font-weight: 700;
    margin: 0;
}

.trialac .detail-p {
    font-size: 15px;
    line-height: 1.6;
    letter-spacing: 0.01em;
    color: #5a2e3a;
    margin: 0;
}

.trialac .detail-tag {
    display: inline-block;
    padding: 4px 8px;
    border-radius: 36px;
    background: #E5C4D0;
    color: #2a1018;
    font-size: 15px;
    line-height: 1.6;
    letter-spacing: 0.02em;
    align-self: flex-start;
}

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

    .trialac .grain-h1 {
        font-size: 31px;
    }

    .trialac .metrics-inner {
        grid-template-columns: repeat(2, 1fr);
    }

    .trialac .process-grid {
        grid-template-columns: 1fr;
    }

    .trialac .split-card-row {
        grid-template-columns: 1fr;
        top: 0;
    }

    .trialac .split-top {
        padding-bottom: 32px;
    }

    .trialac .honeycomb-inner {
        grid-template-columns: 1fr;
    }

    .trialac .honey-right {
        grid-template-columns: 1fr;
    }

    .trialac .detail-card.wide {
        grid-column: span 1;
    }
}

@media (max-width: 640px) {
    .trialac .grain-bg {
        padding: 32px 16px;
    }

    .trialac .grain-h1 {
        font-size: 31px;
    }

    .trialac .metrics-inner {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .trialac .metrics-band {
        padding: 16px;
    }

    .trialac .process-section {
        padding: 32px 16px;
    }

    .trialac .split-top {
        padding: 32px 16px 16px;
    }

    .trialac .split-bottom {
        padding: 16px 16px 32px;
    }

    .trialac .honeycomb-section {
        padding: 32px 16px;
    }

    .trialac .typewriter {
        white-space: normal;
        animation: none;
        width: auto;
        border-right: none;
    }
}

@media (max-width: 360px) {
    .trialac .metrics-inner {
        grid-template-columns: 1fr;
    }

    .trialac .grain-h1 {
        font-size: 24px;
    }
}

.aboutus {
    background: #f5f0f2;
    overflow-x: clip;
}

.aboutus *,
.aboutus *::before,
.aboutus *::after {
    box-sizing: border-box;
}

::selection {
    background: #BC4F65;
    color: #FFFFFF;
    font-weight: 700;
}

.aboutus .pageband {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
}

.aboutus .schema-data {
    display: none;
}

.aboutus .titleslab {
    background: #FFFFFF;
    padding: 64px 0 56px;
    position: relative;
}

.aboutus .titleslab::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(105deg, #BC4F65 0%, #E5C4D0 60%, transparent 100%);
}

.aboutus .titleslab .pageband {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.aboutus .titlelayout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: end;
}

.aboutus .titleleft {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.aboutus .titleright {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-bottom: 8px;
}

.aboutus .titletag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    letter-spacing: 0.02em;
    color: #BC4F65;
    line-height: 1.6;
}

.aboutus .titletag .tagdot {
    width: 8px;
    height: 8px;
    border-radius: 0px;
    background: #BC4F65;
    transform: rotate(45deg);
    flex-shrink: 0;
}

.aboutus .pageh1 {
    font-size: 70px;
    line-height: 1.1;
    letter-spacing: 0.01em;
    color: #1e1215;
    font-weight: 700;
    margin: 0;
}

.aboutus .titledesc {
    font-size: 19px;
    line-height: 1.6;
    color: #4a2d35;
    letter-spacing: 0.01em;
    margin: 0;
}

.aboutus .titleaccent {
    width: 40px;
    height: 3px;
    background: #BC4F65;
    border-radius: 0px;
}

.aboutus .titlesubtext {
    font-size: 15px;
    line-height: 1.6;
    color: #6b3d4a;
    letter-spacing: 0.01em;
    margin: 0;
}

.aboutus .titledeco {
    position: absolute;
    top: 32px;
    right: 32px;
    width: 80px;
    height: 80px;
    background: #BC4F65;
    opacity: 0.06;
    transform: rotate(45deg);
    border-radius: 12px;
    pointer-events: none;
}

.aboutus .titledeco2 {
    position: absolute;
    top: 48px;
    right: 48px;
    width: 48px;
    height: 48px;
    background: #BC4F65;
    opacity: 0.08;
    transform: rotate(45deg);
    border-radius: 0px;
    pointer-events: none;
}

.aboutus .storyband {
    padding: 72px 0;
    background: #f5f0f2;
}

.aboutus .storylayout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 32px;
    align-items: start;
}

.aboutus .storymain {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.aboutus .storyh2 {
    font-size: 31px;
    line-height: 1.1;
    letter-spacing: 0.01em;
    color: #1e1215;
    font-weight: 700;
    margin: 0;
}

.aboutus .storyaccentbar {
    width: 36px;
    height: 3px;
    background: #BC4F65;
    border-radius: 0px;
    margin-bottom: 16px;
}

.aboutus .storypara {
    font-size: 19px;
    line-height: 1.6;
    color: #3d2028;
    letter-spacing: 0.01em;
    margin: 0;
}

.aboutus .storypara+.storypara {
    margin-top: 0;
}

.aboutus .storyparas {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.aboutus .storyside {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.aboutus .storyimgwrap {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 25px -1px rgba(188, 79, 101, 0.11);
    aspect-ratio: 4/5;
}

.aboutus .storyimgwrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    filter: blur(3px);
    transition: filter 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.aboutus .storyimgwrap:hover img {
    filter: blur(0px);
}

.aboutus .storynote {
    font-size: 15px;
    line-height: 1.6;
    color: #6b3d4a;
    letter-spacing: 0.01em;
    padding: 16px;
    background: #FFFFFF;
    border-radius: 12px;
    box-shadow: 0 1px 3px -1px rgba(188, 79, 101, 0.06);
}

.aboutus .teamband {
    padding: 72px 0;
    background: #FFFFFF;
}

.aboutus .teamlayout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 32px;
    align-items: start;
}

.aboutus .teamleft {
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: sticky;
    top: 32px;
}

.aboutus .teamh2 {
    font-size: 31px;
    line-height: 1.1;
    letter-spacing: 0.01em;
    color: #1e1215;
    font-weight: 300;
    margin: 0;
}

.aboutus .teamh2 strong {
    font-weight: 700;
}

.aboutus .teamaccentbar {
    width: 36px;
    height: 3px;
    background: #BC4F65;
    border-radius: 0px;
}

.aboutus .teamdesc {
    font-size: 15px;
    line-height: 1.6;
    color: #4a2d35;
    letter-spacing: 0.01em;
    margin: 0;
}

.aboutus .teamright {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.aboutus .personcard {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 32px;
    align-items: start;
    padding: 32px;
    background: #f5f0f2;
    border-radius: 12px;
    box-shadow: 0 1px 3px -1px rgba(188, 79, 101, 0.06);
    transition: box-shadow 0.5s ease-in-out, background 0.5s ease-in-out;
}

.aboutus .personcard:hover {
    box-shadow: 0 12px 44px -1px rgba(188, 79, 101, 0.14);
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.aboutus .personimg {
    width: 96px;
    height: 96px;
    border-radius: 36px;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 6px 25px -1px rgba(188, 79, 101, 0.11);
}

.aboutus .personimg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    filter: blur(2px);
    transition: filter 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.aboutus .personcard:hover .personimg img {
    filter: blur(0px);
}

.aboutus .personinfo {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.aboutus .personname {
    font-size: 24px;
    line-height: 1.1;
    letter-spacing: 0.01em;
    color: #1e1215;
    font-weight: 700;
    margin: 0;
}

.aboutus .personrole {
    font-size: 15px;
    line-height: 1.6;
    letter-spacing: 0.02em;
    color: #BC4F65;
    margin: 0;
}

.aboutus .personbio {
    font-size: 15px;
    line-height: 1.6;
    color: #4a2d35;
    letter-spacing: 0.01em;
    margin: 0;
}

.aboutus .teamextras {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.aboutus .extrarow {
    display: flex;
    flex-direction: row;
    gap: 16px;
}

.aboutus .extracard {
    flex: 1;
    padding: 32px;
    background: #f5f0f2;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    box-shadow: 0 1px 3px -1px rgba(188, 79, 101, 0.06);
    transition: box-shadow 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94), background 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.aboutus .extracard:hover {
    box-shadow: 0 12px 44px -1px rgba(188, 79, 101, 0.14);
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.aboutus .extraname {
    font-size: 19px;
    line-height: 1.1;
    letter-spacing: 0.01em;
    color: #1e1215;
    font-weight: 700;
    margin: 0;
}

.aboutus .extrarole {
    font-size: 15px;
    line-height: 1.6;
    letter-spacing: 0.02em;
    color: #BC4F65;
    margin: 0;
}

.aboutus .extrabio {
    font-size: 15px;
    line-height: 1.6;
    color: #4a2d35;
    letter-spacing: 0.01em;
    margin: 0;
}

.aboutus .approachband {
    padding: 72px 0;
    background: linear-gradient(160deg, #BC4F65 0%, #E5C4D0 100%);
    position: relative;
    overflow: hidden;
}

.aboutus .approachband .deco-diamond {
    position: absolute;
    bottom: -32px;
    right: 64px;
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.08);
    transform: rotate(45deg);
    border-radius: 12px;
    pointer-events: none;
}

.aboutus .approachband .deco-diamond2 {
    position: absolute;
    top: 32px;
    left: -24px;
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.06);
    transform: rotate(45deg);
    border-radius: 0px;
    pointer-events: none;
}

.aboutus .approachlayout {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 32px;
    align-items: start;
}

.aboutus .approachintro {
    display: flex;
    flex-direction: column;
    gap: 16px;
    grid-column: 1 / -1;
    text-align: center;
    max-width: 640px;
    margin: 0 auto 16px;
}

.aboutus .approachh2 {
    font-size: 31px;
    line-height: 1.1;
    letter-spacing: 0.01em;
    color: #FFFFFF;
    font-weight: 700;
    margin: 0;
}

.aboutus .approachdesc {
    font-size: 19px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.88);
    letter-spacing: 0.01em;
    margin: 0;
}

.aboutus .methodcard {
    background: rgba(255, 255, 255, 0.14);
    border-radius: 12px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    box-shadow: inset 0 1px 3px -1px rgba(188, 79, 101, 0.06);
    transition: background 0.5s ease-in-out, box-shadow 0.5s ease-in-out;
}

.aboutus .methodcard:hover {
    background: rgba(255, 255, 255, 0.28);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 12px 44px -1px rgba(188, 79, 101, 0.14), inset 0 1px 3px -1px rgba(188, 79, 101, 0.06);
}

.aboutus .methodicon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.aboutus .methodicon svg {
    width: 40px;
    height: 40px;
}

.aboutus .methodh3 {
    font-size: 19px;
    line-height: 1.1;
    letter-spacing: 0.01em;
    color: #FFFFFF;
    font-weight: 700;
    margin: 0;
}

.aboutus .methodtext {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.88);
    letter-spacing: 0.01em;
    margin: 0;
}

.aboutus .galleryband {
    padding: 72px 0;
    background: #f5f0f2;
}

.aboutus .gallerylayout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: center;
}

.aboutus .gallerytextside {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.aboutus .galleryh2 {
    font-size: 31px;
    line-height: 1.1;
    letter-spacing: 0.01em;
    color: #1e1215;
    font-weight: 700;
    margin: 0;
}

.aboutus .galleryaccentbar {
    width: 36px;
    height: 3px;
    background: #BC4F65;
    border-radius: 0px;
}

.aboutus .gallerypara {
    font-size: 19px;
    line-height: 1.6;
    color: #3d2028;
    letter-spacing: 0.01em;
    margin: 0;
}

.aboutus .gallerypara2 {
    font-size: 15px;
    line-height: 1.6;
    color: #6b3d4a;
    letter-spacing: 0.01em;
    margin: 0;
}

.aboutus .gallerylink {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    line-height: 1.6;
    letter-spacing: 0.02em;
    color: #BC4F65;
    text-decoration: none;
    border-radius: 36px;
    padding: 8px 16px;
    background: #FFFFFF;
    box-shadow: 0 6px 25px -1px rgba(188, 79, 101, 0.11);
    transition: box-shadow 0.5s ease-in-out, background 0.5s ease-in-out;
    align-self: flex-start;
}

.aboutus .gallerylink:hover {
    box-shadow: 0 12px 44px -1px rgba(188, 79, 101, 0.14);
    background: #f5f0f2;
}

.aboutus .gallerylink:focus-visible {
    outline: 2px solid #BC4F65;
    outline-offset: 4px;
}

.aboutus .galleryimgside {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.aboutus .galleryimgrow {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.aboutus .galleryimgwrap {
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: 0 6px 25px -1px rgba(188, 79, 101, 0.11);
}

.aboutus .galleryimgwrap.tall {
    aspect-ratio: 3/4;
    grid-row: span 2;
}

.aboutus .galleryimgwrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    filter: blur(3px);
    transition: filter 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.aboutus .galleryimgwrap:hover img {
    filter: blur(0px);
}

.aboutus .metricstrip {
    display: flex;
    flex-direction: row;
    gap: 32px;
    padding: 32px;
    background: #FFFFFF;
    border-radius: 12px;
    box-shadow: inset 0 1px 3px -1px rgba(188, 79, 101, 0.06), 0 6px 25px -1px rgba(188, 79, 101, 0.11);
    justify-content: space-around;
    align-items: center;
}

.aboutus .metricitem {
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: center;
    text-align: center;
}

.aboutus .metricnum {
    font-size: 31px;
    line-height: 1.1;
    letter-spacing: 0.01em;
    color: #BC4F65;
    font-weight: 700;
}

.aboutus .metriclabel {
    font-size: 15px;
    line-height: 1.6;
    letter-spacing: 0.02em;
    color: #4a2d35;
}

.aboutus .metricdivider {
    width: 1px;
    height: 40px;
    background: #E5C4D0;
    border-radius: 0px;
}

@keyframes iconsettle {
    0% {
        transform: rotate(0deg);
    }

    60% {
        transform: rotate(180deg);
    }

    80% {
        transform: rotate(162deg);
    }

    90% {
        transform: rotate(172deg);
    }

    100% {
        transform: rotate(168deg);
    }
}

.aboutus .methodcard:hover .methodicon svg {
    animation: iconsettle 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@media (max-width: 1024px) {
    .aboutus .titlelayout {
        grid-template-columns: 1fr;
    }

    .aboutus .pageh1 {
        font-size: 31px;
    }

    .aboutus .storylayout {
        grid-template-columns: 1fr;
    }

    .aboutus .storyimgwrap {
        aspect-ratio: 16/9;
        max-height: 280px;
    }

    .aboutus .teamlayout {
        grid-template-columns: 1fr;
    }

    .aboutus .teamleft {
        position: static;
    }

    .aboutus .approachlayout {
        grid-template-columns: 1fr 1fr;
    }

    .aboutus .gallerylayout {
        grid-template-columns: 1fr;
    }

    .aboutus .galleryimgrow {
        grid-template-columns: 1fr 1fr;
    }

    .aboutus .galleryimgwrap.tall {
        aspect-ratio: 4/3;
        grid-row: auto;
    }
}

@media (max-width: 640px) {
    .aboutus .pageband {
        padding: 0 16px;
    }

    .aboutus .pageh1 {
        font-size: 31px;
    }

    .aboutus .titleslab {
        padding: 32px 0 32px;
    }

    .aboutus .storyband,
    .aboutus .teamband,
    .aboutus .approachband,
    .aboutus .galleryband {
        padding: 32px 0;
    }

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

    .aboutus .extrarow {
        flex-direction: column;
    }

    .aboutus .approachlayout {
        grid-template-columns: 1fr;
    }

    .aboutus .metricstrip {
        flex-direction: column;
        gap: 16px;
    }

    .aboutus .metricdivider {
        width: 40px;
        height: 1px;
    }

    .aboutus .galleryimgrow {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 360px) {
    .aboutus .pageband {
        padding: 0 8px;
    }

    .aboutus .pageh1 {
        font-size: 24px;
    }
}

.bse {
    background: #f5f0f2;
    overflow-x: clip;
    position: relative;
}

.bse * {
    box-sizing: border-box;
}

::selection {
    background: #BC4F65;
    color: #fff;
    font-weight: 700;
}

.bse .pg-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
}

@keyframes bgflicker {

    0%,
    100% {
        opacity: 1;
    }

    18% {
        opacity: 0.97;
    }

    37% {
        opacity: 0.94;
    }

    55% {
        opacity: 0.98;
    }

    72% {
        opacity: 0.95;
    }

    89% {
        opacity: 0.99;
    }
}

@keyframes slowzoom {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.06);
    }
}

@keyframes slowpan {
    0% {
        transform: scale(1.05) translateX(0);
    }

    100% {
        transform: scale(1.05) translateX(-2%);
    }
}

@keyframes ripple-anim {
    0% {
        transform: scale(0);
        opacity: 0.55;
    }

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

.bse .ripple-btn {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border: none;
    outline: none;
}

.bse .ripple-btn .rpl {
    position: absolute;
    border-radius: 36px;
    background: rgba(188, 79, 101, 0.28);
    width: 60px;
    height: 60px;
    margin-top: -30px;
    margin-left: -30px;
    animation: ripple-anim 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    pointer-events: none;
}

.bse input::placeholder,
.bse textarea::placeholder {
    color: rgba(60, 30, 38, 0.38);
}

.bse .zigzag-div {
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.bse .zigzag-div svg {
    display: block;
    width: 100%;
}

.bse .zigzag-div2 {
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.bse .zigzag-div2 svg {
    display: block;
    width: 100%;
}

.bse .titleblk {
    background: #2a1018;
    padding: 64px 0 96px;
    position: relative;
}

.bse .titleblk::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 8% 20%, rgba(188, 79, 101, 0.55) 0%, transparent 62%);
    pointer-events: none;
    animation: bgflicker 7s ease-in-out infinite;
}

.bse .titleblk-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 32px;
    position: relative;
    z-index: 1;
}

.bse .titleblk-text {
    flex: 1 1 0;
    position: relative;
}

.bse .dotgrid {
    position: absolute;
    inset: -16px -16px -16px -16px;
    pointer-events: none;
    z-index: 0;
    background-image: radial-gradient(circle, rgba(229, 196, 208, 0.18) 1.5px, transparent 1.5px);
    background-size: 22px 22px;
}

.bse .titleblk-text-body {
    position: relative;
    z-index: 1;
}

.bse .tblk-label {
    font-size: 15px;
    color: #E5C4D0;
    letter-spacing: 0.02em;
    line-height: 1.6;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.bse .tblk-h1 {
    font-size: 70px;
    line-height: 1.1;
    color: #fff;
    font-weight: 700;
    letter-spacing: 0.01em;
    margin: 0 0 32px;
}

.bse .tblk-h1 span {
    color: #BC4F65;
}

.bse .tblk-desc {
    font-size: 19px;
    line-height: 1.6;
    color: rgba(229, 196, 208, 0.88);
    letter-spacing: 0.01em;
    margin: 0 0 32px;
    max-width: 520px;
}

.bse .tblk-action {
    display: inline-block;
    font-size: 15px;
    color: #fff;
    background: #BC4F65;
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    letter-spacing: 0.02em;
    line-height: 1.1;
    transition: background 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 6px 25px -1px rgba(188, 79, 101, 0.28);
}

.bse .tblk-action:hover {
    background: #a0334a;
    box-shadow: 0 12px 44px -1px rgba(188, 79, 101, 0.32);
    border: dashed 2px #E5C4D0 !important;
}

.bse .tblk-action:focus {
    outline: 2px solid #E5C4D0;
    outline-offset: 4px;
}

.bse .titleblk-img {
    flex: 0 0 380px;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.bse .titleblk-img img {
    width: 380px;
    height: 480px;
    object-fit: cover;
    object-position: center 30%;
    display: block;
    border-radius: 12px;
    filter: saturate(1.3) contrast(1.08) brightness(0.92) sepia(0.12);
    animation: slowzoom 12s ease-in-out infinite alternate;
}

@media (max-width: 1024px) {
    .bse .tblk-h1 {
        font-size: 31px;
    }

    .bse .titleblk-img {
        flex: 0 0 260px;
    }

    .bse .titleblk-img img {
        width: 260px;
        height: 340px;
    }
}

@media (max-width: 640px) {
    .bse .titleblk-inner {
        flex-direction: column;
    }

    .bse .titleblk-img {
        flex: 0 0 auto;
    }

    .bse .titleblk-img img {
        width: 100%;
        height: 220px;
    }

    .bse .tblk-h1 {
        font-size: 31px;
    }

    .bse .titleblk {
        padding: 32px 0 64px;
    }
}

@media (max-width: 360px) {
    .bse .tblk-h1 {
        font-size: 24px;
    }
}

.bse .teamblk {
    background: #fff;
    padding: 80px 0 64px;
}

.bse .teamblk-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
}

.bse .teamblk-top {
    display: flex;
    flex-direction: row;
    gap: 32px;
    align-items: flex-start;
    margin-bottom: 32px;
}

.bse .teamblk-heading {
    flex: 2 1 0;
}

.bse .teamblk-heading h2 {
    font-size: 31px;
    line-height: 1.1;
    font-weight: 700;
    color: #2a1018;
    letter-spacing: 0.01em;
    margin: 0 0 8px;
}

.bse .teamblk-heading .accent-bar {
    width: 48px;
    height: 3px;
    background: #BC4F65;
    margin-bottom: 16px;
    border-radius: 0px;
}

.bse .teamblk-sub {
    flex: 1 1 0;
    font-size: 15px;
    line-height: 1.6;
    color: #5a2d38;
    letter-spacing: 0.01em;
    padding-top: 8px;
}

.bse .team-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 32px;
    margin-top: 32px;
}

.bse .team-card {
    background: #f5f0f2;
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 1px 3px -1px rgba(188, 79, 101, 0.06), inset 0 2px 8px 0 rgba(188, 79, 101, 0.05);
    transition: box-shadow 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.bse .team-card:hover {
    box-shadow: 0 6px 25px -1px rgba(188, 79, 101, 0.14);
    border: dashed 2px #BC4F65 !important;
}

.bse .team-card-portrait {
    width: 72px;
    height: 96px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 16px;
}

.bse .team-card-portrait img {
    width: 72px;
    height: 96px;
    object-fit: cover;
    object-position: center;
    display: block;
}

.bse .team-card h4 {
    font-size: 19px;
    font-weight: 700;
    color: #2a1018;
    letter-spacing: 0.01em;
    line-height: 1.1;
    margin: 0 0 4px;
}

.bse .team-card .role-tag {
    font-size: 15px;
    color: #BC4F65;
    letter-spacing: 0.02em;
    line-height: 1.6;
    margin-bottom: 8px;
}

.bse .team-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #5a2d38;
    letter-spacing: 0.01em;
    margin: 0;
}

.bse .team-stat-row {
    display: flex;
    flex-direction: row;
    gap: 32px;
    margin-top: 32px;
    align-items: center;
}

.bse .team-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.bse .team-stat .stat-num {
    font-size: 31px;
    font-weight: 700;
    color: #BC4F65;
    line-height: 1.1;
    letter-spacing: 0.01em;
}

.bse .team-stat .stat-label {
    font-size: 15px;
    color: #5a2d38;
    letter-spacing: 0.01em;
    line-height: 1.6;
}

.bse .arrow-indicator {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
}

.bse .arrow-indicator .num-a {
    font-size: 19px;
    font-weight: 700;
    color: #2a1018;
}

.bse .arrow-indicator .arr-svg {
    color: #BC4F65;
}

.bse .arrow-indicator .num-b {
    font-size: 19px;
    font-weight: 700;
    color: #BC4F65;
}

@media (max-width: 1024px) {
    .bse .team-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 640px) {
    .bse .team-grid {
        grid-template-columns: 1fr;
    }

    .bse .teamblk-top {
        flex-direction: column;
    }

    .bse .team-stat-row {
        flex-wrap: wrap;
    }
}

.bse .readyblk {
    background: #f5f0f2;
    padding: 72px 0 72px;
    position: relative;
}

.bse .readyblk-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 32px;
    align-items: start;
}

.bse .readyblk-img-col {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.bse .readyblk-img-col img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    object-position: center 40%;
    display: block;
    border-radius: 12px;
    animation: slowpan 14s ease-in-out infinite alternate;
}

.bse .readyblk-img-col::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(188, 79, 101, 0.18);
    mix-blend-mode: multiply;
    border-radius: 12px;
    pointer-events: none;
}

.bse .readyblk-text h2 {
    font-size: 31px;
    font-weight: 300;
    color: #2a1018;
    line-height: 1.1;
    letter-spacing: 0.01em;
    margin: 0 0 16px;
}

.bse .readyblk-text h2 strong {
    font-weight: 700;
}

.bse .readyblk-text .accent-bar {
    width: 48px;
    height: 3px;
    background: #BC4F65;
    margin-bottom: 16px;
    border-radius: 0px;
}

.bse .readyblk-text p {
    font-size: 15px;
    line-height: 1.6;
    color: #5a2d38;
    letter-spacing: 0.01em;
    margin: 0 0 16px;
}

.bse .readyblk-checklist {
    list-style: disc;
    padding-left: 20px;
    margin: 16px 0 0;
}

.bse .readyblk-checklist li {
    font-size: 15px;
    line-height: 1.6;
    color: #2a1018;
    letter-spacing: 0.01em;
    margin-bottom: 8px;
}

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

    .bse .readyblk-img-col img {
        height: 280px;
    }
}

@media (max-width: 640px) {
    .bse .readyblk {
        padding: 48px 0;
    }
}

.bse .processblk {
    background: #2a1018;
    padding: 80px 0 72px;
    position: relative;
}

.bse .processblk::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 92% 80%, rgba(188, 79, 101, 0.32) 0%, transparent 55%);
    pointer-events: none;
    animation: bgflicker 9s ease-in-out infinite;
}

.bse .processblk-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
    position: relative;
    z-index: 1;
}

.bse .processblk-header {
    text-align: center;
    margin-bottom: 32px;
}

.bse .processblk-header h2 {
    font-size: 31px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.01em;
    line-height: 1.1;
    margin: 0 0 8px;
}

.bse .processblk-header .accent-bar {
    width: 48px;
    height: 3px;
    background: #BC4F65;
    margin: 0 auto 16px;
    border-radius: 0px;
}

.bse .processblk-header p {
    font-size: 15px;
    color: rgba(229, 196, 208, 0.8);
    line-height: 1.6;
    letter-spacing: 0.01em;
    max-width: 560px;
    margin: 0 auto;
}

.bse .process-mosaic {
    display: grid;
    grid-template-columns: 1fr 1.5fr 2fr;
    gap: 16px;
    margin-top: 32px;
}

.bse .proc-item {
    background: rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 32px;
    border: 1px solid rgba(229, 196, 208, 0.12);
    transition: background 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: inset 0 2px 8px 0 rgba(188, 79, 101, 0.07);
}

.bse .proc-item:hover {
    background: rgba(188, 79, 101, 0.12);
    border-color: rgba(229, 196, 208, 0.3);
}

.bse .proc-num {
    font-size: 70px;
    font-weight: 700;
    color: rgba(188, 79, 101, 0.22);
    line-height: 1.1;
    letter-spacing: 0.01em;
    margin-bottom: 8px;
}

.bse .proc-item h4 {
    font-size: 19px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.01em;
    line-height: 1.1;
    margin: 0 0 8px;
}

.bse .proc-item p {
    font-size: 15px;
    color: rgba(229, 196, 208, 0.78);
    line-height: 1.6;
    letter-spacing: 0.01em;
    margin: 0;
}

.bse .proc-img-col {
    grid-column: 1 / -1;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.bse .proc-img-col img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    object-position: center 35%;
    display: block;
    animation: slowzoom 16s ease-in-out infinite alternate;
}

.bse .proc-img-col::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(42, 16, 24, 0.45);
    mix-blend-mode: multiply;
    pointer-events: none;
}

@media (max-width: 1024px) {
    .bse .process-mosaic {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 640px) {
    .bse .process-mosaic {
        grid-template-columns: 1fr;
    }

    .bse .proc-num {
        font-size: 31px;
    }
}

.bse .patternsblk {
    background: #fff;
    padding: 80px 0 64px;
}

.bse .patternsblk-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
}

.bse .patternsblk-top {
    text-align: center;
    margin-bottom: 32px;
}

.bse .patternsblk-top h2 {
    font-size: 31px;
    font-weight: 300;
    color: #2a1018;
    letter-spacing: 0.01em;
    line-height: 1.1;
    margin: 0 0 8px;
}

.bse .patternsblk-top h2 em {
    font-style: normal;
    font-weight: 700;
}

.bse .patternsblk-top .accent-bar {
    width: 48px;
    height: 3px;
    background: #BC4F65;
    margin: 0 auto 16px;
    border-radius: 0px;
}

.bse .patternsblk-top p {
    font-size: 15px;
    color: #5a2d38;
    line-height: 1.6;
    letter-spacing: 0.01em;
    max-width: 580px;
    margin: 0 auto;
}

.bse .patterns-cols {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 32px;
    margin-top: 32px;
    align-items: start;
}

.bse .pattern-quotes {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.bse .pq-item {
    background: #f5f0f2;
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 1px 3px -1px rgba(188, 79, 101, 0.06), inset 0 2px 8px 0 rgba(188, 79, 101, 0.04);
    transition: box-shadow 0.48s ease-in-out;
}

.bse .pq-item:hover {
    box-shadow: 0 6px 25px -1px rgba(188, 79, 101, 0.11);
}

.bse .pq-item blockquote {
    font-size: 19px;
    line-height: 1.6;
    color: #2a1018;
    letter-spacing: 0.01em;
    margin: 0 0 8px;
    font-style: italic;
}

.bse .pq-item .pq-attr {
    font-size: 15px;
    color: #BC4F65;
    letter-spacing: 0.02em;
    line-height: 1.1;
}

.bse .patterns-aside {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.bse .rating-card {
    background: #BC4F65;
    border-radius: 12px;
    padding: 32px;
    color: #fff;
    box-shadow: 0 6px 25px -1px rgba(188, 79, 101, 0.22);
}

.bse .rating-card .rating-num {
    font-size: 70px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: 0.01em;
    color: #fff;
}

.bse .rating-card .rating-label {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    letter-spacing: 0.01em;
    margin-top: 8px;
}

.bse .rating-card .rating-stars {
    display: flex;
    flex-direction: row;
    gap: 4px;
    margin-top: 8px;
}

.bse .rating-card .rating-stars .star-svg {
    width: 18px;
    height: 18px;
    fill: #fff;
    opacity: 0.9;
}

.bse .patterns-aside .aside-note {
    background: #f5f0f2;
    border-radius: 12px;
    padding: 32px;
    font-size: 15px;
    line-height: 1.6;
    color: #5a2d38;
    letter-spacing: 0.01em;
    box-shadow: 0 1px 3px -1px rgba(188, 79, 101, 0.06);
}

@media (max-width: 1024px) {
    .bse .patterns-cols {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .bse .patternsblk {
        padding: 48px 0;
    }
}

.bse .exampleblk {
    background: #f5f0f2;
    padding: 80px 0 72px;
}

.bse .exampleblk-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
}

.bse .exampleblk-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 32px;
    align-items: start;
}

.bse .example-text h2 {
    font-size: 31px;
    font-weight: 700;
    color: #2a1018;
    letter-spacing: 0.01em;
    line-height: 1.1;
    margin: 0 0 16px;
}

.bse .example-text .accent-bar {
    width: 48px;
    height: 3px;
    background: #BC4F65;
    margin-bottom: 16px;
    border-radius: 0px;
}

.bse .example-text p {
    font-size: 15px;
    line-height: 1.6;
    color: #5a2d38;
    letter-spacing: 0.01em;
    margin: 0 0 16px;
}

.bse .example-text .detail-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    background: #fff;
    border-radius: 12px;
    padding: 16px;
    margin-top: 16px;
    box-shadow: 0 1px 3px -1px rgba(188, 79, 101, 0.06);
}

.bse .example-text .detail-row .dr-label {
    font-size: 15px;
    color: #5a2d38;
    letter-spacing: 0.01em;
    line-height: 1.6;
    flex: 1 1 0;
}

.bse .example-text .detail-row .dr-val {
    font-size: 19px;
    font-weight: 700;
    color: #BC4F65;
    letter-spacing: 0.01em;
    line-height: 1.1;
}

.bse .example-img-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.bse .example-img-col .ex-img-wrap {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.bse .example-img-col .ex-img-wrap img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    object-position: center 25%;
    display: block;
    animation: slowzoom 18s ease-in-out infinite alternate;
}

.bse .example-img-col .ex-img-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(188, 79, 101, 0.12);
    mix-blend-mode: multiply;
    pointer-events: none;
}

.bse .ex-aside-card {
    background: #fff;
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 6px 25px -1px rgba(188, 79, 101, 0.11), inset 0 2px 6px 0 rgba(188, 79, 101, 0.05);
}

.bse .ex-aside-card h5 {
    font-size: 15px;
    font-weight: 700;
    color: #BC4F65;
    letter-spacing: 0.02em;
    line-height: 1.1;
    margin: 0 0 8px;
    text-transform: uppercase;
}

.bse .ex-aside-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #5a2d38;
    letter-spacing: 0.01em;
    margin: 0;
}

@media (max-width: 1024px) {
    .bse .exampleblk-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .bse .exampleblk {
        padding: 48px 0;
    }
}

.bse .situationsblk {
    background: #2a1018;
    padding: 80px 0 80px;
    position: relative;
}

.bse .situationsblk::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 10%, rgba(188, 79, 101, 0.28) 0%, transparent 60%);
    pointer-events: none;
    animation: bgflicker 11s ease-in-out infinite;
}

.bse .situationsblk-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
    position: relative;
    z-index: 1;
}

.bse .situationsblk-inner h2 {
    font-size: 31px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.01em;
    line-height: 1.1;
    margin: 0 0 8px;
    text-align: center;
}

.bse .situationsblk-inner .accent-bar {
    width: 48px;
    height: 3px;
    background: #BC4F65;
    margin: 0 auto 16px;
    border-radius: 0px;
}

.bse .sit-desc {
    font-size: 15px;
    color: rgba(229, 196, 208, 0.8);
    line-height: 1.6;
    letter-spacing: 0.01em;
    max-width: 580px;
    margin: 0 auto 32px;
    text-align: center;
}

.bse .sit-mosaic {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.bse .sit-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 32px;
    border: 1px solid rgba(229, 196, 208, 0.1);
    transition: background 0.62s ease-in-out, border-color 0.62s ease-in-out;
    box-shadow: inset 0 2px 8px 0 rgba(188, 79, 101, 0.06);
}

.bse .sit-card:hover {
    background: rgba(188, 79, 101, 0.1);
    border-color: rgba(229, 196, 208, 0.25);
    border-style: dashed;
}

.bse .sit-card h4 {
    font-size: 19px;
    font-weight: 700;
    color: #E5C4D0;
    letter-spacing: 0.01em;
    line-height: 1.1;
    margin: 0 0 8px;
}

.bse .sit-card p {
    font-size: 15px;
    color: rgba(229, 196, 208, 0.72);
    line-height: 1.6;
    letter-spacing: 0.01em;
    margin: 0;
}

.bse .sit-card .sit-icon {
    margin-bottom: 16px;
}

.bse .sit-bottom-img {
    margin-top: 32px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.bse .sit-bottom-img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    object-position: center 60%;
    display: block;
    animation: slowpan 20s ease-in-out infinite alternate;
}

.bse .sit-bottom-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(42, 16, 24, 0.52);
    mix-blend-mode: multiply;
    pointer-events: none;
}

@media (max-width: 1024px) {
    .bse .sit-mosaic {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 640px) {
    .bse .sit-mosaic {
        grid-template-columns: 1fr;
    }

    .bse .situationsblk {
        padding: 48px 0;
    }
}

.srvpg {
    background: #fff;
    overflow-x: clip;
    position: relative;
}

.srvpg ::selection {
    background: #BC4F65;
    color: #fff;
    font-weight: 700;
}

.srvpg .pgblock1 {
    position: relative;
    padding: 32px 32px 64px;
    background: linear-gradient(162deg, #BC4F65 0%, #d4788a 40%, #E5C4D0 100%);
    overflow: hidden;
}

.srvpg .pgblock1::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.18) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
}

.srvpg .pgblock1::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 32px;
    background: #fff;
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='32'%3E%3Cellipse cx='20' cy='32' rx='20' ry='16'/%3E%3C/svg%3E");
    -webkit-mask-size: 40px 32px;
    -webkit-mask-repeat: repeat-x;
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='32'%3E%3Cellipse cx='20' cy='32' rx='20' ry='16'/%3E%3C/svg%3E");
    mask-size: 40px 32px;
    mask-repeat: repeat-x;
    pointer-events: none;
}

.srvpg .titlegrid {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.srvpg .titleleft {
    flex: 1 1 0;
    min-width: 0;
}

.srvpg .titleright {
    flex: 0 0 260px;
    position: relative;
}

.srvpg .imgframe {
    width: 260px;
    height: 340px;
    border: 4px solid rgba(255, 255, 255, 0.55);
    box-shadow: 0 12px 44px -1px rgba(188, 79, 101, 0.14);
    overflow: hidden;
    position: relative;
}

.srvpg .imgframe img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    display: block;
}

.srvpg .imgframe .colorlay {
    position: absolute;
    inset: 0;
    background: rgba(188, 79, 101, 0.28);
    pointer-events: none;
}

.srvpg .pagelabel {
    display: inline-block;
    font-size: 15px;
    line-height: 1.6;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.82);
    margin-bottom: 16px;
    font-weight: 600;
}

.srvpg .pagehed {
    font-size: 70px;
    line-height: 1.1;
    letter-spacing: 0.01em;
    color: #fff;
    font-weight: 800;
    margin: 0 0 16px;
}

.srvpg .pagehed .accentword {
    color: #fff;
    position: relative;
    display: inline-block;
    -webkit-text-stroke: 2px rgba(255, 255, 255, 0.6);
    color: transparent;
    animation: textsweep 1.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes textsweep {
    0% {
        color: transparent;
    }

    40% {
        color: rgba(255, 255, 255, 0.5);
    }

    100% {
        color: #fff;
        -webkit-text-stroke: 0px;
    }
}

.srvpg .pagesubhed {
    font-size: 19px;
    line-height: 1.6;
    letter-spacing: 0.01em;
    color: rgba(255, 255, 255, 0.88);
    margin: 0 0 32px;
    max-width: 560px;
}

.srvpg .statpair {
    display: flex;
    flex-direction: row;
    gap: 32px;
    align-items: flex-end;
}

.srvpg .statitem {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.srvpg .statnum {
    font-size: 31px;
    line-height: 1.1;
    letter-spacing: 0.01em;
    font-weight: 800;
    color: #fff;
}

.srvpg .statnum.before {
    color: rgba(255, 255, 255, 0.45);
    text-decoration: line-through;
    text-decoration-color: rgba(255, 255, 255, 0.5);
}

.srvpg .statnum.after {
    color: #fff;
}

.srvpg .statlabel {
    font-size: 15px;
    line-height: 1.6;
    letter-spacing: 0.01em;
    color: rgba(255, 255, 255, 0.72);
}

.srvpg .statdivider {
    width: 1px;
    height: 48px;
    background: rgba(255, 255, 255, 0.35);
    align-self: center;
}

.srvpg .pgblock2 {
    background: #fff;
    padding: 64px 32px 32px;
    position: relative;
}

.srvpg .pgblock2inner {
    max-width: 1200px;
    margin: 0 auto;
}

.srvpg .svcgrid {
    display: grid;
    grid-template-columns: 3fr 2fr 1fr;
    gap: 32px;
    align-items: start;
    margin-bottom: 64px;
}

.srvpg .svcmain {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.srvpg .accentbar {
    width: 40px;
    height: 3px;
    background: #BC4F65;
    margin-bottom: 16px;
    border-radius: 0px;
}

.srvpg .svcmainhed {
    font-size: 31px;
    line-height: 1.1;
    letter-spacing: 0.01em;
    font-weight: 800;
    color: #1e0e14;
    margin: 0 0 16px;
}

.srvpg .svcmaintext {
    font-size: 19px;
    line-height: 1.6;
    letter-spacing: 0.01em;
    color: #3a1e26;
    margin: 0 0 16px;
}

.srvpg .svcmaintext.small {
    font-size: 15px;
    color: #5a3040;
}

.srvpg .svcside {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.srvpg .sidecard {
    background: #fff;
    border: 1px solid #E5C4D0;
    border-radius: 12px;
    padding: 16px;
    box-shadow: inset 0 1px 3px -1px rgba(188, 79, 101, 0.06), 0 6px 25px -1px rgba(188, 79, 101, 0.11);
    transition: box-shadow 0.55s ease-in-out, border-color 0.55s ease-in-out;
}

.srvpg .sidecard:hover {
    box-shadow: inset 0 1px 3px -1px rgba(188, 79, 101, 0.1), 0 12px 44px -1px rgba(188, 79, 101, 0.14);
    border-color: #BC4F65;
}

.srvpg .sidecard .cardhed {
    font-size: 15px;
    line-height: 1.6;
    letter-spacing: 0.02em;
    font-weight: 700;
    color: #BC4F65;
    margin: 0 0 8px;
}

.srvpg .sidecard .cardtext {
    font-size: 15px;
    line-height: 1.6;
    letter-spacing: 0.01em;
    color: #4a2833;
    margin: 0;
}

.srvpg .svcnarrow {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-top: 8px;
}

.srvpg .narrowitem {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 16px;
    background: linear-gradient(160deg, #fff 0%, #fdf0f3 100%);
    border-radius: 12px;
    border: 1px solid rgba(229, 196, 208, 0.6);
    transition: background 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.srvpg .narrowitem:hover {
    background: linear-gradient(160deg, #fdf0f3 0%, #f9e0e8 100%);
}

.srvpg .narrownum {
    font-size: 24px;
    line-height: 1.1;
    letter-spacing: 0.01em;
    font-weight: 800;
    color: #BC4F65;
}

.srvpg .narrowlabel {
    font-size: 15px;
    line-height: 1.6;
    letter-spacing: 0.01em;
    color: #5a3040;
}

.srvpg .tableblock {
    margin-bottom: 64px;
}

.srvpg .tablehed {
    font-size: 24px;
    line-height: 1.1;
    letter-spacing: 0.01em;
    font-weight: 300;
    color: #1e0e14;
    margin: 0 0 16px;
    text-align: center;
}

.srvpg .datatbl {
    width: 100%;
    border-collapse: collapse;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 25px -1px rgba(188, 79, 101, 0.11);
}

.srvpg .datatbl thead tr {
    background: #BC4F65;
}

.srvpg .datatbl thead th {
    font-size: 15px;
    line-height: 1.6;
    letter-spacing: 0.02em;
    font-weight: 700;
    color: #fff;
    padding: 16px;
    text-align: left;
}

.srvpg .datatbl tbody tr {
    border-bottom: 1px solid rgba(229, 196, 208, 0.4);
    transition: background 0.5s ease-in-out;
}

.srvpg .datatbl tbody tr:hover {
    background: rgba(229, 196, 208, 0.2);
}

.srvpg .datatbl tbody td {
    font-size: 15px;
    line-height: 1.6;
    letter-spacing: 0.01em;
    color: #3a1e26;
    padding: 16px;
}

.srvpg .datatbl .cell-low {
    background: rgba(229, 196, 208, 0.25);
    color: #8a4a5a;
    font-weight: 600;
}

.srvpg .datatbl .cell-mid {
    background: rgba(188, 79, 101, 0.12);
    color: #BC4F65;
    font-weight: 600;
}

.srvpg .datatbl .cell-high {
    background: rgba(188, 79, 101, 0.28);
    color: #7a1e30;
    font-weight: 700;
}

.srvpg .teamstrip {
    display: flex;
    flex-direction: row;
    gap: 32px;
    align-items: flex-start;
    padding: 32px;
    background: linear-gradient(160deg, #fdf0f3 0%, #fff 100%);
    border-radius: 12px;
    box-shadow: 0 1px 3px -1px rgba(188, 79, 101, 0.06);
    position: relative;
    overflow: hidden;
}

.srvpg .teamstrip::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: repeating-linear-gradient(60deg,
            transparent,
            transparent 18px,
            rgba(188, 79, 101, 0.03) 18px,
            rgba(188, 79, 101, 0.03) 20px);
    pointer-events: none;
}

.srvpg .teamstrip .radialspot {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(229, 196, 208, 0.22) 0%, transparent 70%);
    pointer-events: none;
}

.srvpg .portrait {
    flex: 0 0 auto;
    width: 120px;
    height: 160px;
    border: 3px solid #E5C4D0;
    overflow: hidden;
    position: relative;
    box-shadow: 0 6px 25px -1px rgba(188, 79, 101, 0.11);
}

.srvpg .portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.srvpg .teamcol {
    flex: 1 1 0;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.srvpg .teamname {
    font-size: 19px;
    line-height: 1.1;
    letter-spacing: 0.01em;
    font-weight: 800;
    color: #1e0e14;
    margin: 0;
}

.srvpg .teamrole {
    font-size: 15px;
    line-height: 1.6;
    letter-spacing: 0.02em;
    color: #BC4F65;
    font-weight: 600;
    margin: 0;
}

.srvpg .teamquote {
    font-size: 15px;
    line-height: 1.6;
    letter-spacing: 0.01em;
    color: #4a2833;
    margin: 0;
}

.srvpg .faqblock {
    margin-top: 64px;
    padding: 32px;
    background: #fff;
    border-top: 1px solid rgba(229, 196, 208, 0.5);
}

.srvpg .faqinner {
    max-width: 1200px;
    margin: 0 auto;
}

.srvpg .faqhed {
    font-size: 31px;
    line-height: 1.1;
    letter-spacing: 0.01em;
    font-weight: 800;
    color: #1e0e14;
    margin: 0 0 32px;
    text-align: center;
}

.srvpg .faqlist {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.srvpg .faqitem {
    border: 1px solid rgba(229, 196, 208, 0.6);
    border-radius: 12px;
    overflow: hidden;
}

.srvpg .faqitem summary {
    font-size: 19px;
    line-height: 1.6;
    letter-spacing: 0.01em;
    font-weight: 700;
    color: #1e0e14;
    padding: 16px;
    cursor: pointer;
    list-style: none;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    transition: background 0.5s ease-in-out, color 0.5s ease-in-out;
}

.srvpg .faqitem summary::-webkit-details-marker {
    display: none;
}

.srvpg .faqitem summary::after {
    content: "";
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    border-right: 2px solid #BC4F65;
    border-bottom: 2px solid #BC4F65;
    transform: rotate(45deg);
    transition: transform 0.5s ease-in-out;
    margin-top: -4px;
}

.srvpg .faqitem[open] summary::after {
    transform: rotate(-135deg);
    margin-top: 4px;
}

.srvpg .faqitem summary:hover {
    background: rgba(229, 196, 208, 0.15);
    color: #BC4F65;
}

.srvpg .faqitem[open] summary {
    background: rgba(229, 196, 208, 0.15);
    color: #BC4F65;
}

.srvpg .faqbody {
    font-size: 15px;
    line-height: 1.6;
    letter-spacing: 0.01em;
    color: #4a2833;
    padding: 16px;
    border-top: 1px solid rgba(229, 196, 208, 0.4);
}

.srvpg .ctarow {
    display: flex;
    flex-direction: row;
    gap: 16px;
    align-items: center;
    margin-top: 32px;
    flex-wrap: wrap;
}

.srvpg .btnprimary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    background: #BC4F65;
    color: #fff;
    font-size: 15px;
    line-height: 1.6;
    letter-spacing: 0.02em;
    font-weight: 700;
    border: none;
    border-radius: 36px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: background 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 6px 25px -1px rgba(188, 79, 101, 0.11);
    text-decoration: none;
}

.srvpg .btnprimary:hover {
    background: #a33c52;
    box-shadow: 0 12px 44px -1px rgba(188, 79, 101, 0.14);
}

.srvpg .btnprimary:focus-visible {
    outline: 3px solid #BC4F65;
    outline-offset: 4px;
}

.srvpg .btnprimary .ripple-origin {
    position: absolute;
    border-radius: 36px;
    background: rgba(255, 255, 255, 0.25);
    transform: scale(0);
    animation: rippleout 0.65s ease-in-out forwards;
    pointer-events: none;
    width: 8px;
    height: 8px;
    margin-left: -4px;
    margin-top: -4px;
}

@keyframes rippleout {
    to {
        transform: scale(28);
        opacity: 0;
    }
}

.srvpg .btnsecondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    background: transparent;
    color: #BC4F65;
    font-size: 15px;
    line-height: 1.6;
    letter-spacing: 0.02em;
    font-weight: 700;
    border: 2px solid #BC4F65;
    border-radius: 36px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: background 0.55s ease-in-out, color 0.55s ease-in-out;
    text-decoration: none;
}

.srvpg .btnsecondary:hover {
    background: rgba(229, 196, 208, 0.25);
}

.srvpg .btnsecondary:focus-visible {
    outline: 3px solid #BC4F65;
    outline-offset: 4px;
}

@media (max-width: 1024px) {
    .srvpg .svcgrid {
        grid-template-columns: 1fr 1fr;
    }

    .srvpg .svcnarrow {
        grid-column: 1 / -1;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .srvpg .narrowitem {
        flex: 1 1 120px;
    }

    .srvpg .pagehed {
        font-size: 70px;
    }

    .srvpg .titleright {
        flex: 0 0 200px;
    }

    .srvpg .imgframe {
        width: 200px;
        height: 260px;
    }
}

@media (max-width: 640px) {
    .srvpg .pgblock1 {
        padding: 32px 16px 64px;
    }

    .srvpg .titlegrid {
        flex-direction: column;
        gap: 16px;
    }

    .srvpg .titleright {
        flex: 0 0 auto;
        width: 100%;
    }

    .srvpg .imgframe {
        width: 100%;
        height: 220px;
    }

    .srvpg .pagehed {
        font-size: 31px;
    }

    .srvpg .svcgrid {
        grid-template-columns: 1fr;
    }

    .srvpg .pgblock2 {
        padding: 32px 16px 32px;
    }

    .srvpg .teamstrip {
        flex-direction: column;
        padding: 16px;
        gap: 16px;
    }

    .srvpg .faqblock {
        padding: 16px;
    }

    .srvpg .datatbl thead th,
    .srvpg .datatbl tbody td {
        padding: 8px;
        font-size: 15px;
    }

    .srvpg .statpair {
        flex-wrap: wrap;
        gap: 16px;
    }

    .srvpg .ctarow {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 360px) {
    .srvpg .pagehed {
        font-size: 24px;
    }

    .srvpg .btnprimary,
    .srvpg .btnsecondary {
        padding: 16px;
        font-size: 15px;
    }
}

.ctus {
    background: #FFFFFF;
    overflow-x: clip;
    position: relative;
}

.ctus .reach-panel {
    max-width: 1200px;
    margin: 0 auto;
    padding: 32px 32px 32px 32px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: start;
    position: relative;
}

.ctus .reach-left {
    padding: 32px 32px 32px 0;
    position: relative;
}

.ctus .reach-left::before {
    content: '';
    display: block;
    width: 48px;
    height: 3px;
    background: #BC4F65;
    margin-bottom: 16px;
}

.ctus .reach-eyebrow {
    font-size: 15px;
    letter-spacing: 0.02em;
    color: #BC4F65;
    line-height: 1.6;
    margin-bottom: 16px;
    font-weight: 600;
    text-transform: uppercase;
}

.ctus .reach-h1 {
    font-size: 70px;
    line-height: 1.1;
    letter-spacing: 0.01em;
    color: #1a0810;
    font-weight: 800;
    margin-bottom: 16px;
}

.ctus .reach-h1 .reach-h1-light {
    font-weight: 300;
    color: #BC4F65;
    display: block;
}

.ctus .reach-desc {
    font-size: 19px;
    line-height: 1.6;
    letter-spacing: 0.01em;
    color: #3d1a24;
    margin-bottom: 32px;
    max-width: 480px;
}

.ctus .detail-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ctus .detail-list li {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
}

.ctus .detail-icon {
    width: 40px;
    height: 40px;
    background: #E5C4D0;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 1px 3px -1px rgba(188, 79, 101, 0.06);
}

.ctus .detail-icon svg {
    width: 20px;
    height: 20px;
}

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

.ctus .detail-label {
    font-size: 15px;
    line-height: 1.1;
    letter-spacing: 0.02em;
    color: #BC4F65;
    font-weight: 600;
}

.ctus .detail-value {
    font-size: 19px;
    line-height: 1.6;
    letter-spacing: 0.01em;
    color: #2a0e18;
    font-weight: 400;
}

.ctus .detail-value a {
    color: #2a0e18;
    text-decoration: none;
    border-bottom: 1px solid rgba(188, 79, 101, 0.3);
    transition: color 0.5s ease-in-out, border-color 0.5s ease-in-out;
}

.ctus .detail-value a:hover {
    color: #BC4F65;
    border-color: #BC4F65;
}

.ctus .reach-img-col {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 12px 44px -1px rgba(188, 79, 101, 0.14);
    min-height: 480px;
}

.ctus .reach-img-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    display: block;
    animation: imgpan 9s ease-in-out infinite alternate;
}

@keyframes imgpan {
    from {
        transform: scale(1.0) translateY(0);
    }

    to {
        transform: scale(1.06) translateY(-16px);
    }
}

.ctus .reach-img-tint {
    position: absolute;
    inset: 0;
    background: rgba(188, 79, 101, 0.18);
    border-radius: 12px;
    pointer-events: none;
}

.ctus .reach-deco-lines {
    position: absolute;
    top: 32px;
    right: 0;
    width: 60px;
    height: 120px;
    pointer-events: none;
    overflow: hidden;
}

.ctus .reach-deco-lines span {
    display: block;
    height: 1px;
    background: #BC4F65;
    opacity: 0.25;
    margin-bottom: 8px;
    animation: linefade 0.65s ease-in-out both;
}

.ctus .reach-deco-lines span:nth-child(1) {
    width: 60px;
    animation-delay: 0.1s;
}

.ctus .reach-deco-lines span:nth-child(2) {
    width: 44px;
    animation-delay: 0.2s;
}

.ctus .reach-deco-lines span:nth-child(3) {
    width: 52px;
    animation-delay: 0.3s;
}

.ctus .reach-deco-lines span:nth-child(4) {
    width: 36px;
    animation-delay: 0.4s;
}

.ctus .reach-deco-lines span:nth-child(5) {
    width: 48px;
    animation-delay: 0.5s;
}

@keyframes linefade {
    from {
        opacity: 0;
        transform: translateX(12px);
    }

    to {
        opacity: 0.25;
        transform: translateX(0);
    }
}

.ctus .reach-panel .stagger-item {
    animation: blockrise 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

.ctus .reach-panel .stagger-item:nth-child(1) {
    animation-delay: 0.1s;
}

.ctus .reach-panel .stagger-item:nth-child(2) {
    animation-delay: 0.25s;
}

@keyframes blockrise {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

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

.ctus .form-belt {
    background: linear-gradient(175deg, #E5C4D0 0%, #f5e8ed 60%, #FFFFFF 100%);
    position: relative;
    clip-path: polygon(0 28px, 100% 0, 100% 100%, 0 100%);
    padding: 64px 32px 64px 32px;
}

.ctus .form-belt::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(0deg, rgba(188, 79, 101, 0.06) 0px, rgba(188, 79, 101, 0.06) 1px, transparent 1px, transparent 18px),
        repeating-linear-gradient(90deg, rgba(188, 79, 101, 0.06) 0px, rgba(188, 79, 101, 0.06) 1px, transparent 1px, transparent 18px);
    pointer-events: none;
    border-radius: 0;
}

.ctus .form-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 32px;
    align-items: start;
    position: relative;
}

.ctus .form-sidebar {
    background: #BC4F65;
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 6px 25px -1px rgba(188, 79, 101, 0.11);
    position: relative;
    overflow: hidden;
}

.ctus .form-sidebar::after {
    content: '';
    position: absolute;
    bottom: -32px;
    right: -32px;
    width: 120px;
    height: 120px;
    border-radius: 36px;
    background: rgba(255, 255, 255, 0.08);
    pointer-events: none;
}

.ctus .sidebar-heading {
    font-size: 24px;
    line-height: 1.1;
    letter-spacing: 0.01em;
    color: #FFFFFF;
    font-weight: 700;
    margin-bottom: 16px;
}

.ctus .sidebar-body {
    font-size: 15px;
    line-height: 1.6;
    letter-spacing: 0.01em;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 32px;
}

.ctus .sidebar-stat {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 16px;
    margin-top: 16px;
}

.ctus .sidebar-stat-num {
    font-size: 31px;
    line-height: 1.1;
    letter-spacing: 0.01em;
    color: #FFFFFF;
    font-weight: 800;
    display: block;
}

.ctus .sidebar-stat-label {
    font-size: 15px;
    line-height: 1.6;
    letter-spacing: 0.02em;
    color: rgba(255, 255, 255, 0.7);
}

.ctus .form-card {
    background: #FFFFFF;
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 6px 25px -1px rgba(188, 79, 101, 0.11), inset 0 2px 8px -2px rgba(188, 79, 101, 0.06);
    animation: blockrise 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.35s both;
}

.ctus .form-heading {
    font-size: 31px;
    line-height: 1.1;
    letter-spacing: 0.01em;
    color: #2a0e18;
    font-weight: 700;
    margin-bottom: 8px;
}

.ctus .form-sub {
    font-size: 15px;
    line-height: 1.6;
    letter-spacing: 0.01em;
    color: #7a3a4a;
    margin-bottom: 32px;
}

.ctus .field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

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

.ctus .field-group.full {
    grid-column: 1 / -1;
}

.ctus .field-label {
    font-size: 15px;
    line-height: 1.1;
    letter-spacing: 0.02em;
    color: #2a0e18;
    font-weight: 600;
}

.ctus .field-input {
    border: 1.5px solid #E5C4D0;
    border-radius: 12px;
    padding: 16px;
    font-size: 15px;
    line-height: 1.6;
    letter-spacing: 0.01em;
    color: #2a0e18;
    background: #FFFFFF;
    outline: none;
    transition: border-color 0.5s ease-in-out, box-shadow 0.5s ease-in-out;
    width: 100%;
    box-sizing: border-box;
}

.ctus .field-input::placeholder {
    color: rgba(42, 14, 24, 0.35);
}

.ctus .field-input:focus {
    border-color: #BC4F65;
    box-shadow: 0 0 0 3px rgba(188, 79, 101, 0.12);
}

.ctus .radio-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
}

.ctus .radio-group-label {
    font-size: 15px;
    line-height: 1.1;
    letter-spacing: 0.02em;
    color: #2a0e18;
    font-weight: 600;
    margin-bottom: 8px;
}

.ctus .radio-options {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
}

.ctus .radio-opt {
    position: relative;
}

.ctus .radio-opt input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    pointer-events: none;
}

.ctus .radio-opt label {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 36px;
    border: 1.5px solid #E5C4D0;
    font-size: 15px;
    line-height: 1.6;
    letter-spacing: 0.01em;
    color: #3d1a24;
    cursor: pointer;
    transition: background 0.5s ease-in-out, border-color 0.5s ease-in-out, color 0.45s ease-in-out;
    background: #FFFFFF;
}

.ctus .radio-opt input[type="radio"]:checked+label {
    background: #BC4F65;
    border-color: #BC4F65;
    color: #FFFFFF;
}

.ctus .radio-opt label:hover {
    background: #E5C4D0;
    border-color: #BC4F65;
}

.ctus .privacy-row {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 16px;
    margin-top: 8px;
}

.ctus .privacy-row input[type="checkbox"] {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    accent-color: #BC4F65;
    margin-top: 2px;
    cursor: pointer;
}

.ctus .privacy-text {
    font-size: 15px;
    line-height: 1.6;
    letter-spacing: 0.01em;
    color: #5a2a36;
}

.ctus .privacy-text a {
    color: #BC4F65;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.5s ease-in-out;
}

.ctus .privacy-text a:hover {
    color: #8a2a3a;
}

.ctus .submit-btn {
    background: #BC4F65;
    color: #FFFFFF;
    border: none;
    border-radius: 12px;
    padding: 16px 32px;
    font-size: 19px;
    line-height: 1.1;
    letter-spacing: 0.01em;
    font-weight: 700;
    cursor: pointer;
    width: 100%;
    position: relative;
    overflow: hidden;
    transition: background 0.55s ease-in-out, box-shadow 0.55s ease-in-out;
    box-shadow: 0 6px 25px -1px rgba(188, 79, 101, 0.11);
}

.ctus .submit-btn:hover {
    background: #9a3a50;
    box-shadow: 0 12px 44px -1px rgba(188, 79, 101, 0.14);
}

.ctus .submit-btn:focus {
    outline: 3px solid rgba(188, 79, 101, 0.4);
    outline-offset: 3px;
}

.ctus .submit-btn:active {
    background: #7a2a3c;
}

.ctus .submit-btn .ripple-surface {
    position: absolute;
    inset: 0;
    border-radius: 12px;
    overflow: hidden;
    pointer-events: none;
}

@media (max-width: 1024px) {
    .ctus .reach-panel {
        grid-template-columns: 1fr;
        padding: 32px 16px;
    }

    .ctus .reach-img-col {
        min-height: 320px;
        order: -1;
    }

    .ctus .reach-h1 {
        font-size: 31px;
    }

    .ctus .form-inner {
        grid-template-columns: 1fr;
    }

    .ctus .form-belt {
        padding: 64px 16px 32px 16px;
    }
}

@media (max-width: 640px) {
    .ctus .field-row {
        grid-template-columns: 1fr;
    }

    .ctus .reach-h1 {
        font-size: 31px;
    }

    .ctus .form-card {
        padding: 16px;
    }

    .ctus .form-sidebar {
        padding: 16px;
    }

    .ctus .reach-left {
        padding: 16px 0;
    }

    .ctus .radio-options {
        flex-direction: column;
    }
}

@media (max-width: 360px) {
    .ctus .reach-panel {
        padding: 16px 8px;
    }

    .ctus .form-belt {
        padding: 48px 8px 16px 8px;
    }

    .ctus .reach-h1 {
        font-size: 24px;
    }
}

.successPage {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 32px 16px;
    background: #fff;
}

.successPage .successWrap {
    max-width: 600px;
    width: 100%;
    text-align: center;
    padding: 32px;
}

.successPage .iconRing {
    width: 80px;
    height: 80px;
    border-radius: 36px;
    background: #E5C4D0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
    box-shadow: 0 6px 25px -1px rgba(188, 79, 101, 0.11);
}

.successPage .iconRing svg {
    display: block;
}

.successPage .successHeading {
    font-size: 31px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: 0.01em;
    color: #2a1a1f;
    margin: 0 0 16px;
}

.successPage .successText {
    font-size: 19px;
    line-height: 1.6;
    letter-spacing: 0.01em;
    color: #4a2f38;
    margin: 0 0 32px;
}

.successPage .accentBar {
    width: 40px;
    height: 3px;
    background: #BC4F65;
    border-radius: 0px;
    margin: 0 auto 32px;
}

.successPage .successNote {
    font-size: 15px;
    line-height: 1.6;
    letter-spacing: 0.02em;
    color: #7a5560;
    margin: 0 0 32px;
    padding: 16px;
    background: #fdf5f7;
    border-radius: 12px;
    box-shadow: inset 0 1px 3px -1px rgba(188, 79, 101, 0.06);
}

.successPage .backBtn {
    display: inline-block;
    padding: 16px 32px;
    background: #BC4F65;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.02em;
    line-height: 1.1;
    border-radius: 12px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    box-shadow: 0 6px 25px -1px rgba(188, 79, 101, 0.14);
    transition: background 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.55s ease-in-out;
    position: relative;
    overflow: hidden;
}

.successPage .backBtn:hover {
    background: #a03d52;
    box-shadow: 0 12px 44px -1px rgba(188, 79, 101, 0.14);
}

.successPage .backBtn:focus {
    outline: 2px solid #BC4F65;
    outline-offset: 4px;
}

.successPage .backBtn:active {
    background: #8c3347;
}

@media (max-width: 640px) {
    .successPage .successWrap {
        padding: 32px 16px;
    }

    .successPage .successHeading {
        font-size: 24px;
    }

    .successPage .successText {
        font-size: 15px;
    }
}