html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
}

*,
p {
    font-family: 'DM Sans', sans-serif;
}

.commercium-head-banner .banner-content-block {
    padding: 100px 0px;
}

.commercium-head-banner .banner-content-block p {
    color: #fff;
    font-weight: 600;
    text-align: center;
    letter-spacing: 0.5px;
}

/* ── Hero banner ── */
.hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a6e 55%, #2563a8 100%);
    position: relative;
    overflow: hidden;
    padding: 64px 24px 52px;
    text-align: center;
}

.hero-inner {
    position: relative;
    z-index: 1;
}

.hero-brand {
    font-family: 'Sora', sans-serif;
    font-size: 1.9rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.hero-sub {
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 20px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.78rem;
    font-weight: 500;
    padding: 5px 16px;
    border-radius: 100px;
    margin-bottom: 18px;
    letter-spacing: 0.3px;
}

.hero-badge span {
    width: 6px;
    height: 6px;
    background: #4ade80;
    border-radius: 50%;
    display: inline-block;
}

.hero h1 {
    font-family: 'Sora', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
    line-height: inherit;
}

.hero-meta {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.45);
}

/* ── Layout ── */
.page-wrap {
    max-width: 900px;
    margin: 0 auto;
    padding: 48px 24px 80px;
}

/* ── SUMMARY CARD ── */
.summary-card {
    background: linear-gradient(135deg, #1a2340 0%, #1e3a6e 100%);
    border-radius: 16px;
    padding: 28px 32px;
    margin-bottom: 36px;
    position: relative;
    overflow: hidden;
}

.summary-card h2 {
    font-family: 'Sora', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 14px;
}
.summary-card p{
    color: #fff;
}

.summary-card ul {
    list-style: none;
    padding: 0;
}

.summary-card ul li {
    padding: 5px 0 5px 24px;
    position: relative;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
}

.summary-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4ade80;
    font-weight: 700;
}

/* ── ENTITY PILLS ── */
.entity-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 12px 0;
}

.entity-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border-radius: 10px;
    padding: 10px 16px;
    font-size: 0.88rem;
    font-weight: 600;
}

.entity-pill.india {
    background: #fff7ed;
    border: 1px solid #fed7aa;
    color: #c2410c;
}

.entity-pill.usa {
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    color: #1d4ed8;
}

/* ── BILLING NOTE ── */
.info-note {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 10px;
    padding: 12px 16px;
    margin-top: 12px;
    font-size: 0.88rem;
    color: #065f46;
}

.info-note .icon {
    font-size: 1rem;
    margin-top: 1px;
    flex-shrink: 0;
}

/* ── WARN PILL ── */
.warn-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #fff7ed;
    border: 1px solid #fed7aa;
    color: #c2410c;
    font-size: 0.82rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 8px;
    margin-top: 12px;
}



/* ── TWO-COL GRID ── */
.two-col {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 12px;
}

.col-card {
    border-radius: 10px;
    padding: 14px 16px;
}

.col-card.blue {
    background: #eff6ff;
    border: 1px solid #bfdbfe;
}

.col-card.amber {
    background: #fff7ed;
    border: 1px solid #fed7aa;
}

.col-card.red {
    background: #fef2f2;
    border: 1px solid #fecaca;
}

.col-card.green {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
}

