.badge-container {
    display: flex;
    gap: 12px;
}

.sebi-badge {
    background: #f0f4f9;
    padding: 6px 14px;
    border-radius: 40px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--ve-navy);
    border-left: 3px solid var(--ve-gold);
}

/* main content */
.main-container {
    max-width: 1280px;
    margin: 2rem auto;
    padding: 0 1.5rem 2rem;
}

/* circular hero */
.circular-card {
    background: var(--ve-white);
    border-radius: var(--ve-radius);
    box-shadow: var(--ve-shadow);
    padding: 1.8rem 2rem;
    margin-top: 15vh;
    margin-bottom: 2rem;
    border: 1px solid var(--ve-border);
}

.ref-header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: baseline;
    gap: 12px;
    border-bottom: 2px solid var(--ve-gold);
    padding-bottom: 1rem;
    margin-bottom: 1.25rem;
}

.ref-number {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--ve-dark);
    font-family: monospace;
}

.date-effect {
    background: var(--ve-light);
    padding: 5px 12px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 500;
}

.immediate {
    background: #e6f0fa;
    color: #0a5c8e;
}

.regulation-note {
    background: #f9f5e8;
    padding: 1rem;
    border-radius: 12px;
    margin: 1rem 0 0.5rem;
    font-size: 0.85rem;
    border-left: 4px solid var(--ve-gold);
}

/* RA identity row */
.ra-identity {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    background: var(--ve-light);
    border-radius: 16px;
    padding: 1.2rem 1.8rem;
    margin: 1.5rem 0;
    align-items: center;
    justify-content: space-between;
}

.ra-details {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.ra-item {
    display: flex;
    flex-direction: column;
}

.ra-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--ve-navy);
    font-weight: 600;
}

.ra-value {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--ve-dark);
}

/* MITC sections grid / list */
.mitc-intro {
    margin: 1.5rem 0 1rem;
    font-size: 0.9rem;
    background: #fefaf0;
    padding: 1rem 1.5rem;
    border-radius: 14px;
}

.section-block {
    background: var(--ve-white);
    border-radius: var(--ve-radius);
    border: 1px solid var(--ve-border);
    margin-bottom: 1.8rem;
    overflow: hidden;
    transition: var(--ve-trans);
}

.section-title {
    background: var(--ve-dark2);
    color: white;
    padding: 1rem 1.8rem;
    font-weight: 700;
    font-size: 1.3rem;
    letter-spacing: -0.2px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-title span {
    background: var(--ve-gold);
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 40px;
    font-weight: 800;
    color: var(--ve-dark);
}

.clause-list {
    padding: 0.2rem 0;
}

.clause-item {
    padding: 1.2rem 1.8rem;
    border-bottom: 1px solid var(--ve-border);
}

.clause-item:last-child {
    border-bottom: none;
}

.clause-head {
    display: flex;
    align-items: baseline;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.clause-num {
    font-weight: 800;
    background: #eef2f8;
    border-radius: 30px;
    padding: 0 12px;
    font-size: 0.85rem;
    line-height: 28px;
    color: var(--ve-dark);
}

.clause-title {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--ve-dark);
}

.clause-text {
    color: #2d3a4b;
    font-size: 0.95rem;
    margin-top: 6px;
    padding-left: 8px;
    border-left: 2px solid var(--ve-border);
}

.critical-note,
.prohibited-badge,
.security-note {
    background: #fff0e5;
    padding: 8px 14px;
    border-radius: 12px;
    margin-top: 10px;
    font-size: 0.85rem;
    font-weight: 500;
    display: inline-block;
}

.security-note {
    background: #e6f2fc;
}

.gold-link {
    color: var(--ve-gold);
    font-weight: 600;
    text-decoration: none;
}

.consent-box {
    background: #f4f9fe;
    border-radius: 20px;
    padding: 1.6rem;
    margin: 2rem 0;
    border: 1px solid var(--ve-gold2);
}

.footer-note {
    background: var(--ve-white);
    border-radius: var(--ve-radius);
    padding: 1.5rem;
    text-align: center;
    font-size: 0.75rem;
    margin-top: 2rem;
}

button,
.fake-check {
    background: var(--ve-gold);
    border: none;
    padding: 12px 28px;
    border-radius: 40px;
    font-weight: 700;
    color: var(--ve-dark);
    cursor: pointer;
    transition: var(--ve-trans);
    font-size: 0.9rem;
}

button:hover {
    background: var(--ve-gold2);
    transform: translateY(-1px);
}