.person {
    background: #fcfeff;
    border: 1px solid #eef2f7;
    border-radius: 24px;
    padding: 24px;
    box-shadow: 0 10px 24px rgba(15, 23, 42, .05);
}

.person h3 {
    font-size: 28px;
    font-weight: 800;
    margin: 0 0 18px;
    color: #0f172a;
}

.verify-btn {
    width: 100%;
    height: 54px;
    border-radius: 16px;
    background: #0f172a;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 800;
    text-decoration: none;
    transition: .25s ease;
    box-shadow: 0 10px 20px rgba(15, 23, 42, .12);
}

.verify-btn:hover {
    transform: translateY(-2px);
    background: #14b88f;
}

.trust-panel {
    background: #edf9f5;
    border: 1px solid #d3f0e7;
    border-radius: 20px;
    padding: 16px 18px;
    margin-bottom: 14px;
}

.trust-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    padding-bottom: 8px;
    margin-bottom: 8px;
    border-bottom: 1px solid #e2e8f0;
}

.trust-top span {
    font-size: 17px;
    font-weight: 800;
    color: #14b88f;
}

.trust-line {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 13px;
    font-weight: 700;
    color: #14b88f;
    margin-top: 6px;
    line-height: 1.5;
}

.label {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .5px;
    color: #14b88f;
    text-transform: uppercase;
}

.value {
    font-size: 18px;
    font-weight: 800;
    color: #0f172a;
}

.trust-badge {
    display: inline-block;
    padding: 10px 16px;
    border-radius: 999px;
    background: #edf9f5;
    color: #14b88f;
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 14px;
}

.verify-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 18px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
    background: #0f172a;
    color: #fff;
    transition: .25s ease;
    box-shadow: 0 8px 18px rgba(15, 23, 42, .12);
}

.verify-btn:hover {
    transform: translateY(-2px);
    background: #14b88f;
    box-shadow: 0 12px 24px rgba(16, 198, 154, .20);
}

.verify-wrap {
    margin-top: 12px;
}

.verify-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
    background: #edf9f5;
    color: #14b88f;
    border: 1px solid #ccefe3;
    transition: .25s ease;
    box-shadow: 0 4px 10px rgba(16, 198, 154, .08);
}

.verify-link:hover {
    transform: translateY(-2px);
    background: #14b88f;
    color: #fff;
    box-shadow: 0 8px 18px rgba(16, 198, 154, .18);
}

/* CTA FIX */
.cta-box {
    background: #071634;
    color: #fff;
    padding: 58px 30px;
    border-radius: 28px;
    text-align: center;
    margin-bottom: 40px;
}

.cta-box h2 {
    font-size: 54px;
    line-height: 1.15;
    margin: 0 0 18px;
    font-weight: 800;
    color: #ffffff;
}

.cta-box p {
    max-width: 900px;
    margin: 0 auto 26px;
    font-size: 22px;
    line-height: 1.9;
    color: #dbe7f7;
}

.cta-box .btn-primary {
    display: inline-block;
    margin-top: 4px;
}

/* MOBILE */
@media(max-width:768px) {

    .cta-box {
    padding: 38px 22px;
    }

    .cta-box h2 {
    font-size: 32px;
    }

    .cta-box p {
    font-size: 17px;
    line-height: 1.8;
    }

}

/* ==================================================
DISCLOSURE PRODUCTION FINAL
- spacing fixed
- top menu restored
- multilingual buttons
- premium readable layout
================================================== */

body.disclosure-page {
    margin: 0;
    padding: 0;
    background: #f3f7fb;
    color: #0f172a;
    overflow-x: hidden;
}

body.disclosure-page * {
    box-sizing: border-box;
}

.wrap {
    max-width: 1240px;
    margin: auto;
    padding: 0 18px;
}

