@import url('https://cdn.jsdelivr.net/npm/@fontsource/open-sans@latest/400.css');
@import url('https://cdn.jsdelivr.net/npm/@fontsource/open-sans@latest/500.css');
@import url('https://cdn.jsdelivr.net/npm/@fontsource/open-sans@latest/600.css');
@import url('https://cdn.jsdelivr.net/npm/@fontsource/open-sans@latest/700.css');

*,
*::before,
*::after {
    content: none;
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    min-height: 100svh;
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
    font-family: 'Open Sans', sans-serif;
}

.utilbar {
    background: #1b1b2a;
    padding: 8px 0;
}

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

.utilbar-contacts {
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
}

.utilbar-contacts a {
    font-size: 16px;
    line-height: 1.35;
    color: #c8c8d8;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.15s ease-out;
}

.utilbar-contacts a:focus {
    text-decoration: underline;
    outline: 2px solid #04E483;
    outline-offset: 2px;
    border-radius: 8px;
}

.utilbar-contacts a:hover {
    color: #04E483;
}

.utilbar-addr {
    font-size: 16px;
    line-height: 1.35;
    color: #8888a0;
    font-weight: 400;
}

.headermain {
    background: #ffffff;
    border-bottom: 2px solid #f0f0f5;
    box-shadow: 2px 4px 20px -2px rgba(253, 41, 70, 0.09);
}

.headermain-pod {
    max-width: 1024px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    min-height: 80px;
}

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

.brand-logopill {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1b1b2a;
    border-radius: 48px;
    padding: 8px 16px;
    box-shadow: 2px 3px 5px -2px rgba(253, 41, 70, 0.07);
    height: 48px;
    min-width: 80px;
}

.brand-logopill img {
    width: auto;
    height: 32px;
    display: block;
    object-fit: contain;
}