.col-title {
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 0.82rem;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.col-card.blue .col-title {
    color: #1d4ed8;
}

.col-card.amber .col-title {
    color: #c2410c;
}

.col-card.red .col-title {
    color: #b91c1c;
}

.col-card.green .col-title {
    color: #065f46;
}

.col-card ul {
    list-style: none;
    padding: 0;
}

.col-card ul li {
    padding: 3px 0 3px 16px;
    position: relative;
    font-size: 0.875rem;
    color: #374151;
}

.col-card ul li::before {
    content: '•';
    position: absolute;
    left: 4px;
    font-weight: 700;
}

.col-card.blue ul li::before {
    color: #1d4ed8;
}

.col-card.amber ul li::before {
    color: #c2410c;
}

.col-card.red ul li::before {
    color: #b91c1c;
}

.col-card.green ul li::before {
    color: #065f46;
}

/* ── LIABILITY GRID ── */
.liab-grid {
    display: flex;
    flex-wrap: wrap;
    align-items: start;
    justify-content: start;
    gap: 10px;
    margin-top: 14px;
}

.liab-item {
    width: 24%;
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 10px;
    padding: 10px 14px;
    font-size: 0.75rem;
    font-weight: 500;
    color: #b91c1c;
    display: flex;
    align-items: center;
    gap: 7px;
}

.liab-item::before {
    content: '✕';
    font-weight: 700;
    color: #ef4444;
    flex-shrink: 0;
}

/* ── FORCE MAJEURE GRID ── */
.fm-grid {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: start;
    gap: 10px;
    margin-top: 14px;
}

.fm-item {
    width: 32%;
    background: #e8f0fb;
    border-radius: 10px;
    padding: 12px 14px;
    font-size: 0.875rem;
    color: #1a2340;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ── CONTACT BLOCK ── */
.contact-block {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a6e 100%);
    border-radius: 16px;
    padding: 32px;
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: space-between;
    align-items: center;
    margin-top: 32px;
}

.contact-block h2 {
    font-family: 'Sora', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
}

.contact-entity {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.9rem;
    line-height: 1.6;
}

.contact-email {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #93c5fd;
    font-weight: 600;
    font-size: 0.92rem;
    padding: 10px 20px;
    border-radius: 100px;
    text-decoration: none;
    transition: background 0.2s;
    white-space: nowrap;
}

.contact-email:hover {
    background: rgba(255, 255, 255, 0.18);
}





/* ============================================ */

/* ── INTRO CARD ── */
.intro-card {
    background: linear-gradient(135deg, #1a2340 0%, #1e3a6e 100%);
    border-radius: 16px;
    padding: 28px 32px;
    margin-bottom: 36px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    line-height: 1.75;
    position: relative;
    overflow: hidden;
}

.intro-card p {
    margin-bottom: 10px;
}

.intro-card p:last-child {
    margin-bottom: 0;
}

.intro-card strong {
    color: #fff;
}



/* ── SUB-SECTION (Data categories) ── */
.sub-block {
    width: 100%;
    background: #e8f0fb;
    border-left: 3px solid #2563a8;
    border-radius: 0 8px 8px 0;
    padding: 14px 18px;
    margin: 12px 0;
}

.sub-block-title {
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    color: #1a2340;
    margin-bottom: 6px;
}

.sub-block ul {
    list-style: none;
    padding: 0;
}

.sub-block ul li {
    font-size: 0.9rem;
    color: #374151;
    padding: 2px 0 2px 18px;
    position: relative;
}

.sub-block ul li::before {
    content: '•';
    position: absolute;
    left: 6px;
    color: #2563a8;
    font-weight: 700;
}

.sub-block .meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.meta-pill {
    font-size: 0.75rem;
    font-weight: 500;
    padding: 3px 10px;
    border-radius: 100px;
}

.meta-pill.purpose {
    background: #dbeafe;
    color: #1d4ed8;
}

.meta-pill.legal {
    background: #d1fae5;
    color: #065f46;
}


/* ── BULLET LIST ── */
.section ul {
    list-style: none;
    padding: 0;
    margin: 8px 0;
}

.section>ul>li,
.section .plain-list li {
    padding: 4px 0 4px 22px;
    position: relative;
    font-size: 0.95rem;
    color: #374151;
}

.section>ul>li::before,
.section .plain-list li::before {
    content: '•';
    position: absolute;
    left: 7px;
    color: #2563a8;
    font-weight: 700;
}


/* ── SUB-PROCESSOR TABLE ── */
.sp-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 14px;
    font-size: 0.9rem;
}

.sp-table thead tr {
    background: #1a2340;
}

.sp-table thead th {
    color: #fff;
    font-family: 'Sora', sans-serif;
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
    padding: 10px 16px;
    text-align: left;
}

.sp-table thead th:first-child {
    border-radius: 8px 0 0 0;
}

.sp-table thead th:last-child {
    border-radius: 0 8px 0 0;
}

.sp-table tbody tr {
    border-bottom: 1px solid rgba(37, 99, 168, 0.12);
    ;
}

.sp-table tbody tr:hover {
    background: #e8f0fb;
}

.sp-table tbody td {
    padding: 9px 16px;
    color: #374151;
}

.sp-table tbody td:first-child {
    font-weight: 600;
    color: #1a2340;
}


/* ── SECURITY GRID ── */
.security-grid {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: start;
    gap: 12px;
    margin-top: 14px;
}

.sec-item {
    width: 32%;
    background: #e8f0fb;
    border-radius: 10px;
    padding: 14px 16px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.sec-icon {
    font-size: 1.2rem;
    line-height: 1;
    margin-top: 2px;
}

.sec-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #1a2340;
    line-height: 1.35;
}

/* ── RIGHTS GRID ── */
.rights-grid {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: start;
    gap: 10px;
    margin-top: 14px;
}

.right-item {
    width: 32%;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 10px;
    padding: 12px 14px;
    font-size: 0.88rem;
    font-weight: 600;
    color: #065f46;
    display: flex;
    align-items: center;
    gap: 8px;
}

.right-item::before {
    content: '✓';
    color: #059669;
    font-weight: 700;
}

/* ── RETENTION TABLE ── */
.ret-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 14px;
    font-size: 0.9rem;
}