/* HERO */
.hero {
    margin-top: 10px !important;
    padding: 12px 0 0 !important;
    background: linear-gradient(180deg, #f8fbff 0%, #edf4fb 100%);
    border-bottom: 1px solid #eef2f7;
    min-height: auto !important;
}

.hero-flex {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
}

.left {
    flex: 1 1 56%;
    min-width: 320px;
}

.right {
    flex: 1 1 40%;
    min-width: 320px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* LANG */
.lang {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.lang a {
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
    border: 1px solid #dbe4ef;
    background: #fff;
    color: #0f172a;
    transition: .25s ease;
}

.lang a:hover,
.lang a.active {
    background: #14b88f;
    border-color: #14b88f;
    color: #fff;
}

/* TEXT */
.hero h1 {
    font-size: 48px;
    line-height: 1.04;
    margin: 0 0 10px;
    font-weight: 800;
}

.lead {
    font-size: 19px;
    line-height: 1.9;
    margin: 0 0 12px;
    color: #475569;
}

.pills {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    /*margin-top: 10px;*/
}

.pill {
    padding: 9px 14px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
    background: #edf9f5;
    border: 1px solid #d3f0e7;
}

/* PERSON CARD */
.person {
    background: #fff;
    border: 1px solid #eef2f7;
    border-radius: 20px;
    padding: 18px;
    box-shadow: 0 8px 20px rgba(15, 23, 42, .04);
}

.person h3 {
    font-size: 26px;
    margin: 0 0 10px;
}

.meta {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.meta span {
    padding: 8px 12px;
    border-radius: 999px;
    background: #f2f7fc;
    border: 1px solid #e2e8f0;
    font-size: 14px;
    font-weight: 800;
}

.tag {
    display: inline-block;
    padding: 8px 12px;
    border-radius: 999px;
    background: #edf9f5;
    color: #14b88f;
    font-size: 14px;
    font-weight: 800;
}

/* MAIN */
.main-sec {
    padding: 15px 0 54px !important;
    margin-top: -50px;
}

.grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 22px;
}

.card,
.panel {
    border-radius: 22px;
    padding: 24px;
}

.card {
    background: #fdfefe;
    border: 1px solid #dfe8f2;
    box-shadow: 0 10px 30px rgba(15, 23, 42, .04);
}

.card h2 {
    font-size: 32px;
    margin: 0 0 12px;
}

.card p {
    font-size: 19px;
    line-height: 1.9;
    margin: 0 0 10px;
    color: #475569;
}

.panel {
    background: linear-gradient(180deg, #0b1f44 0%, #102852 100%);
    color: #fff;
    box-shadow: 0 14px 34px rgba(15, 23, 42, .14);
}

.metric {
    padding: 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .06);
    margin-bottom: 12px;
}

.metric:last-child {
    margin-bottom: 0;
}

.metric h4 {
    font-weight: bold;
    font-size: 20px;
    margin: 0 0 8px;
    color: #dbe7f7;
}

.metric p {
    font-size: 18px;
    line-height: 1.85;
    margin: 0;
    color: #dbe7f7;
}

/* DISCLAIMER */
.title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    font-size: 40px;
    font-weight: 800;
    margin: 0 0 18px;
    text-align: center;
    margin-top: 80px;
}

.warnsvg {
    width: 40px;
    height: 40px;
}

.rows {
    display: grid;
    gap: 16px;
}

.row {
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 16px;
    padding: 20px;
    border: 1px solid #eef2f7;
    border-radius: 22px;
    background: #fcfeff;
    transition: .25s ease;
}

.row:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 34px rgba(15, 23, 42, .08);
    border-color: #14b88f;
}

.ic {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 24px;
}

.yellow {
    background: #fff7d6;
    color: #d4a017;
    font-size: 28px;
}

.green {
    background: #edf9f5;
    color: #14b88f;
}

.row h4 {
    font-size: 24px;
    margin: 0 0 6px;
}

.row p {
    font-size: 19px;
    line-height: 1.9;
    margin: 0;
    color: #334155;
}

/* MOBILE */
@media(max-width:1100px) {

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

    .hero-flex {
    flex-direction: column;
    }

    .left,
    .right {
    width: 100%;
    }

}

@media(max-width:768px) {

    .hero {
    margin-top: 82px !important;
    }

    .hero h1 {
    font-size: 34px;
    }

    .lead {
    font-size: 16px;
    }

    .card h2 {
    font-size: 26px;
    }

    .card p,
    .metric p,
    .row p,
    .lead {
    font-size: 20px;
    line-height: 1.95;
    }

    .row h4 {
    font-size: 25px;
    }

    .title {
    font-size: 28px;
    }

    .warnsvg {
    width: 30px;
    height: 30px;
    }
}

.cta-box {
    margin-top: 40px;
    margin-bottom: -120px;
}

.menu a.active {
    color: #14b88f;
    font-weight: 600;
    position: relative;
}

.menu a.active::after {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #14b88f;
    border-radius: 2px;
}

.trust-name {
    font-size: 18px;
    font-weight: 800;
    color: #0f172a;
    text-align: center;
    margin-bottom: 6px;
}

.trust-validity {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #64748b;
    margin: 6px 0 4px;
    flex-wrap: wrap;
}

.person:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 34px rgba(15, 23, 42, .08);
}

.resource-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 18px;
    margin-top: 24px;
}

.resource-card {
    display: block;
    padding: 24px;
    border-radius: 22px;
    border: 1px solid #eef2f7;
    background: #fff;
    text-decoration: none;
    transition: .25s ease;
    box-shadow: 0 8px 20px rgba(15, 23, 42, .04);
}

.resource-card:hover {
    transform: translateY(-4px);
    border-color: #14b88f;
    box-shadow: 0 18px 34px rgba(15, 23, 42, .08);
}

.resource-card h4 {
    margin: 0 0 10px;
    font-size: 22px;
    color: #0f172a;
}

.resource-card p {
    margin: 0;
    font-size: 16px;
    line-height: 1.7;
    color: #475569;
}