.brand-name {
    font-size: 24px;
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: 0;
    background: linear-gradient(135deg, #FD2946 0%, #FD8613 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-decoration: none;
}

.mainnav {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.mainnav a {
    font-size: 16px;
    line-height: 1.35;
    font-weight: 600;
    color: #1b1b2a;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 8px;
    transition: color 0.15s ease-out, background 0.18s ease;
    white-space: nowrap;
    min-height: 44px;
    display: flex;
    align-items: center;
}

.mainnav a:hover {
    color: #FD2946;
    background: rgba(253, 41, 70, 0.06);
}

.mainnav a:focus {
    outline: 2px solid #FD2946;
    outline-offset: 2px;
    text-decoration: underline;
}

.mainnav a.active {
    color: #FD2946;
    background: rgba(253, 41, 70, 0.08);
}

.ftrmain {
    background: #1b1b2a;
    padding: 32px 0 0;
}

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

.ftrupper {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 32px;
    padding-bottom: 32px;
}

.ftrgroup-label {
    font-size: 16px;
    line-height: 1.35;
    font-weight: 700;
    color: #04E483;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

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

.ftrgroup ul li a {
    font-size: 16px;
    line-height: 1.6;
    color: #b0b0c8;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.15s ease-out;
}

.ftrgroup ul li a:hover {
    color: #ffffff;
}

.ftrgroup ul li a:focus {
    text-decoration: underline;
    outline: 2px solid #04E483;
    outline-offset: 2px;
    border-radius: 8px;
}

.ftrcontact-item {
    font-size: 16px;
    line-height: 1.8;
    color: #b0b0c8;
    font-weight: 400;
}

.ftrcontact-item a {
    color: #b0b0c8;
    text-decoration: none;
    transition: color 0.15s ease-out;
}

.ftrcontact-item a:hover {
    color: #04E483;
}

.ftrcontact-item a:focus {
    text-decoration: underline;
    outline: 2px solid #04E483;
    outline-offset: 2px;
    border-radius: 8px;
}

.ftrlogocell {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.ftrlogopill {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #2a2a3e;
    border-radius: 48px;
    padding: 8px 16px;
    box-shadow: 2px 3px 5px -2px rgba(253, 41, 70, 0.07);
    height: 44px;
    min-width: 72px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.ftrlogopill img {
    width: auto;
    height: 28px;
    display: block;
    object-fit: contain;
}

.ftrlogoname {
    font-size: 18px;
    line-height: 1.1;
    font-weight: 700;
    color: #ffffff;
}

.ftrstrip {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 16px 0;
}

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

.ftrcopy {
    font-size: 16px;
    line-height: 1.35;
    color: #666680;
    font-weight: 400;
}

.ftrstrip-links {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.ftrstrip-links a {
    font-size: 16px;
    line-height: 1.35;
    color: #666680;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.15s ease-out;
}

.ftrstrip-links a:hover {
    color: #b0b0c8;
}

.ftrstrip-links a:focus {
    text-decoration: underline;
    outline: 2px solid #04E483;
    outline-offset: 2px;
    border-radius: 8px;
}

.cookietile {
    position: fixed;
    top: 16px;
    left: 16px;
    z-index: 1200;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 2px 8px 44px -2px rgba(253, 41, 70, 0.12);
    padding: 16px;
    max-width: 320px;
    width: calc(100vw - 32px);
}

.cookietile[hidden] {
    display: none;
}

.cookietile-msg {
    font-size: 16px;
    line-height: 1.6;
    color: #1b1b2a;
    font-family: 'Open Sans', sans-serif;
    margin-bottom: 16px;
}

.cookietile-actions {
    display: flex;
    gap: 8px;
    align-items: center;
}

.cookiebtn {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.35;
    border: none;
    border-radius: 8px;
    padding: 8px 16px;
    cursor: pointer;
    min-height: 44px;
    flex: 1;
    transition: background 0.15s ease-out, width 0.18s ease;
    text-transform: lowercase;
}

.cookiebtn.agree {
    background: #FD2946;
    color: #ffffff;
}

.cookiebtn.agree:hover {
    background: #e0223d;
    width: calc(100% + 8px);
}

.cookiebtn.agree:focus {
    outline: 2px solid #FD2946;
    outline-offset: 2px;
}

.cookiebtn.decline {
    background: #f0f0f5;
    color: #1b1b2a;
}

.cookiebtn.decline:hover {
    background: #e2e2ec;
    width: calc(100% + 8px);
}

.cookiebtn.decline:focus {
    outline: 2px solid #1b1b2a;
    outline-offset: 2px;
}

@media (max-width: 768px) {
    .utilbar-pod {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        padding: 0 16px;
    }

    .utilbar-contacts {
        gap: 16px;
    }

    .headermain-pod {
        flex-direction: column;
        align-items: flex-start;
        padding: 16px;
        min-height: auto;
        gap: 16px;
    }

    .mainnav {
        justify-content: flex-start;
        width: 100%;
    }

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

    .ftrmain-pod {
        padding: 0 16px;
    }

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

.legal-data {
    max-width: 1024px;
    margin: 0 auto;
    padding: 32px;
    color: #2a2a2a;
    line-height: 1.8;
    font-size: 18px;
}

.legal-data p {
    margin-bottom: 16px;
    line-height: 1.8;
    font-size: 18px;
    color: #2a2a2a;
}

.legal-data ul,
.legal-data ol {
    margin-bottom: 16px;
    padding-left: 32px;
}

.legal-data ul {
    list-style-type: disc;
}

.legal-data ol {
    list-style-type: decimal;
}

.legal-data li {
    margin-bottom: 8px;
    line-height: 1.8;
    font-size: 18px;
    color: #2a2a2a;
}

.legal-data li ul,
.legal-data li ol {
    margin-top: 8px;
    margin-bottom: 8px;
}

.legal-data em,
.legal-data i {
    font-style: italic;
    color: #2a2a2a;
}

.legal-data a {
    color: #FD2946;
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-thickness: 1px;
    transition: color 0.15s ease-out, text-decoration-color 0.15s ease-out;
}

.legal-data a:hover {
    color: #c4001e;
    text-decoration-color: #FD8613;
}

.legal-data a:visited {
    color: #b8001a;
}

.legal-data table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 32px;
    font-size: 16px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 2px 4px 20px -2px rgba(253, 41, 70, 0.09);
}

.legal-data thead {
    background: linear-gradient(135deg, #FD2946 0%, #FD8613 100%);
}

.legal-data thead th {
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    padding: 16px;
    text-align: left;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.legal-data tbody tr {
    border-bottom: 1px solid rgba(253, 41, 70, 0.08);
    transition: background-color 0.1s ease-out;
}

.legal-data tbody tr:last-child {
    border-bottom: none;
}

.legal-data tbody tr:nth-child(even) {
    background-color: rgba(4, 228, 131, 0.04);
}

.legal-data tbody tr:hover {
    background-color: rgba(253, 41, 70, 0.04);
}

.legal-data th,
.legal-data td {
    padding: 16px;
    text-align: left;
    vertical-align: top;
    font-size: 16px;
    line-height: 1.6;
    color: #2a2a2a;
}

.legal-data td {
    border-right: 1px solid rgba(253, 41, 70, 0.07);
}

.legal-data td:last-child {
    border-right: none;
}

.legal-data hr {
    border: none;
    height: 2px;
    background: linear-gradient(90deg, #FD2946 0%, #04E483 50%, #FD8613 100%);
    margin-top: 32px;
    margin-bottom: 32px;
    border-radius: 8px;
    opacity: 0.35;
}

.legal-data div {
    margin-bottom: 16px;
}

@media (max-width: 768px) {
    .legal-data {
        padding: 16px;
        font-size: 16px;
    }

    .legal-data p {
        font-size: 16px;
    }

    .legal-data li {
        font-size: 16px;
    }

    .legal-data ul,
    .legal-data ol {
        padding-left: 16px;
    }

    .legal-data table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        border-radius: 8px;
    }

    .legal-data thead th {
        font-size: 16px;
        padding: 8px 16px;
        white-space: nowrap;
    }

    .legal-data th,
    .legal-data td {
        padding: 8px 16px;
        font-size: 16px;
        white-space: nowrap;
    }
}

.frst {
    max-width: 100%;
    overflow-x: hidden;
}

.frst .pgwrap {
    max-width: 1024px;
    margin: 0 auto;
    padding: 0 16px;
}

.frst .titblock {
    background: linear-gradient(337deg, #fff5f7 0%, #fff9f0 30%, #f0fff8 65%, #fff 100%);
    padding: 64px 16px 48px;
    position: relative;
}

.frst .titblock .pgwrap {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 32px;
}

.frst .titblock .titlft {
    flex: 1 1 55%;
    position: relative;
    z-index: 1;
}

.frst .titblock .titrgt {
    flex: 1 1 40%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.frst .titblock .bgnum {
    position: absolute;
    right: -16px;
    top: -32px;
    font-size: 220px;
    font-weight: 900;
    line-height: 1.1;
    color: #FD2946;
    opacity: 0.05;
    pointer-events: none;
    user-select: none;
    z-index: 0;
    white-space: nowrap;
}

.frst .titblock .tagline {
    font-size: 16px;
    line-height: 1.6;
    color: #FD2946;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 16px;
    font-weight: 600;
}

.frst .titblock .mainhed {
    font-size: 62px;
    line-height: 1.1;
    font-weight: 900;
    color: #1b1b1b;
    margin: 0 0 24px;
}

.frst .titblock .mainhed em {
    font-style: italic;
    background: linear-gradient(337deg, #FD2946 0%, #FD8613 60%, #04E483 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.frst .titblock .subdesc {
    font-size: 18px;
    line-height: 1.6;
    color: #3a3a3a;
    max-width: 480px;
    margin: 0 0 32px;
}

.frst .titblock .titbtns {
    display: flex;
    flex-direction: row;
    gap: 16px;
    flex-wrap: wrap;
}

.frst .titblock .btnprim {
    display: inline-block;
    padding: 14px 32px;
    background: linear-gradient(337deg, #FD2946 0%, #FD8613 100%);
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    transition: width 0.15s ease-out, box-shadow 0.18s ease-out, transform 0.12s ease-out;
    box-shadow: 2px 4px 20px -2px rgba(253, 41, 70, 0.09);
}

.frst .titblock .btnprim:hover {
    box-shadow: 2px 8px 44px -2px rgba(253, 41, 70, 0.12);
    transform: scaleX(1.04);
}

.frst .titblock .btnsec {
    display: inline-block;
    padding: 14px 32px;
    background: transparent;
    color: #1b1b1b;
    font-size: 16px;
    font-weight: 600;
    border: 2px solid #1b1b1b;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    transition: border-color 0.15s ease-out, transform 0.12s ease-out;
}

.frst .titblock .btnsec:hover {
    border-color: #FD2946;
    color: #FD2946;
    transform: scaleX(1.04);
}

.frst .titblock .imgframe {
    width: 100%;
    max-width: 380px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    box-shadow: 2px 8px 44px -2px rgba(253, 41, 70, 0.12);
}

.frst .titblock .imgframe img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    object-position: center;
    display: block;
}

.frst .titblock .imgframe::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 0% 0%, rgba(253, 41, 70, 0.22) 0%, transparent 50%),
        radial-gradient(ellipse at 100% 100%, rgba(4, 228, 131, 0.18) 0%, transparent 50%);
    pointer-events: none;
    border-radius: 12px;
}

.frst .invblock {
    background: #fff;
    padding: 64px 16px;
    border-top: 1px solid #f0f0f0;
}

.frst .invblock .pgwrap {
    display: flex;
    flex-direction: row;
    gap: 32px;
    align-items: flex-start;
}

.frst .invblock .invlft {
    flex: 1 1 50%;
}

.frst .invblock .invrgt {
    flex: 1 1 45%;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.frst .invblock .seclab {
    font-size: 16px;
    line-height: 1.6;
    color: #FD8613;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    margin-bottom: 8px;
}

.frst .invblock .sechead {
    font-size: 24px;
    line-height: 1.35;
    font-weight: 800;
    font-style: italic;
    color: #1b1b1b;
    margin: 0 0 16px;
}

.frst .invblock .secdesc {
    font-size: 16px;
    line-height: 1.8;
    color: #3a3a3a;
    margin: 0 0 16px;
}

.frst .invblock .metgrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.frst .invblock .metitem {
    background: #fff;
    border: 1.5px solid #f0e8e8;
    border-radius: 12px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    box-shadow: 2px 3px 5px -2px rgba(253, 41, 70, 0.07);
    transition: box-shadow 0.18s ease-out, border-color 0.15s ease-out;
}

.frst .invblock .metitem:hover {
    box-shadow: 2px 4px 20px -2px rgba(253, 41, 70, 0.09);
    border-color: #FD2946;
}

.frst .invblock .metval {
    font-size: 24px;
    line-height: 1.1;
    font-weight: 900;
    color: #FD2946;
}

.frst .invblock .metlbl {
    font-size: 16px;
    line-height: 1.6;
    color: #5a5a5a;
}

.frst .invblock .imgside {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 2px 4px 20px -2px rgba(253, 134, 19, 0.09);
}

.frst .invblock .imgside img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.2s ease-out;
}

.frst .invblock .imgside:hover img {
    transform: scale(1.03);
}

.frst .peoplblock {
    background: #1a0a0e;
    padding: 64px 16px;
    position: relative;
}

.frst .peoplblock .pgwrap {
    display: flex;
    flex-direction: row;
    gap: 32px;
    align-items: flex-start;
}

.frst .peoplblock .pplrgt {
    flex: 1 1 55%;
}

.frst .peoplblock .ppllft {
    flex: 0 0 280px;
}

.frst .peoplblock .bgabbr {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 220px;
    font-weight: 900;
    line-height: 1.1;
    color: #04E483;
    opacity: 0.04;
    pointer-events: none;
    user-select: none;
    z-index: 0;
}

.frst .peoplblock .seclab {
    font-size: 16px;
    line-height: 1.6;
    color: #04E483;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    margin-bottom: 8px;
}

.frst .peoplblock .sechead {
    font-size: 24px;
    line-height: 1.35;
    font-weight: 800;
    font-style: italic;
    color: #fff;
    margin: 0 0 16px;
}

.frst .peoplblock .secdesc {
    font-size: 16px;
    line-height: 1.8;
    color: #d0c8c8;
    margin: 0 0 16px;
}

.frst .peoplblock .portcard {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    box-shadow: 2px 8px 44px -2px rgba(4, 228, 131, 0.12);
}

.frst .peoplblock .portcard img {
    width: 100%;
    aspect-ratio: 5/7;
    object-fit: cover;
    object-position: center;
    display: block;
}

.frst .peoplblock .portcard .portover {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px;
    background: linear-gradient(337deg, rgba(26, 10, 14, 0.92) 0%, rgba(26, 10, 14, 0.6) 100%);
}

.frst .peoplblock .portcard .portname {
    font-size: 18px;
    line-height: 1.35;
    font-weight: 700;
    color: #fff;
    margin: 0 0 4px;
}

.frst .peoplblock .portcard .portrole {
    font-size: 16px;
    line-height: 1.6;
    color: #04E483;
}

.frst .peoplblock .explist {
    list-style: none;
    padding: 0;
    margin: 16px 0 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.frst .peoplblock .explist li {
    font-size: 16px;
    line-height: 1.6;
    color: #d0c8c8;
    padding: 8px 16px;
    border-radius: 8px;
    border: 1px solid rgba(4, 228, 131, 0.18);
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    transition: border-color 0.15s ease-out, background 0.18s ease-out;
}

.frst .peoplblock .explist li:hover {
    border-color: #04E483;
    background: rgba(4, 228, 131, 0.06);
}

.frst .peoplblock .explist li .dot {
    width: 8px;
    height: 8px;
    border-radius: 48px;
    background: #04E483;
    flex-shrink: 0;
}

.frst .peoplblock .pplrgt {
    position: relative;
    z-index: 1;
}

.frst .suppblock {
    background: linear-gradient(337deg, #fff5f7 0%, #fff 60%, #f0fff8 100%);
    padding: 64px 16px;
    border-top: 1px solid #f0f0f0;
}

.frst .suppblock .pgwrap {
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: center;
}

.frst .suppblock .supphed {
    text-align: center;
    max-width: 640px;
}

.frst .suppblock .seclab {
    font-size: 16px;
    line-height: 1.6;
    color: #FD2946;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    margin-bottom: 8px;
}

.frst .suppblock .sechead {
    font-size: 24px;
    line-height: 1.35;
    font-weight: 800;
    font-style: italic;
    color: #1b1b1b;
    margin: 0 0 16px;
}

.frst .suppblock .secdesc {
    font-size: 16px;
    line-height: 1.8;
    color: #3a3a3a;
    margin: 0;
}

.frst .suppblock .supprow {
    display: flex;
    flex-direction: row;
    gap: 16px;
    width: 100%;
    flex-wrap: wrap;
}

.frst .suppblock .suppcard {
    flex: 1 1 220px;
    border-radius: 12px;
    background: #fff;
    border: 1.5px solid #f0e8e8;
    padding: 24px 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    box-shadow: 2px 3px 5px -2px rgba(253, 41, 70, 0.07);
    transition: box-shadow 0.2s ease-out, border-color 0.15s ease-out;
}

.frst .suppblock .suppcard:hover {
    box-shadow: 2px 8px 44px -2px rgba(253, 41, 70, 0.12);
    border-color: #FD2946;
}

.frst .suppblock .suppcard .icobox {
    width: 44px;
    height: 44px;
    border: 2px solid #FD2946;
    border-radius: 8px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
}

.frst .suppblock .suppcard .icobox svg {
    width: 22px;
    height: 22px;
}

.frst .suppblock .suppcard .cardhed {
    font-size: 18px;
    line-height: 1.35;
    font-weight: 700;
    color: #1b1b1b;
    margin: 0;
}

.frst .suppblock .suppcard .carddesc {
    font-size: 16px;
    line-height: 1.6;
    color: #5a5a5a;
    margin: 0;
}

.frst .suppblock .suppimgrow {
    display: flex;
    flex-direction: row;
    gap: 16px;
    width: 100%;
}

.frst .suppblock .suppimgrow .imgwrap {
    flex: 1 1 50%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 2px 4px 20px -2px rgba(253, 41, 70, 0.09);
    position: relative;
}

.frst .suppblock .suppimgrow .imgwrap img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.2s ease-out;
}

.frst .suppblock .suppimgrow .imgwrap:hover img {
    transform: scale(1.04);
}

.frst .suppblock .suppimgrow .imgwrap:hover::before {
    opacity: 1;
}

.frst .suppblock .suppimgrow .imgwrap::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(45deg,
            rgba(253, 41, 70, 0.06) 0px,
            rgba(253, 41, 70, 0.06) 1px,
            transparent 1px,
            transparent 10px);
    opacity: 0;
    transition: opacity 0.18s ease-out;
    z-index: 1;
    pointer-events: none;
}

.frst .currblock {
    background: #0d1a14;
    padding: 64px 16px;
    position: relative;
}

.frst .currblock .pgwrap {
    display: flex;
    flex-direction: row;
    gap: 32px;
    align-items: flex-start;
}

.frst .currblock .curlft {
    flex: 1 1 50%;
    position: relative;
    z-index: 1;
}

.frst .currblock .currgt {
    flex: 1 1 45%;
    position: relative;
    z-index: 1;
}

.frst .currblock .bgabbr {
    position: absolute;
    right: 0;
    bottom: -16px;
    font-size: 200px;
    font-weight: 900;
    line-height: 1.1;
    color: #FD8613;
    opacity: 0.05;
    pointer-events: none;
    user-select: none;
}

.frst .currblock .seclab {
    font-size: 16px;
    line-height: 1.6;
    color: #FD8613;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    margin-bottom: 8px;
}

.frst .currblock .sechead {
    font-size: 24px;
    line-height: 1.35;
    font-weight: 800;
    font-style: italic;
    color: #fff;
    margin: 0 0 16px;
}

.frst .currblock .secdesc {
    font-size: 16px;
    line-height: 1.8;
    color: #c8d4cc;
    margin: 0 0 16px;
}

.frst .currblock .updlist {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.frst .currblock .upditem {
    display: flex;
    flex-direction: row;
    gap: 16px;
    align-items: flex-start;
    padding: 16px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(253, 134, 19, 0.18);
    transition: border-color 0.18s ease-out, background 0.2s ease-out;
}

.frst .currblock .upditem:hover {
    border-color: #FD8613;
    background: rgba(253, 134, 19, 0.07);
}

.frst .currblock .upditem .updnum {
    font-size: 24px;
    line-height: 1.1;
    font-weight: 900;
    color: #FD8613;
    flex-shrink: 0;
    min-width: 32px;
}

.frst .currblock .upditem .updtxt {
    font-size: 16px;
    line-height: 1.6;
    color: #c8d4cc;
}

.frst .currblock .imgfull {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 2px 8px 44px -2px rgba(253, 134, 19, 0.12);
}

.frst .currblock .imgfull img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    object-position: center;
    display: block;
}

.frst .whoblock {
    background: #fff;
    padding: 64px 16px;
    border-top: 3px solid transparent;
    border-image: linear-gradient(90deg, transparent 0%, transparent 40%, #FD2946 50%, transparent 60%, transparent 100%) 1;
}

.frst .whoblock .pgwrap {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.frst .whoblock .whohed {
    text-align: center;
}

.frst .whoblock .seclab {
    font-size: 16px;
    line-height: 1.6;
    color: #FD2946;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    margin-bottom: 8px;
}

.frst .whoblock .sechead {
    font-size: 24px;
    line-height: 1.35;
    font-weight: 800;
    font-style: italic;
    color: #1b1b1b;
    margin: 0 0 16px;
}

.frst .whoblock .secdesc {
    font-size: 16px;
    line-height: 1.8;
    color: #3a3a3a;
    margin: 0;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.frst .whoblock .whocols {
    display: flex;
    flex-direction: row;
    gap: 16px;
    align-items: flex-start;
}

.frst .whoblock .whocol {
    flex: 1 1 45%;
    border-radius: 12px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.frst .whoblock .whocol.fits {
    background: linear-gradient(337deg, #fff5f7 0%, #fff 100%);
    border: 1.5px solid #f0e8e8;
    box-shadow: 2px 4px 20px -2px rgba(253, 41, 70, 0.09);
}

.frst .whoblock .whocol.nofits {
    background: linear-gradient(337deg, #f5f5f5 0%, #fff 100%);
    border: 1.5px solid #e8e8e8;
    box-shadow: 2px 3px 5px -2px rgba(253, 41, 70, 0.07);
}

.frst .whoblock .whocol .colhed {
    font-size: 18px;
    line-height: 1.35;
    font-weight: 800;
    margin: 0;
}

.frst .whoblock .whocol.fits .colhed {
    color: #FD2946;
}

.frst .whoblock .whocol.nofits .colhed {
    color: #888;
}

.frst .whoblock .whoitems {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.frst .whoblock .whoitem {
    font-size: 16px;
    line-height: 1.6;
    color: #3a3a3a;
    padding: 8px 16px;
    border-radius: 8px;
    border-left: 3px solid #FD2946;
    border-top: 1px solid #f0e8e8;
    border-right: 1px solid #f0e8e8;
    border-bottom: 1px solid #f0e8e8;
    background: #fff;
    transition: border-left-color 0.15s ease-out, box-shadow 0.18s ease-out;
}

.frst .whoblock .whocol.nofits .whoitem {
    border-left-color: #ccc;
    border-top-color: #eee;
    border-right-color: #eee;
    border-bottom-color: #eee;
    color: #888;
}

.frst .whoblock .whoitem:hover {
    box-shadow: 2px 3px 5px -2px rgba(253, 41, 70, 0.07);
}

.frst .whoblock .ratingrow {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    justify-content: center;
    padding: 24px;
    border-radius: 12px;
    background: linear-gradient(337deg, #fff5f7 0%, #fff 100%);
    border: 1.5px solid #f0e8e8;
    box-shadow: 2px 4px 20px -2px rgba(253, 41, 70, 0.09);
}

.frst .whoblock .ratingval {
    font-size: 62px;
    line-height: 1.1;
    font-weight: 900;
    color: #FD2946;
}

.frst .whoblock .ratinginfo {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.frst .whoblock .ratinglbl {
    font-size: 16px;
    line-height: 1.6;
    color: #5a5a5a;
}

.frst .whoblock .ratingcount {
    font-size: 16px;
    line-height: 1.6;
    color: #FD2946;
    font-weight: 700;
}

.frst .whoblock .starsrow {
    display: flex;
    flex-direction: row;
    gap: 4px;
}

.frst .whoblock .starsrow .star {
    width: 18px;
    height: 18px;
}

.frst .divline {
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, transparent 40%, #FD2946 50%, transparent 60%, transparent 100%);
    margin: 0;
}

@keyframes cascadeIn {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

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

.frst .titblock .tagline {
    animation: cascadeIn 0.18s ease-out both;
    animation-delay: 0.05s;
}

.frst .titblock .mainhed {
    animation: cascadeIn 0.2s ease-out both;
    animation-delay: 0.12s;
}

.frst .titblock .subdesc {
    animation: cascadeIn 0.18s ease-out both;
    animation-delay: 0.18s;
}

.frst .titblock .titbtns {
    animation: cascadeIn 0.16s ease-out both;
    animation-delay: 0.24s;
}

.frst .titblock .titrgt {
    animation: cascadeIn 0.2s ease-out both;
    animation-delay: 0.3s;
}

@media (max-width: 768px) {
    .frst .titblock .pgwrap {
        flex-direction: column;
    }

    .frst .titblock .mainhed {
        font-size: 36px;
    }

    .frst .titblock .titrgt {
        align-items: flex-start;
    }

    .frst .titblock .bgnum {
        font-size: 120px;
        right: 0;
        top: 0;
    }

    .frst .invblock .pgwrap {
        flex-direction: column;
    }

    .frst .peoplblock .pgwrap {
        flex-direction: column;
    }

    .frst .peoplblock .ppllft {
        flex: 0 0 auto;
        width: 100%;
        max-width: 280px;
    }

    .frst .suppblock .suppimgrow {
        flex-direction: column;
    }

    .frst .currblock .pgwrap {
        flex-direction: column;
    }

    .frst .whoblock .whocols {
        flex-direction: column;
    }

    .frst .whoblock .ratingrow {
        flex-direction: column;
        text-align: center;
    }
}

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

.ctus .grid-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    background-image:
        linear-gradient(rgba(253, 41, 70, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(253, 41, 70, 0.04) 1px, transparent 1px);
    background-size: 48px 48px;
    animation: gridpulse 4s ease-in-out infinite;
}

@keyframes gridpulse {

    0%,
    100% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }
}

.ctus .pg-wrap {
    max-width: 1024px;
    margin: 0 auto;
    padding: 0 32px;
    position: relative;
    z-index: 1;
}

.ctus .spot-a {
    position: absolute;
    width: 320px;
    height: 320px;
    background: linear-gradient(337deg, rgba(253, 41, 70, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 48px;
    top: -80px;
    right: -60px;
    filter: blur(48px);
    pointer-events: none;
}

.ctus .spot-b {
    position: absolute;
    width: 240px;
    height: 240px;
    background: linear-gradient(337deg, rgba(4, 228, 131, 0.07) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 48px;
    bottom: 40px;
    left: -40px;
    filter: blur(40px);
    pointer-events: none;
}

.ctus .opener {
    padding: 80px 0 64px;
    position: relative;
    overflow: hidden;
    background: #fff;
}

.ctus .opener-inner {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 32px;
}

.ctus .opener-text {
    flex: 0 0 60%;
}

.ctus .opener-aside {
    flex: 0 0 calc(40% - 32px);
    padding-top: 16px;
}

.ctus .tag-line {
    display: inline-block;
    font-size: 16px;
    line-height: 1.35;
    color: #FD2946;
    border: 1.5px solid rgba(253, 41, 70, 0.25);
    border-radius: 8px;
    padding: 4px 16px;
    margin-bottom: 16px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.ctus .opener-h {
    font-size: 62px;
    line-height: 1.1;
    color: #111;
    margin: 0 0 16px;
    font-style: italic;
    font-weight: 800;
}

.ctus .opener-h span {
    background: linear-gradient(337deg, #FD2946 0%, #FD8613 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ctus .opener-desc {
    font-size: 18px;
    line-height: 1.6;
    color: #333;
    margin: 0 0 32px;
    max-width: 480px;
}

.ctus .opener-img-wrap {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    box-shadow: 2px 8px 44px -2px rgba(253, 41, 70, 0.12);
}

.ctus .opener-img-wrap img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
}

.ctus .opener-img-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(337deg, rgba(253, 41, 70, 0.18) 0%, transparent 60%);
    border-radius: 12px;
    pointer-events: none;
}

.ctus .contact-strip {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 32px;
}

.ctus .cstrip-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
}

.ctus .cstrip-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: linear-gradient(337deg, rgba(253, 41, 70, 0.1) 0%, rgba(253, 134, 19, 0.06) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ctus .cstrip-icon svg {
    width: 18px;
    height: 18px;
}

.ctus .cstrip-label {
    font-size: 16px;
    line-height: 1.35;
    color: #555;
    margin: 0;
}

.ctus .cstrip-val {
    font-size: 16px;
    line-height: 1.35;
    color: #111;
    font-weight: 600;
    margin: 0;
    text-decoration: none;
    transition: color 0.15s ease-out;
}

.ctus .cstrip-val:hover {
    color: #FD2946;
}

.ctus .form-block {
    padding: 64px 0;
    background: linear-gradient(337deg, rgba(4, 228, 131, 0.05) 0%, rgba(253, 41, 70, 0.03) 60%, #fff 100%);
    position: relative;
}

.ctus .form-block::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 280px;
    height: 280px;
    background:
        repeating-conic-gradient(from 0deg at 100% 0%, rgba(253, 41, 70, 0.04) 0deg, transparent 6deg, transparent 30deg);
    pointer-events: none;
}

.ctus .form-layout {
    display: flex;
    flex-direction: row;
    gap: 32px;
    align-items: flex-start;
}

.ctus .form-meta {
    flex: 0 0 38%;
}

.ctus .form-meta-h {
    font-size: 24px;
    line-height: 1.35;
    color: #111;
    font-style: italic;
    font-weight: 700;
    margin: 0 0 16px;
}

.ctus .form-meta-p {
    font-size: 16px;
    line-height: 1.6;
    color: #444;
    margin: 0 0 32px;
}

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

.ctus .interest-list li {
    font-size: 16px;
    line-height: 1.35;
    color: #333;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
}

.ctus .interest-dot {
    width: 8px;
    height: 8px;
    border-radius: 48px;
    background: #FD2946;
    flex-shrink: 0;
}

.ctus .form-area {
    flex: 1;
    background: #fff;
    border-radius: 12px;
    padding: 32px;
    box-shadow: 2px 4px 20px -2px rgba(253, 41, 70, 0.09);
}

.ctus .form-row {
    display: flex;
    flex-direction: row;
    gap: 16px;
    margin-bottom: 16px;
}

.ctus .form-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.ctus .form-field.full {
    flex: 0 0 100%;
}

.ctus .field-label {
    font-size: 16px;
    line-height: 1.35;
    color: #222;
    font-weight: 600;
}

.ctus .field-label span {
    color: #FD2946;
}

.ctus .field-input {
    border: 1.5px solid rgba(17, 17, 17, 0.15);
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 16px;
    line-height: 1.35;
    color: #111;
    background: #fff;
    outline: none;
    transition: border-color 0.15s ease-out, box-shadow 0.2s ease;
    width: 100%;
    box-sizing: border-box;
}

.ctus .field-input::placeholder {
    color: rgba(17, 17, 17, 0.4);
}

.ctus .field-input:focus {
    border-color: #FD2946;
    box-shadow: 2px 3px 5px -2px rgba(253, 41, 70, 0.07);
}

.ctus .check-group {
    margin-bottom: 16px;
}

.ctus .check-group-label {
    font-size: 16px;
    line-height: 1.35;
    color: #222;
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
}

.ctus .check-items {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ctus .check-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
}

.ctus .check-row input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #FD2946;
    cursor: pointer;
    flex-shrink: 0;
}

.ctus .check-row label {
    font-size: 16px;
    line-height: 1.35;
    color: #333;
    cursor: pointer;
}

.ctus .privacy-row {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 16px;
    padding: 16px;
    background: rgba(253, 41, 70, 0.03);
    border-radius: 8px;
    border: 1px solid rgba(253, 41, 70, 0.1);
}

.ctus .privacy-row input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #FD2946;
    cursor: pointer;
    flex-shrink: 0;
    margin-top: 2px;
}

.ctus .privacy-text {
    font-size: 16px;
    line-height: 1.6;
    color: #444;
    margin: 0;
}

.ctus .privacy-text a {
    color: #FD2946;
    text-decoration: underline;
    transition: color 0.15s ease-out;
}

.ctus .privacy-text a:visited {
    text-decoration: line-through;
    color: #FD8613;
}

.ctus .privacy-text a:hover {
    color: #FD8613;
}

.ctus .btn-submit {
    display: inline-block;
    background: linear-gradient(337deg, #FD2946 0%, #FD8613 100%);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 14px 32px;
    font-size: 18px;
    line-height: 1.35;
    font-weight: 700;
    cursor: pointer;
    transition: padding 0.15s ease-out, box-shadow 0.2s ease;
    box-shadow: 2px 4px 20px -2px rgba(253, 41, 70, 0.09);
    text-transform: lowercase;
    letter-spacing: 0.01em;
}

.ctus .btn-submit:hover {
    padding: 14px 48px;
    box-shadow: 2px 8px 44px -2px rgba(253, 41, 70, 0.12);
}

.ctus .btn-submit:focus {
    outline: 3px solid rgba(253, 41, 70, 0.4);
    outline-offset: 2px;
}

.ctus .btn-submit:active {
    opacity: 0.9;
}

.ctus .addr-block {
    padding: 64px 0 80px;
    background: #fff;
    position: relative;
}

.ctus .addr-inner {
    display: flex;
    flex-direction: row;
    gap: 32px;
    align-items: stretch;
}

.ctus .addr-card {
    flex: 0 0 calc(60% - 16px);
    background: linear-gradient(337deg, rgba(253, 41, 70, 0.06) 0%, rgba(253, 134, 19, 0.04) 50%, rgba(4, 228, 131, 0.03) 100%);
    border-radius: 12px;
    padding: 32px;
    border: 1px solid rgba(253, 41, 70, 0.1);
    box-shadow: 2px 3px 5px -2px rgba(253, 41, 70, 0.07);
}

.ctus .addr-h {
    font-size: 24px;
    line-height: 1.35;
    color: #111;
    font-style: italic;
    font-weight: 700;
    margin: 0 0 16px;
}

.ctus .addr-table {
    width: 100%;
    border-collapse: collapse;
}

.ctus .addr-table tr td {
    padding: 8px 0;
    font-size: 16px;
    line-height: 1.6;
    vertical-align: top;
    border-bottom: 1px solid rgba(17, 17, 17, 0.06);
}

.ctus .addr-table tr:last-child td {
    border-bottom: none;
}

.ctus .addr-table .td-key {
    color: #888;
    font-weight: 600;
    width: 120px;
    padding-right: 16px;
}

.ctus .addr-table .td-val {
    color: #111;
}

.ctus .addr-table .td-val a {
    color: #111;
    text-decoration: none;
    transition: color 0.15s ease-out;
}

.ctus .addr-table .td-val a:visited {
    text-decoration: line-through;
    color: #555;
}

.ctus .addr-table .td-val a:hover {
    color: #FD2946;
}

.ctus .hours-card {
    flex: 1;
    border-radius: 12px;
    padding: 32px;
    background: #111;
    box-shadow: 2px 8px 44px -2px rgba(253, 41, 70, 0.12);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ctus .hours-h {
    font-size: 24px;
    line-height: 1.35;
    color: #fff;
    font-style: italic;
    font-weight: 700;
    margin: 0;
}

.ctus .hours-row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.ctus .hours-row:last-child {
    border-bottom: none;
}

.ctus .hours-day {
    font-size: 16px;
    line-height: 1.35;
    color: rgba(255, 255, 255, 0.6);
}

.ctus .hours-time {
    font-size: 16px;
    line-height: 1.35;
    color: #04E483;
    font-weight: 600;
}

.ctus .hours-time.closed {
    color: rgba(255, 255, 255, 0.3);
}

@media (max-width: 768px) {
    .ctus .opener-inner {
        flex-direction: column;
    }

    .ctus .opener-text {
        flex: 0 0 100%;
    }

    .ctus .opener-aside {
        flex: 0 0 100%;
        padding-top: 0;
    }

    .ctus .opener-h {
        font-size: 24px;
    }

    .ctus .form-layout {
        flex-direction: column;
    }

    .ctus .form-meta {
        flex: 0 0 100%;
    }

    .ctus .form-row {
        flex-direction: column;
    }

    .ctus .addr-inner {
        flex-direction: column;
    }

    .ctus .addr-card {
        flex: 0 0 100%;
    }

    .ctus .pg-wrap {
        padding: 0 16px;
    }
}

.aboutus {
    max-width: 100%;
    overflow-x: hidden;
}

.aboutus .au-inner {
    max-width: 1024px;
    margin: 0 auto;
    padding: 0 32px;
}

@keyframes maskReveal {
    from {
        clip-path: inset(0 50% 0 50%);
        opacity: 0;
    }

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

.aboutus .au-reveal {
    animation: maskReveal 0.6s ease-out both;
}

.aboutus .au-reveal-delay {
    animation: maskReveal 0.7s 0.15s ease-out both;
}

.aboutus .au-accent {
    color: #FD2946;
}

.aboutus .au-curved-line {
    position: relative;
    display: inline-block;
}

.aboutus .au-curved-line::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(337deg, #FD2946 30%, #FD8613 100%);
    border-radius: 48px;
    clip-path: ellipse(50% 100% at 50% 0%);
}

.aboutus .au-divider {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    margin: 32px 0;
}

.aboutus .au-divider-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(337deg, rgba(253, 41, 70, 0.18) 0%, rgba(253, 134, 19, 0.08) 100%);
}

.aboutus .au-divider-shape {
    width: 10px;
    height: 10px;
    background: #FD2946;
    border-radius: 8px;
    transform: rotate(45deg);
    flex-shrink: 0;
}

.aboutus .au-divider-dot {
    width: 5px;
    height: 5px;
    background: #FD8613;
    border-radius: 8px;
    flex-shrink: 0;
}

.aboutus .au-dots-path {
    display: flex;
    flex-direction: row;
    gap: 8px;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.aboutus .au-dot {
    width: 6px;
    height: 6px;
    border-radius: 48px;
    background: rgba(253, 41, 70, 0.22);
}

.aboutus .au-dot.active {
    background: #FD2946;
    width: 18px;
}

.aboutus .au-dot.med {
    background: rgba(253, 41, 70, 0.45);
    width: 10px;
}

.aboutus .au-titleblock {
    background: #fff;
    padding: 64px 32px 48px;
    text-align: center;
    position: relative;
}

.aboutus .au-titleblock .au-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.aboutus .au-titlegrid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 32px;
    align-items: center;
    width: 100%;
}

.aboutus .au-titleleft {
    text-align: right;
}

.aboutus .au-titleright {
    text-align: left;
}

.aboutus .au-titlecenter {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.aboutus .au-imgwrap {
    width: 220px;
    height: 220px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 2px 8px 44px -2px rgba(253, 41, 70, 0.12);
    position: relative;
}

.aboutus .au-imgwrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: blur(0px) saturate(1.1);
    display: block;
}

.aboutus .au-imgwrap .au-imgblur {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(180deg, transparent 0%, rgba(253, 41, 70, 0.08) 100%);
    pointer-events: none;
}

.aboutus .au-h1 {
    font-size: 62px;
    line-height: 1.1;
    font-style: italic;
    letter-spacing: -1px;
    margin: 0;
    color: #1a1200;
    color: #111;
}

.aboutus .au-tagline {
    font-size: 18px;
    line-height: 1.6;
    color: #3a3a3a;
    max-width: 380px;
}

.aboutus .au-badge {
    display: inline-block;
    padding: 4px 16px;
    border-radius: 48px;
    background: linear-gradient(337deg, rgba(253, 41, 70, 0.09) 0%, rgba(253, 134, 19, 0.07) 100%);
    border: 1px solid rgba(253, 41, 70, 0.18);
    font-size: 16px;
    color: #FD2946;
    letter-spacing: 0.04em;
}

.aboutus .au-titleleft .au-kpi {
    font-size: 62px;
    line-height: 1.1;
    font-weight: 700;
    color: #FD8613;
    font-style: italic;
}

.aboutus .au-titleleft .au-kpilabel {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

.aboutus .au-titleright .au-kpi {
    font-size: 62px;
    line-height: 1.1;
    font-weight: 700;
    color: #04E483;
    font-style: italic;
}

.aboutus .au-titleright .au-kpilabel {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

.aboutus .au-storyblock {
    background: linear-gradient(337deg, rgba(253, 41, 70, 0.04) 0%, rgba(255, 255, 255, 0.98) 60%);
    padding: 64px 32px;
}

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

.aboutus .au-storyimg {
    width: 100%;
    aspect-ratio: 3/4;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 2px 4px 20px -2px rgba(253, 41, 70, 0.09);
}

.aboutus .au-storyimg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.aboutus .au-storyimg2 {
    width: 100%;
    aspect-ratio: 3/4;
    border-radius: 48px 12px 12px 48px;
    overflow: hidden;
    box-shadow: 2px 3px 5px -2px rgba(253, 41, 70, 0.07);
    margin-top: 32px;
}

.aboutus .au-storyimg2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.aboutus .au-storytext {
    padding: 8px 0;
}

.aboutus .au-h2 {
    font-size: 24px;
    line-height: 1.35;
    font-style: italic;
    margin: 0 0 16px;
    color: #111;
}

.aboutus .au-body {
    font-size: 18px;
    line-height: 1.8;
    color: #2e2e2e;
    margin: 0 0 16px;
}

.aboutus .au-ranklist {
    margin: 32px 0 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.aboutus .au-rankitem {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
}

.aboutus .au-ranknum {
    font-size: 24px;
    line-height: 1.1;
    font-weight: 700;
    color: #FD2946;
    font-style: italic;
    min-width: 32px;
}

.aboutus .au-rankbar-wrap {
    flex: 1;
    height: 8px;
    background: rgba(253, 41, 70, 0.09);
    border-radius: 8px;
    overflow: hidden;
}

.aboutus .au-rankbar {
    height: 100%;
    border-radius: 8px;
    background: linear-gradient(337deg, #FD2946 0%, #FD8613 100%);
    transition: width 0.5s ease-out;
}

.aboutus .au-ranklabel {
    font-size: 16px;
    line-height: 1.35;
    color: #333;
    min-width: 140px;
}

.aboutus .au-teamblock {
    padding: 64px 32px;
    background: #fff;
    position: relative;
}

.aboutus .au-teamblock::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(337deg, rgba(4, 228, 131, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

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

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

.aboutus .au-personcard {
    display: flex;
    flex-direction: row;
    gap: 16px;
    align-items: flex-start;
    padding: 16px;
    border-radius: 12px;
    border: 1px solid rgba(253, 41, 70, 0.1);
    box-shadow: 2px 3px 5px -2px rgba(253, 41, 70, 0.07);
    transition: box-shadow 0.15s ease-out, border-color 0.15s ease-out;
}

.aboutus .au-personcard:hover {
    box-shadow: 2px 8px 44px -2px rgba(253, 41, 70, 0.12);
    border-color: rgba(253, 41, 70, 0.28);
}

.aboutus .au-portrait {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

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

.aboutus .au-personinfo {
    flex: 1;
}

.aboutus .au-personname {
    font-size: 18px;
    line-height: 1.35;
    font-weight: 700;
    color: #111;
    margin: 0 0 4px;
}

.aboutus .au-personrole {
    font-size: 16px;
    line-height: 1.35;
    color: #FD2946;
    margin: 0 0 8px;
}

.aboutus .au-persondesc {
    font-size: 16px;
    line-height: 1.6;
    color: #444;
    margin: 0;
}

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

.aboutus .au-teamimg {
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 2px 4px 20px -2px rgba(253, 41, 70, 0.09);
}

.aboutus .au-teamimg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.aboutus .au-ratingbox {
    padding: 16px;
    border-radius: 12px;
    background: linear-gradient(337deg, rgba(253, 41, 70, 0.06) 0%, rgba(253, 134, 19, 0.04) 100%);
    border: 1px solid rgba(253, 41, 70, 0.12);
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
}

.aboutus .au-ratingnum {
    font-size: 62px;
    line-height: 1.1;
    font-weight: 700;
    color: #FD2946;
    font-style: italic;
}

.aboutus .au-ratingdetail {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.aboutus .au-stars {
    display: flex;
    flex-direction: row;
    gap: 4px;
}

.aboutus .au-star {
    width: 16px;
    height: 16px;
    background: #FD8613;
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.aboutus .au-star-half {
    width: 16px;
    height: 16px;
    background: linear-gradient(90deg, #FD8613 55%, rgba(253, 134, 19, 0.25) 55%);
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.aboutus .au-ratinglabel {
    font-size: 16px;
    line-height: 1.35;
    color: #555;
}

.aboutus .au-diagonalblock {
    position: relative;
    padding: 64px 32px;
    overflow: hidden;
}

.aboutus .au-diagbg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(337deg, rgba(4, 228, 131, 0.08) 0%, rgba(253, 134, 19, 0.06) 100%);
    clip-path: polygon(0 0, 58% 0, 42% 100%, 0 100%);
    pointer-events: none;
}

.aboutus .au-diagbg2 {
    position: absolute;
    top: 0;
    right: 0;
    width: 55%;
    height: 100%;
    background: linear-gradient(337deg, rgba(253, 41, 70, 0.04) 0%, rgba(253, 134, 19, 0.03) 100%);
    pointer-events: none;
}

.aboutus .au-diaginner {
    position: relative;
    z-index: 1;
}

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

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

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

.aboutus .au-chartlabel {
    font-size: 16px;
    line-height: 1.35;
    color: #333;
    margin: 0 0 8px;
}

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

.aboutus .au-chartrow {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
}

.aboutus .au-chartrowlabel {
    font-size: 16px;
    line-height: 1.35;
    color: #333;
    min-width: 120px;
}

.aboutus .au-chartrowbar {
    flex: 1;
    height: 10px;
    background: rgba(4, 228, 131, 0.12);
    border-radius: 8px;
    overflow: hidden;
}

.aboutus .au-chartrowfill {
    height: 100%;
    border-radius: 8px;
    background: linear-gradient(337deg, #04E483 0%, #FD8613 100%);
    transition: width 0.5s ease-out;
}

.aboutus .au-chartrowval {
    font-size: 16px;
    line-height: 1.35;
    color: #FD8613;
    min-width: 36px;
    text-align: right;
    font-weight: 700;
}

.aboutus .au-factcard {
    padding: 16px;
    border-radius: 12px;
    background: #fff;
    box-shadow: 2px 4px 20px -2px rgba(253, 41, 70, 0.09);
    border-top: 3px solid #FD2946;
    transition: transform 0.12s ease-out, box-shadow 0.18s ease-out;
}

.aboutus .au-factcard:hover {
    transform: translateY(-4px);
    box-shadow: 2px 8px 44px -2px rgba(253, 41, 70, 0.12);
}

.aboutus .au-factnum {
    font-size: 62px;
    line-height: 1.1;
    font-weight: 700;
    font-style: italic;
    background: linear-gradient(337deg, #FD2946 0%, #FD8613 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.aboutus .au-factdesc {
    font-size: 16px;
    line-height: 1.6;
    color: #444;
    margin: 4px 0 0;
}

.aboutus .au-btn {
    display: inline-block;
    padding: 16px 32px;
    border-radius: 8px;
    background: linear-gradient(337deg, #FD2946 0%, #FD8613 100%);
    color: #fff !important;
    font-size: 18px;
    line-height: 1.35;
    text-decoration: none !important;
    border: none;
    cursor: pointer;
    transition: padding 0.15s ease-out, box-shadow 0.18s ease-out;
    box-shadow: 2px 4px 20px -2px rgba(253, 41, 70, 0.09);
}

.aboutus .au-btn:hover {
    padding: 16px 48px;
    box-shadow: 2px 8px 44px -2px rgba(253, 41, 70, 0.12);
}

.aboutus .au-btn:focus {
    outline: 2px solid #FD2946;
    outline-offset: 3px;
}

.aboutus .au-btn:visited {
    text-decoration: line-through !important;
}

@media (max-width: 768px) {
    .aboutus .au-titlegrid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .aboutus .au-titleleft,
    .aboutus .au-titleright {
        text-align: center;
    }

    .aboutus .au-h1 {
        font-size: 24px;
    }

    .aboutus .au-titleleft .au-kpi,
    .aboutus .au-titleright .au-kpi {
        font-size: 24px;
    }

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

    .aboutus .au-storyimg,
    .aboutus .au-storyimg2 {
        aspect-ratio: 16/9;
        margin-top: 0;
    }

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

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

    .aboutus .au-imgwrap {
        width: 140px;
        height: 140px;
    }

    .aboutus .au-ratingnum,
    .aboutus .au-factnum {
        font-size: 24px;
    }
}

.successPage {
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 32px 16px;
    background: linear-gradient(337deg, #fff8f0 0%, #fff 60%, #f0fff8 100%);
}

.successPage .confirmBox {
    max-width: 1024px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.successPage .iconRing {
    width: 88px;
    height: 88px;
    border-radius: 48px;
    background: #fff;
    box-shadow: 2px 4px 20px -2px rgba(4, 228, 131, 0.09);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.successPage .iconRing svg {
    display: block;
}

.successPage .msgBlock {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
}

.successPage .msgBlock .headline {
    font-size: 62px;
    line-height: 1.1;
    font-style: italic;
    color: #111;
    margin: 0;
    letter-spacing: -1px;
}

.successPage .msgBlock .headline span {
    background: linear-gradient(337deg, #FD2946 0%, #FD8613 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.successPage .msgBlock .subtext {
    font-size: 18px;
    line-height: 1.6;
    color: #333;
    max-width: 480px;
    margin: 0;
}

.successPage .dividerLine {
    width: 64px;
    height: 3px;
    border-radius: 8px;
    background: linear-gradient(337deg, #FD2946 0%, #FD8613 100%);
}

.successPage .detailCard {
    background: #fff;
    border-radius: 12px;
    box-shadow: 2px 3px 5px -2px rgba(253, 41, 70, 0.07);
    padding: 32px;
    max-width: 480px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.successPage .detailCard .cardLabel {
    font-size: 16px;
    line-height: 1.35;
    color: #555;
    margin: 0;
}

.successPage .detailCard .cardLabel strong {
    color: #111;
}

.successPage .detailCard .contactRef {
    font-size: 16px;
    line-height: 1.35;
    color: #555;
    margin: 0;
}

.successPage .detailCard .contactRef a {
    color: #FD2946;
    text-decoration: none;
    transition: color 0.15s ease-out;
}

.successPage .detailCard .contactRef a:visited {
    text-decoration: line-through;
}

.successPage .detailCard .contactRef a:hover {
    color: #FD8613;
}

.successPage .backBtn {
    display: inline-block;
    padding: 16px 32px;
    background: #FD2946;
    color: #fff;
    font-size: 16px;
    line-height: 1.35;
    border-radius: 8px;
    text-decoration: none;
    box-shadow: 2px 4px 20px -2px rgba(253, 41, 70, 0.09);
    transition: padding 0.15s ease-out, background 0.12s ease;
}

.successPage .backBtn:hover {
    padding: 16px 48px;
    background: #e01e38;
}

.successPage .backBtn:focus {
    outline: 2px solid #FD2946;
    outline-offset: 4px;
}

@media (max-width: 600px) {
    .successPage .msgBlock .headline {
        font-size: 24px;
        letter-spacing: 0;
    }

    .successPage .detailCard {
        padding: 16px;
    }
}