.ret-table thead tr {
    background: #f1f5f9;
}

.ret-table thead th {
    padding: 10px 16px;
    text-align: left;
    font-family: 'Sora', sans-serif;
    font-weight: 600;
    font-size: 0.8rem;
    color: #1a2340;
    letter-spacing: 0.4px;
}

.ret-table tbody tr {
    border-bottom: 1px solid rgba(37, 99, 168, 0.12);
    ;
}

.ret-table tbody tr:hover {
    background: #e8f0fb;
}

.ret-table tbody td {
    padding: 10px 16px;
}

.ret-table tbody td:first-child {
    font-weight: 600;
    color: #1a2340;
}

.ret-badge {
    display: inline-block;
    background: #dbeafe;
    color: #1d4ed8;
    font-size: 0.78rem;
    font-weight: 600;
    padding: 2px 10px;
    border-radius: 100px;
}

/* ── CONTACT BLOCK ── */
.contact-block {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a6e 100%);
    border-radius: 16px;
    padding: 32px;
    margin-top: 32px;
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: space-between;
    align-items: center;
}

.contact-block h2 {
    font-family: 'Sora', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 24px;
}

.contact-entity {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.9rem;
    line-height: 1.6;
}

.contact-email {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #93c5fd;
    font-weight: 600;
    font-size: 0.92rem;
    padding: 10px 20px;
    border-radius: 100px;
    text-decoration: none;
    transition: background 0.2s;
    white-space: nowrap;
}

.contact-email:hover {
    background: rgba(255, 255, 255, 0.18);
}




/* ================== */

/* ── Section ── */
.section {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .06);
    padding: 28px 32px;
    margin-bottom: 20px;
    align-items: start;
}

.section:hover {
    box-shadow: 0 6px 28px rgba(37, 99, 168, 0.1);
}

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


.section-num {
    background: #2563a8;
    color: #fff;
    font-weight: 700;
    font-size: .85rem;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.section h2 {
    font-family: 'Sora', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: #1a2340;
    margin: 0px;
}

.section p {
    font-size: .96rem;
    color: #374151;
    margin-bottom: 10px;
}

.section p:last-child {
    margin-bottom: 0;
}

.section ul {
    list-style: none;
    padding: 0;
    margin: 8px 0 10px;
}

.section ul li {
    padding: 3px 0 3px 20px;
    position: relative;
    font-size: .95rem;
    color: #374151;
}

.section ul li::before {
    content: "•";
    position: absolute;
    left: 6px;
    color: #2563a8;
    font-weight: 900;
}

.section ul ul {
    margin: 4px 0 4px 16px;
}

.section ul ul li::before {
    content: "–";
    color: #6b7280;
}

/* ── Footer note ── */
.footer-note {
    text-align: center;
    /* font-size: .82rem; */
    font-size: 1rem;
    color: #9ca3af;
    margin-top: 40px;
}

@media (max-width: 600px) {
    .hero h1 {
        font-size: 1.5rem;
    }

    .section {
        padding: 20px 18px;
    }

    .summary-card {
        padding: 18px 16px;
    }

    .sec-item {
        width: 100%;
    }

    .right-item {
        width: 100%;
    }
}