:root {
    --profile-ink: #172b4d;
    --profile-muted: #526174;
    --profile-copper: #b77843;
    --profile-orange: #ef6a1a;
    --profile-green: #07834f;
    --profile-paper: #fbfaf7;
    --profile-line: #e5e7eb;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    color: var(--profile-ink);
    background: var(--profile-paper);
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.65;
}

a { color: var(--profile-orange); }
a:hover { color: var(--profile-ink); }

.profile-shell {
    width: min(1120px, calc(100% - 40px));
    margin: 0 auto;
}

.profile-header {
    background: #fff;
    border-bottom: 1px solid var(--profile-line);
}

.profile-header-inner {
    min-height: 84px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.profile-logo {
    display: block;
    width: min(310px, 70vw);
    height: auto;
}

.profile-home-link, .profile-text-link {
    color: var(--profile-ink);
    font-weight: 700;
    text-decoration: none;
}

.profile-intro {
    max-width: 820px;
    padding: 84px 0 56px;
}

.eyebrow {
    margin: 0 0 12px;
    color: var(--profile-orange);
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

h1, h2, h3 { line-height: 1.2; }

h1 {
    margin: 0;
    color: var(--profile-ink);
    font-size: clamp(2.3rem, 6vw, 4.6rem);
    letter-spacing: -.04em;
}

h2 {
    margin: 0 0 20px;
    color: var(--profile-ink);
    font-size: clamp(1.45rem, 2.3vw, 2rem);
}

h3 {
    margin: 0 0 8px;
    color: var(--profile-ink);
    font-size: 1.05rem;
}

p { margin: 0 0 16px; }

.profile-tagline {
    margin: 18px 0 12px;
    color: var(--profile-green);
    font-size: 1.1rem;
    font-weight: 800;
}

.profile-lede {
    max-width: 760px;
    margin: 0;
    color: var(--profile-muted);
    font-size: clamp(1.1rem, 2vw, 1.35rem);
}

.profile-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.profile-card {
    padding: 30px;
    background: #fff;
    border: 1px solid var(--profile-line);
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(23, 43, 77, .045);
}

.profile-card-wide { grid-column: 1 / -1; }

.profile-card p:last-child, .profile-card ul:last-child, .profile-card dl:last-child { margin-bottom: 0; }

.profile-facts { margin: 0; }
.profile-facts div {
    display: grid;
    grid-template-columns: minmax(125px, .65fr) 1.35fr;
    gap: 18px;
    padding: 11px 0;
    border-top: 1px solid var(--profile-line);
}
.profile-facts div:first-child { padding-top: 0; border-top: 0; }
.profile-facts dt { color: var(--profile-muted); font-size: .88rem; font-weight: 700; }
.profile-facts dd { margin: 0; }

.profile-list {
    display: grid;
    gap: 9px;
    margin: 0;
    padding-left: 20px;
}
.profile-list li::marker { color: var(--profile-orange); }
.profile-list.columns { grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: 34px; }

.note {
    margin-top: 20px;
    color: var(--profile-muted);
    font-size: .9rem;
}

.callout {
    margin-top: 22px;
    padding: 15px 18px;
    color: var(--profile-ink);
    background: #fff7ed;
    border-left: 4px solid var(--profile-orange);
}

.product-entry {
    margin-top: 24px;
    padding: 22px;
    background: #f6f8fb;
    border-radius: 8px;
}

.quick-answers { margin-top: 20px; }
.answer-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 34px;
}
.answer-list p { margin: 0; color: var(--profile-muted); }

.profile-contact {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
    margin: 20px 0 72px;
    padding: 34px 30px;
    color: #fff;
    background: var(--profile-ink);
    border-radius: 12px;
}
.profile-contact h2 { color: #fff; }
.profile-contact address { font-style: normal; }
.profile-contact address a { color: #fff; }
.profile-downloads { display: grid; gap: 14px; min-width: 220px; }
.profile-button {
    display: inline-block;
    padding: 12px 16px;
    color: #fff;
    background: var(--profile-orange);
    border-radius: 6px;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
}
.profile-button:hover { color: #fff; background: var(--profile-copper); }
.profile-contact .profile-text-link { color: #fff; text-align: center; }

.profile-footer {
    padding: 42px 0 50px;
    color: #fff;
    background: #10213b;
    text-align: center;
}
.profile-footer p { margin: 18px 0 0; color: rgba(255,255,255,.78); font-size: .9rem; }
.profile-footer a { color: #fff; }
.badge-wrap { display: flex; justify-content: center; }
.bharat-badge { width: min(210px, 55vw); height: auto; }

@media (max-width: 720px) {
    .profile-shell { width: min(100% - 28px, 1120px); }
    .profile-header-inner { min-height: 72px; }
    .profile-logo { width: min(235px, 60vw); }
    .profile-home-link { font-size: .85rem; }
    .profile-intro { padding: 58px 0 38px; }
    .profile-grid, .answer-list { grid-template-columns: 1fr; }
    .profile-card-wide { grid-column: auto; }
    .profile-card { padding: 23px 20px; }
    .profile-list.columns { grid-template-columns: 1fr; }
    .profile-contact { display: block; margin-bottom: 48px; padding: 26px 22px; }
    .profile-downloads { margin-top: 24px; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
}