* {
    box-sizing: border-box;
}

:root {
    --ink: #10231f;
    --muted: #5f706b;
    --line: #dbe5e1;
    --surface: #ffffff;
    --soft: #f4f8f6;
    --primary: #0b6b57;
    --primary-dark: #084c3f;
    --accent: #d7a329;
    --danger: #a52727;
    --danger-soft: #fff0f0;
    --success: #186a43;
    --success-soft: #edf9f2;
    --shadow: 0 18px 45px rgba(16, 35, 31, 0.10);
}

html {
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
        "Segoe UI", sans-serif;
    color: var(--ink);
    background: var(--soft);
}

body {
    margin: 0;
}

a {
    color: var(--primary);
}

.privacy-strip {
    background: #0c2d27;
    color: #f3fbf8;
    font-size: 13px;
    line-height: 1.45;
}

.privacy-strip__inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 10px 18px;
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.shield {
    color: #e3bd58;
}

.auth-body {
    min-height: 100vh;
    background:
        radial-gradient(circle at top left, rgba(11,107,87,.08), transparent 32%),
        var(--soft);
}

.auth-brand {
    max-width: 1100px;
    margin: 0 auto;
    padding: 26px 20px 12px;
}

.brand-link {
    display: inline-flex;
    gap: 12px;
    align-items: center;
    text-decoration: none;
    color: var(--ink);
}

.brand-mark {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: var(--primary);
    color: #fff;
    font-weight: 800;
    font-size: 22px;
}

.brand-name {
    font-weight: 800;
    font-size: 16px;
}

.brand-subtitle {
    display: block;
    margin-top: 2px;
    color: var(--muted);
    font-size: 12px;
}

.auth-shell {
    width: min(100% - 28px, 720px);
    margin: 20px auto 55px;
}

.auth-card {
    max-width: 520px;
    margin: 0 auto;
    padding: 34px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 22px;
    box-shadow: var(--shadow);
}

.auth-card--wide {
    max-width: 720px;
}

.auth-card--otp {
    max-width: 480px;
}

.auth-intro {
    margin-bottom: 24px;
}

.auth-intro--center {
    text-align: center;
}

.eyebrow {
    color: var(--primary);
    font-weight: 800;
    font-size: 11px;
    letter-spacing: .13em;
}

.auth-intro h1,
.welcome-panel h1,
.profile-heading h1 {
    margin: 7px 0 8px;
    font-size: clamp(28px, 4vw, 38px);
    line-height: 1.12;
}

.auth-intro p,
.welcome-panel p,
.profile-heading p {
    margin: 0;
    color: var(--muted);
    line-height: 1.65;
}

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

.form-group {
    margin-bottom: 18px;
}

.form-group--full {
    grid-column: 1 / -1;
}

label {
    display: block;
    margin-bottom: 7px;
    font-weight: 700;
    font-size: 14px;
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="tel"],
input[type="date"],
select,
textarea {
    width: 100%;
    min-height: 48px;
    border: 1px solid #bfcfc9;
    border-radius: 12px;
    padding: 0 14px;
    font: inherit;
    color: var(--ink);
    background: #fff;
    outline: none;
    transition: border-color .15s ease, box-shadow .15s ease;
}

textarea {
    padding-top: 12px;
    padding-bottom: 12px;
    resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(11, 107, 87, .10);
}

.form-group small,
.security-note {
    display: block;
    margin-top: 6px;
    color: var(--muted);
    font-size: 12px;
}

.declaration-box {
    display: flex;
    gap: 11px;
    align-items: flex-start;
    padding: 14px;
    border-radius: 13px;
    background: #f6f8f7;
    border: 1px solid var(--line);
    font-weight: 500;
    line-height: 1.5;
    font-size: 13px;
}

.declaration-box input {
    margin-top: 3px;
    flex: 0 0 auto;
}

.trust-box {
    display: flex;
    gap: 12px;
    margin: 18px 0;
    padding: 14px;
    border-left: 4px solid var(--primary);
    background: #eff8f5;
    border-radius: 10px;
}

.trust-box p {
    margin: 4px 0 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.45;
}

.trust-icon {
    width: 25px;
    height: 25px;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    font-weight: 800;
}

.btn {
    appearance: none;
    border: 0;
    border-radius: 12px;
    min-height: 44px;
    padding: 0 18px;
    font: inherit;
    font-weight: 800;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
}

.btn-primary:hover {
    background: var(--primary-dark);
}

.btn-light {
    background: #fff;
    color: var(--ink);
    border: 1px solid var(--line);
}

.btn-block {
    width: 100%;
    min-height: 50px;
}

button:disabled {
    opacity: .55;
    cursor: not-allowed;
}

.alert {
    margin: 0 0 18px;
    padding: 13px 15px;
    border-radius: 12px;
    font-size: 14px;
    line-height: 1.5;
}

.alert ul {
    margin: 7px 0 0 18px;
    padding: 0;
}

.alert-error {
    color: #7e1f1f;
    background: var(--danger-soft);
    border: 1px solid #f0c8c8;
}

.alert-success {
    color: #155837;
    background: var(--success-soft);
    border: 1px solid #bfe4ce;
}

.auth-switch {
    margin-top: 20px;
    text-align: center;
    color: var(--muted);
    font-size: 14px;
}

.auth-switch a {
    font-weight: 800;
}

.simple-footer {
    width: min(100% - 30px, 720px);
    margin: 0 auto 35px;
    text-align: center;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.6;
}

.footer-links {
    margin-top: 7px;
    display: flex;
    gap: 8px;
    justify-content: center;
}

.otp-symbol {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    margin: 0 auto 18px;
    border-radius: 50%;
    color: #fff;
    background: var(--primary);
    font-size: 27px;
    font-weight: 800;
}

.otp-input {
    text-align: center;
    letter-spacing: .35em;
    font-size: 24px !important;
    font-weight: 800 !important;
}

.dev-otp {
    margin: 0 0 18px;
    padding: 14px;
    text-align: center;
    border-radius: 12px;
    background: #fff7db;
    border: 1px dashed #caa747;
}

.dev-otp span {
    display: block;
    margin: 6px 0;
    font-size: 25px;
    font-weight: 900;
    letter-spacing: .15em;
}

.dev-otp small {
    display: block;
    color: #756421;
}

.member-body {
    min-height: 100vh;
    background: var(--soft);
}

.member-header {
    max-width: 1120px;
    margin: 0 auto;
    padding: 22px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.member-container,
.profile-container {
    width: min(100% - 30px, 1080px);
    margin: 10px auto 50px;
}

.welcome-panel {
    padding: 28px;
    border-radius: 22px;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: 0 12px 34px rgba(16, 35, 31, .07);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 25px;
}

.status-pill {
    flex: 0 0 auto;
    padding: 9px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
}

.status-warning {
    color: #674d00;
    background: #fff1ba;
}

.status-success {
    color: #155837;
    background: #dcf4e6;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 18px;
}

.dashboard-card {
    padding: 22px;
    border-radius: 18px;
    background: #fff;
    border: 1px solid var(--line);
}

.dashboard-card--primary {
    border-top: 4px solid var(--primary);
}

.dashboard-card h2 {
    margin: 13px 0 8px;
    font-size: 18px;
}

.dashboard-card p {
    min-height: 70px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.55;
}

.card-icon {
    color: var(--primary);
    font-weight: 900;
    font-size: 12px;
    letter-spacing: .08em;
}

.mini-status {
    margin-top: 14px;
    color: var(--success);
    font-size: 13px;
    font-weight: 800;
}

.mini-status--warning {
    color: #8a6500;
}

.confidentiality-panel {
    margin-top: 18px;
    padding: 18px 20px;
    border-radius: 15px;
    background: #0c2d27;
    color: #fff;
}

.confidentiality-panel p {
    margin: 7px 0 0;
    color: #cee2dc;
    line-height: 1.55;
    font-size: 13px;
}

/* Profile */
.profile-heading {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 22px;
}

.profile-heading > div:first-child {
    max-width: 650px;
}

.profile-progress {
    min-width: 250px;
    align-self: center;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 5px 10px;
    color: var(--muted);
    font-size: 12px;
}

.profile-progress span:nth-child(even) {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    border: 1px solid var(--line);
    background: #fff;
    font-weight: 800;
}

.profile-progress .done,
.profile-progress .current {
    background: var(--primary) !important;
    color: #fff;
    border-color: var(--primary) !important;
}

.profile-section {
    position: relative;
    margin-bottom: 18px;
    padding: 28px;
    border-radius: 20px;
    border: 1px solid var(--line);
    background: #fff;
}

.profile-section--secure {
    border-top: 4px solid var(--primary);
}

.section-number {
    color: var(--primary);
    font-weight: 900;
    font-size: 11px;
    letter-spacing: .12em;
}

.section-heading {
    margin: 6px 0 24px;
}

.section-heading h2 {
    margin: 0 0 6px;
    font-size: 21px;
}

.section-heading p {
    margin: 0;
    color: var(--muted);
    line-height: 1.55;
    font-size: 13px;
}

.switch-row {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 15px;
    border: 1px solid var(--line);
    border-radius: 13px;
    background: #f7faf8;
}

.switch-row input {
    margin-top: 4px;
}

.switch-row small {
    display: block;
    margin-top: 3px;
    color: var(--muted);
    font-weight: 500;
}

.volunteer-fields {
    margin-top: 18px;
}

.skill-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.skill-option {
    margin: 0;
    display: flex;
    gap: 9px;
    align-items: center;
    padding: 11px 12px;
    border: 1px solid var(--line);
    border-radius: 11px;
    background: #fff;
    font-size: 13px;
    font-weight: 600;
}

.skill-option input {
    flex: 0 0 auto;
}

.volunteer-meta {
    margin-top: 18px;
}

.secure-upload {
    display: flex;
    gap: 16px;
    padding: 18px;
    border-radius: 14px;
    border: 1px dashed #9fbab2;
    background: #f6faf8;
}

.secure-upload__icon {
    width: 43px;
    height: 43px;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    border-radius: 11px;
    background: #e3f2ed;
    color: var(--primary);
    font-weight: 900;
}

.secure-upload__body {
    flex: 1;
}

.secure-upload input[type="file"] {
    width: 100%;
}

.secure-upload small {
    display: block;
    margin-top: 7px;
    color: var(--muted);
    font-size: 12px;
}

.document-exists {
    margin-bottom: 14px;
    padding: 12px 14px;
    border-radius: 12px;
    background: var(--success-soft);
    color: var(--success);
    font-size: 13px;
}

.document-exists span {
    display: block;
    margin-top: 3px;
    color: var(--muted);
}

.privacy-promise {
    margin-top: 15px;
    padding: 15px;
    border-radius: 12px;
    background: #0c2d27;
    color: #fff;
}

.privacy-promise p {
    margin: 5px 0 0;
    color: #d0e4de;
    font-size: 13px;
    line-height: 1.55;
}

.profile-submit {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 22px;
    border-radius: 17px;
    background: #fff;
    border: 1px solid var(--line);
}

.profile-submit p {
    margin: 4px 0 0;
    color: var(--muted);
    font-size: 13px;
}

@media (max-width: 760px) {
    .auth-card {
        padding: 24px 18px;
        border-radius: 18px;
    }

    .form-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .form-group--full {
        grid-column: auto;
    }

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

    .dashboard-card p {
        min-height: 0;
    }

    .welcome-panel {
        align-items: flex-start;
        flex-direction: column;
    }

    .member-header {
        padding-left: 15px;
        padding-right: 15px;
    }

    .brand-subtitle {
        display: none;
    }

    .profile-heading {
        flex-direction: column;
    }

    .profile-progress {
        width: 100%;
        min-width: 0;
        align-self: stretch;
    }

    .profile-section {
        padding: 21px 17px;
    }

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

    .profile-submit {
        flex-direction: column;
        align-items: stretch;
    }

    .profile-submit .btn {
        width: 100%;
    }

    .secure-upload {
        flex-direction: column;
    }
}


/* Step 3A — searchable/typeable dropdown */
.combo {
    position: relative;
    width: 100%;
}

.combo-input {
    width: 100%;
    min-height: 48px;
    border: 1px solid #bfcfc9;
    border-radius: 12px;
    padding: 0 42px 0 14px;
    font: inherit;
    color: var(--ink);
    background:
        linear-gradient(45deg, transparent 50%, #52625e 50%) calc(100% - 19px) 21px / 6px 6px no-repeat,
        linear-gradient(135deg, #52625e 50%, transparent 50%) calc(100% - 13px) 21px / 6px 6px no-repeat,
        #fff;
    outline: none;
}

.combo-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(11, 107, 87, .10);
}

.combo-native-select {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    opacity: 0 !important;
    pointer-events: none !important;
    overflow: hidden !important;
}

.combo-menu {
    display: none;
    position: absolute;
    z-index: 1000;
    left: 0;
    right: 0;
    top: calc(100% + 5px);
    max-height: 260px;
    overflow-y: auto;
    background: #fff;
    border: 1px solid #bfcfc9;
    border-radius: 12px;
    box-shadow: 0 16px 35px rgba(16, 35, 31, .16);
    padding: 6px;
}

.combo.is-open .combo-menu {
    display: block;
}

.combo-option {
    width: 100%;
    min-height: 40px;
    border: 0;
    border-radius: 8px;
    background: transparent;
    color: var(--ink);
    padding: 8px 10px;
    text-align: left;
    font: inherit;
    cursor: pointer;
}

.combo-option:hover,
.combo-option.is-selected {
    background: #eaf5f1;
    color: var(--primary-dark);
}

.combo-empty {
    padding: 12px 10px;
    color: var(--muted);
    font-size: 13px;
}

.conditional-other {
    display: none;
}


/* ===============================================================
   IEEA PUBLIC WEBSITE
   =============================================================== */

:root {
    --ieea-navy: #07386b;
    --ieea-navy-2: #0a4d88;
    --ieea-green: #087a50;
    --ieea-green-dark: #07553a;
    --ieea-orange: #f46d17;
    --ieea-orange-dark: #da5705;
    --ieea-pink: #ec3c82;
    --ieea-purple: #7449c6;
    --ieea-cyan: #087bc9;
    --ieea-brown: #9b5b18;
    --ieea-gold: #e9aa1d;
    --ieea-ink: #102d46;
    --ieea-text: #44596b;
    --ieea-muted: #71818d;
    --ieea-bg: #f6f8fa;
    --ieea-line: #dce4e9;
    --ieea-white: #ffffff;
    --ieea-shadow: 0 18px 48px rgba(13, 53, 83, .10);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}

.ieea-public-body {
    margin: 0;
    background: var(--ieea-bg);
    color: var(--ieea-ink);
}

.ieea-topbar {
    color: #fff;
    background: linear-gradient(90deg, #07386b, #0b4f88);
}

.ieea-topbar__inner {
    max-width: 1440px;
    min-height: 38px;
    margin: 0 auto;
    padding: 7px 36px;
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 12px;
}

.topbar-right {
    margin-left: auto;
    display: flex;
    gap: 22px;
}

.topbar-right a {
    color: #fff;
    text-decoration: none;
    font-size: 11px;
    font-weight: 700;
}

.ieea-header {
    position: sticky;
    top: 0;
    z-index: 700;
    background: rgba(255,255,255,.97);
    border-bottom: 1px solid var(--ieea-line);
    backdrop-filter: blur(12px);
}

.ieea-header__inner {
    max-width: 1440px;
    min-height: 94px;
    margin: 0 auto;
    padding: 9px 36px;
    display: flex;
    align-items: center;
    gap: 26px;
}

.ieea-brand {
    min-width: 390px;
    display: flex;
    align-items: center;
    gap: 13px;
    color: var(--ieea-ink);
    text-decoration: none;
}

.ieea-brand img {
    width: 72px;
    height: 72px;
    object-fit: contain;
    flex: 0 0 auto;
}

.ieea-brand__copy strong {
    display: block;
    color: var(--ieea-navy);
    font-size: 20px;
    font-weight: 900;
    line-height: 1.05;
}

.ieea-brand__hindi {
    display: block;
    margin-top: 4px;
    color: var(--ieea-green);
    font-size: 15px;
    font-weight: 800;
}

.ieea-brand__copy small {
    display: block;
    margin-top: 3px;
    color: #455c73;
    font-size: 11px;
}

.ieea-nav {
    flex: 1;
    display: flex;
    justify-content: center;
    gap: 4px;
}

.ieea-nav a {
    padding: 10px 10px;
    border-radius: 8px;
    color: #213c56;
    text-decoration: none;
    font-size: 12px;
    font-weight: 800;
    white-space: nowrap;
}

.ieea-nav a:hover,
.ieea-nav a.is-active {
    color: var(--ieea-green);
    background: #edf6f2;
}

.ieea-header-actions {
    display: flex;
    align-items: center;
    gap: 13px;
}

.ieea-login-link {
    color: var(--ieea-navy);
    text-decoration: none;
    font-size: 12px;
    font-weight: 900;
    white-space: nowrap;
}

.ieea-nav-toggle {
    display: none;
    border: 0;
    background: transparent;
    padding: 8px;
    cursor: pointer;
}

.ieea-nav-toggle > span:not(.sr-only) {
    display: block;
    width: 25px;
    height: 2px;
    margin: 5px 0;
    border-radius: 2px;
    background: var(--ieea-navy);
}

.ieea-btn {
    min-height: 46px;
    padding: 0 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 0;
    border-radius: 11px;
    text-decoration: none;
    font-weight: 900;
    font-size: 13px;
    cursor: pointer;
}

.ieea-btn-orange {
    color: #fff;
    background: var(--ieea-orange);
    box-shadow: 0 10px 24px rgba(244,109,23,.20);
}

.ieea-btn-orange:hover {
    background: var(--ieea-orange-dark);
}

.ieea-btn-outline {
    color: var(--ieea-navy);
    background: #fff;
    border: 1px solid #a9bfd2;
}

.ieea-btn-light {
    color: var(--ieea-navy);
    background: #fff;
}

.ieea-btn-large {
    min-height: 54px;
    padding: 0 22px;
}

.ieea-btn-xlarge {
    min-height: 60px;
    padding: 0 26px;
    font-size: 15px;
}

/* Hero */
.ieea-hero {
    max-width: 1600px;
    min-height: 610px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 47% 53%;
    background:
        radial-gradient(circle at 12% 12%, rgba(72,169,221,.14), transparent 28%),
        #f8fafb;
}

.ieea-hero__left {
    padding: 74px 24px 48px max(54px, calc((100vw - 1440px) / 2 + 36px));
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ieea-overline,
.ieea-kicker {
    color: var(--ieea-green);
    font-size: 11px;
    font-weight: 950;
    letter-spacing: .13em;
}

.ieea-kicker.light {
    color: #f4cb64;
}

.ieea-hero h1 {
    margin: 13px 0 0;
    max-width: 760px;
    color: var(--ieea-navy);
    font-size: clamp(50px, 5vw, 78px);
    line-height: .98;
    letter-spacing: -.045em;
}

.ieea-hero h1 span {
    display: block;
    color: var(--ieea-green);
}

.ieea-hero-hindi {
    margin-top: 19px;
    color: #133d68;
    font-size: 21px;
    font-weight: 900;
}

.ieea-hero-summary {
    max-width: 680px;
    margin: 15px 0 0;
    color: var(--ieea-text);
    font-size: 17px;
    line-height: 1.65;
}

.ieea-hero-actions {
    margin-top: 27px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.ieea-hero-assurances {
    margin-top: 27px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
}

.ieea-hero-assurances > div {
    display: grid;
    grid-template-columns: 28px 1fr;
    gap: 1px 8px;
}

.assurance-icon {
    grid-row: 1 / 3;
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: var(--ieea-green);
    font-size: 12px;
    font-weight: 900;
}

.ieea-hero-assurances strong {
    font-size: 11px;
    line-height: 1.2;
}

.ieea-hero-assurances small {
    color: var(--ieea-muted);
    font-size: 9px;
}

.ieea-hero__image {
    position: relative;
    min-width: 0;
    overflow: hidden;
}

.ieea-hero__image::after {
    content: "Local Voice. National Strength.";
    position: absolute;
    right: 36px;
    bottom: 38px;
    max-width: 270px;
    padding: 15px 20px;
    color: #fff;
    background: rgba(8,122,80,.94);
    transform: rotate(-4deg);
    font-size: 22px;
    line-height: 1.05;
    font-weight: 950;
    box-shadow: 0 12px 30px rgba(0,0,0,.17);
}

.ieea-hero__image img {
    width: 100%;
    height: 100%;
    min-height: 610px;
    display: block;
    object-fit: cover;
    object-position: center center;
}

/* Shared headings */
.ieea-section-head {
    max-width: 1120px;
    margin: 0 auto 34px;
    text-align: center;
}

.ieea-section-head--left {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 30px;
    text-align: left;
}

.ieea-section-head h2 {
    margin: 6px 0 7px;
    color: var(--ieea-navy);
    font-size: clamp(30px, 3.5vw, 45px);
    line-height: 1.08;
}

.ieea-section-head p {
    margin: 0;
    color: var(--ieea-text);
    line-height: 1.65;
}

/* Concerns */
.ieea-concern-wrap {
    position: relative;
    z-index: 3;
    max-width: 1480px;
    margin: -28px auto 0;
    padding: 28px 32px 34px;
    border-radius: 24px;
    background: #fff;
    box-shadow: var(--ieea-shadow);
}

.ieea-concern-arrows {
    display: flex;
    gap: 9px;
}

.ieea-concern-arrows button {
    width: 42px;
    height: 42px;
    border: 1px solid #b9cbd9;
    border-radius: 50%;
    color: var(--ieea-navy);
    background: #fff;
    font-size: 18px;
    cursor: pointer;
}

.ieea-issue-slider {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(200px, 1fr);
    gap: 12px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: inline mandatory;
    scrollbar-width: none;
}

.ieea-issue-slider::-webkit-scrollbar {
    display: none;
}

.ieea-issue-card {
    min-height: 215px;
    padding: 18px 14px 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    scroll-snap-align: start;
    border: 1px solid var(--ieea-line);
    border-radius: 15px;
    background: #fff;
    box-shadow: 0 8px 24px rgba(13,53,83,.05);
}

.issue-icon {
    width: 45px;
    height: 45px;
    margin-bottom: 12px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    font-size: 24px;
    font-weight: 900;
}

.ieea-issue-card h3 {
    flex: 1;
    margin: 0;
    color: #203a55;
    font-size: 14px;
    line-height: 1.35;
}

.ieea-issue-card a {
    width: 100%;
    min-height: 38px;
    margin-top: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 9px;
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    font-weight: 900;
}

.issue-blue .issue-icon { color: #216de0; background: #edf3ff; }
.issue-blue a { background: #216de0; }

.issue-orange .issue-icon { color: #f36b14; background: #fff0e7; }
.issue-orange a { background: #f36b14; }

.issue-pink .issue-icon { color: #ed3c82; background: #fff0f6; }
.issue-pink a { background: #ed3c82; }

.issue-purple .issue-icon { color: #7449c6; background: #f3effc; }
.issue-purple a { background: #7449c6; }

.issue-green .issue-icon { color: #0a8658; background: #eaf8f2; }
.issue-green a { background: #0a8658; }

.issue-cyan .issue-icon { color: #087bc9; background: #eaf5fc; }
.issue-cyan a { background: #087bc9; }

.issue-brown .issue-icon { color: #9b5b18; background: #fbf2e8; }
.issue-brown a { background: #9b5b18; }

/* Sectors */
.ieea-sector-section {
    max-width: 1480px;
    margin: 0 auto;
    padding: 35px 30px;
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 20px;
    align-items: stretch;
}

.ieea-sector-heading {
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: var(--ieea-navy);
}

.ieea-sector-heading span {
    font-size: 14px;
    font-weight: 700;
}

.ieea-sector-heading strong {
    font-size: 20px;
}

.ieea-sector-cards {
    display: grid;
    grid-template-columns: repeat(8, minmax(0, 1fr));
    gap: 10px;
}

.ieea-sector-cards article {
    min-height: 92px;
    padding: 13px 9px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 6px 18px rgba(13,53,83,.05);
}

.ieea-sector-cards article:nth-child(2n) { background: #eff8f4; }
.ieea-sector-cards article:nth-child(3n) { background: #fff3e9; }
.ieea-sector-cards article:nth-child(4n) { background: #edf5fb; }

.ieea-sector-cards span {
    font-size: 26px;
}

.ieea-sector-cards strong {
    color: var(--ieea-navy);
    font-size: 11px;
}

/* Principles */
.ieea-principles-strip {
    padding: 22px max(30px, calc((100vw - 1440px) / 2 + 30px));
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1fr 1fr;
    background: #fff;
    border-top: 1px solid var(--ieea-line);
    border-bottom: 1px solid var(--ieea-line);
}

.ieea-principles-strip article {
    min-width: 0;
    padding: 7px 18px;
    display: grid;
    grid-template-columns: 35px 1fr;
    gap: 10px;
    border-right: 1px solid var(--ieea-line);
}

.ieea-principles-strip article:last-child {
    border-right: 0;
}

.principle-icon {
    color: var(--ieea-orange);
    font-size: 28px;
    font-weight: 900;
}

.ieea-principles-strip strong {
    color: var(--ieea-navy);
    font-size: 12px;
}

.ieea-principles-strip p {
    margin: 3px 0 0;
    color: var(--ieea-text);
    font-size: 10px;
    line-height: 1.45;
}

/* Existing union trust */
.ieea-union-trust {
    padding: 82px max(30px, calc((100vw - 1360px) / 2 + 30px));
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 70px;
    align-items: center;
    color: #fff;
    background:
        radial-gradient(circle at 85% 0%, rgba(244,109,23,.16), transparent 30%),
        linear-gradient(135deg, #07386b, #07553a);
}

.ieea-union-trust__copy h2 {
    margin: 7px 0 14px;
    font-size: clamp(38px, 4.2vw, 58px);
    line-height: 1.03;
}

.ieea-union-trust__copy h2 span {
    display: block;
    color: #f4cc67;
}

.ieea-union-trust__copy p {
    max-width: 840px;
    color: #d6e4e7;
    line-height: 1.7;
}

.ieea-inline-trust {
    margin: 20px 0 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

.ieea-inline-trust span {
    padding: 8px 11px;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 999px;
    font-size: 10px;
    font-weight: 800;
}

.ieea-union-trust__panel {
    padding: 34px;
    border-radius: 24px;
    background: rgba(255,255,255,.09);
    border: 1px solid rgba(255,255,255,.13);
}

.trust-large-word {
    color: #f2c65e;
    font-size: 68px;
    font-weight: 950;
    letter-spacing: -.05em;
}

.ieea-union-trust__panel strong {
    display: block;
    margin-top: 6px;
    font-size: 22px;
}

.ieea-union-trust__panel p {
    color: #c5d9d9;
    line-height: 1.6;
}

/* Growth */
.ieea-growth-section,
.ieea-who-section,
.ieea-escalation-section,
.ieea-content-section {
    padding: 78px max(30px, calc((100vw - 1360px) / 2 + 30px));
}

.ieea-growth-section,
.ieea-content-section {
    background: #f6f8fa;
}

.ieea-content-section.white {
    background: #fff;
}

.ieea-growth-grid,
.ieea-value-grid,
.ieea-support-grid {
    max-width: 1160px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.ieea-growth-grid article,
.ieea-value-grid article,
.ieea-support-grid article {
    padding: 24px;
    border: 1px solid var(--ieea-line);
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 8px 24px rgba(13,53,83,.04);
}

.ieea-growth-grid article > span,
.ieea-value-grid article > span,
.ieea-support-grid article > span {
    color: var(--ieea-green);
    font-size: 11px;
    font-weight: 950;
}

.ieea-growth-grid h3,
.ieea-value-grid h3 {
    margin: 10px 0 7px;
    color: var(--ieea-navy);
}

.ieea-growth-grid p,
.ieea-value-grid p,
.ieea-support-grid p {
    margin: 0;
    color: var(--ieea-text);
    font-size: 12px;
    line-height: 1.6;
}

.ieea-support-grid strong {
    display: block;
    margin: 10px 0 7px;
    color: var(--ieea-navy);
}

/* Activity */
.ieea-activity-section {
    padding: 80px max(30px, calc((100vw - 1360px) / 2 + 30px));
    display: grid;
    grid-template-columns: 1fr .95fr;
    gap: 70px;
    align-items: center;
    color: #fff;
    background: #0b2d49;
}

.ieea-activity-intro h2 {
    margin: 7px 0 12px;
    font-size: clamp(36px, 4vw, 52px);
    line-height: 1.05;
}

.ieea-activity-intro p {
    color: #cbd9e3;
    line-height: 1.7;
}

.ieea-activity-levels {
    display: grid;
    gap: 11px;
}

.ieea-activity-levels > div {
    padding: 15px 17px;
    display: grid;
    grid-template-columns: 30px 1fr;
    gap: 3px 10px;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 13px;
    background: rgba(255,255,255,.055);
}

.ieea-activity-levels small {
    grid-row: 1 / 3;
    color: #f4c85d;
    font-weight: 900;
}

.ieea-activity-levels strong {
    font-size: 13px;
}

.ieea-activity-levels span {
    color: #b9cedd;
    font-size: 10px;
}

/* Who */
.ieea-who-section {
    background: #fff;
}

.ieea-who-grid {
    max-width: 1080px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.ieea-who-grid span {
    padding: 15px;
    border-radius: 11px;
    color: #164d3b;
    background: #edf6f2;
    font-size: 12px;
    font-weight: 850;
}

.ieea-who-grid.page-list {
    grid-template-columns: 1fr 1fr;
}

/* Privacy */
.ieea-privacy-banner {
    max-width: 1360px;
    margin: 0 auto 76px;
    padding: 29px 34px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 25px;
    align-items: center;
    border-radius: 22px;
    color: #fff;
    background: linear-gradient(135deg, #07386b, #07553a);
}

.privacy-banner-icon {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    color: #fff;
    background: rgba(255,255,255,.12);
    font-size: 28px;
    font-weight: 900;
}

.ieea-privacy-banner h2 {
    margin: 5px 0;
}

.ieea-privacy-banner p {
    margin: 0;
    color: #d5e4e6;
    font-size: 12px;
    line-height: 1.55;
}

.ieea-privacy-honesty {
    max-width: 900px;
    margin: 30px auto 0;
    padding: 22px;
    border-left: 4px solid var(--ieea-orange);
    border-radius: 12px;
    background: #fff5ec;
}

.ieea-privacy-honesty p {
    margin: 6px 0 0;
    color: #6a5648;
    font-size: 12px;
    line-height: 1.65;
}

/* Final CTA */
.ieea-final-cta {
    padding: 55px max(30px, calc((100vw - 1360px) / 2 + 30px));
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 50px;
    align-items: center;
    color: #fff;
    background: #07386b;
}

.ieea-final-cta h2 {
    margin: 7px 0 8px;
    font-size: clamp(34px, 4vw, 50px);
}

.ieea-final-cta h2 span {
    color: #f1c663;
}

.ieea-final-cta p {
    margin: 0;
    color: #d1dfeb;
}

.ieea-final-action {
    min-width: 230px;
    text-align: center;
}

.ieea-final-action small {
    display: block;
    margin-top: 10px;
    color: #b8cbda;
    font-size: 10px;
}

/* Interior pages */
.ieea-page-hero {
    padding: 78px max(30px, calc((100vw - 1200px) / 2 + 30px));
    text-align: center;
    background:
        radial-gradient(circle at 50% 0%, rgba(53,145,205,.14), transparent 42%),
        #f6f8fa;
}

.ieea-page-hero h1 {
    max-width: 930px;
    margin: 9px auto 12px;
    color: var(--ieea-navy);
    font-size: clamp(40px, 5vw, 60px);
    line-height: 1.04;
}

.ieea-page-hero p {
    max-width: 780px;
    margin: 0 auto;
    color: var(--ieea-text);
    line-height: 1.7;
}

.ieea-two-col {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 50px;
}

.ieea-prose h2 {
    margin-top: 0;
    color: var(--ieea-navy);
    font-size: 34px;
}

.ieea-prose p {
    color: var(--ieea-text);
    line-height: 1.75;
}

.ieea-mission-card {
    padding: 28px;
    border-radius: 20px;
    color: #fff;
    background: linear-gradient(145deg, var(--ieea-navy), var(--ieea-green));
}

.ieea-mission-card h3 {
    margin: 8px 0 0;
    font-size: 24px;
    line-height: 1.27;
}

.ieea-page-cta {
    margin: 0;
    padding: 40px max(30px, calc((100vw - 1200px) / 2 + 30px));
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    color: #fff;
    background: #0a304e;
}

.ieea-page-cta h2 {
    margin: 6px 0 0;
}

.ieea-zero-tolerance {
    padding: 50px max(30px, calc((100vw - 1200px) / 2 + 30px));
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 50px;
    color: #fff;
    background: #842e2e;
}

.ieea-zero-tolerance h2 {
    margin: 7px 0 0;
    font-size: 34px;
}

.zero-tolerance-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 9px;
}

.zero-tolerance-list span {
    padding: 11px 12px;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 10px;
    background: rgba(255,255,255,.06);
    font-size: 11px;
    font-weight: 800;
}

.ieea-escalation-grid,
.ieea-calendar-grid {
    max-width: 1120px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 13px;
}

.ieea-escalation-grid article,
.ieea-calendar-grid article {
    padding: 22px;
    border: 1px solid var(--ieea-line);
    border-radius: 16px;
    background: #fff;
}

.ieea-escalation-grid small,
.ieea-calendar-grid span {
    color: var(--ieea-green);
    font-size: 10px;
    font-weight: 900;
}

.ieea-escalation-grid strong {
    display: block;
    margin: 10px 0 7px;
    color: var(--ieea-navy);
    font-size: 21px;
}

.ieea-escalation-grid p,
.ieea-calendar-grid p {
    margin: 0;
    color: var(--ieea-text);
    font-size: 11px;
    line-height: 1.55;
}

.ieea-calendar-grid h3 {
    margin: 10px 0 7px;
    color: var(--ieea-navy);
}

.ieea-rule-note {
    max-width: 900px;
    margin: 20px auto 0;
    padding: 13px 15px;
    border-left: 4px solid var(--ieea-orange);
    background: #fff4ea;
    color: #745a46;
    font-size: 11px;
    line-height: 1.55;
}

/* FAQ */
.faq-list {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    gap: 10px;
}

.faq-list details {
    padding: 0 20px;
    border: 1px solid var(--ieea-line);
    border-radius: 13px;
    background: #fff;
}

.faq-list summary {
    padding: 18px 0;
    cursor: pointer;
    color: var(--ieea-navy);
    font-weight: 900;
}

.faq-list p {
    margin: -2px 0 18px;
    color: var(--ieea-text);
    font-size: 12px;
    line-height: 1.65;
}

/* Footer */
.ieea-footer {
    padding: 54px 34px 22px;
    color: #d8e4eb;
    background: #062943;
}

.ieea-footer__main {
    max-width: 1360px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.45fr .7fr .8fr .7fr 1.15fr;
    gap: 28px;
}

.ieea-footer-brand {
    display: grid;
    grid-template-columns: 70px 1fr;
    gap: 10px 13px;
}

.ieea-footer-brand img {
    object-fit: contain;
}

.ieea-footer-brand strong,
.ieea-footer-brand span {
    display: block;
}

.ieea-footer-brand strong {
    color: #fff;
}

.ieea-footer-brand span {
    margin-top: 4px;
    color: #f1c45f;
    font-size: 11px;
}

.ieea-footer-brand p {
    grid-column: 1 / -1;
    color: #a9bfcd;
    font-size: 11px;
    line-height: 1.6;
}

.ieea-footer-column > strong,
.ieea-footer-join > strong {
    display: block;
    margin-bottom: 11px;
    color: #fff;
    font-size: 12px;
}

.ieea-footer-column a {
    display: block;
    margin: 7px 0;
    color: #b8cbd7;
    text-decoration: none;
    font-size: 11px;
}

.ieea-footer-join p {
    color: #a9bfcd;
    font-size: 11px;
    line-height: 1.6;
}

.ieea-footer__bottom {
    max-width: 1360px;
    margin: 33px auto 0;
    padding-top: 17px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    border-top: 1px solid rgba(255,255,255,.10);
    color: #839fae;
    font-size: 10px;
}

/* Auth / member branding */
.auth-brand-link {
    display: inline-flex;
    gap: 11px;
    align-items: center;
    text-decoration: none;
    color: var(--ink);
}

.auth-brand-logo {
    width: 49px;
    height: 49px;
    object-fit: contain;
}

.member-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--ink);
    text-decoration: none;
}

.member-brand img {
    object-fit: contain;
}

/* Responsive */
@media (max-width: 1200px) {
    .ieea-header__inner {
        flex-wrap: wrap;
    }

    .ieea-brand {
        min-width: 330px;
    }

    .ieea-nav {
        order: 4;
        width: 100%;
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 4px;
    }

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

    .ieea-hero__left {
        padding: 60px 30px;
    }

    .ieea-hero__image {
        min-height: 520px;
    }

    .ieea-hero__image img {
        min-height: 520px;
    }

    .ieea-sector-cards {
        grid-template-columns: repeat(4, 1fr);
    }

    .ieea-principles-strip {
        grid-template-columns: repeat(2, 1fr);
    }

    .ieea-principles-strip article {
        border-right: 0;
        border-bottom: 1px solid var(--ieea-line);
    }

    .ieea-footer__main {
        grid-template-columns: 1.4fr 1fr 1fr;
    }

    .ieea-footer-join {
        grid-column: 1 / -1;
    }
}

@media (max-width: 800px) {
    .ieea-topbar__inner {
        padding-left: 14px;
        padding-right: 14px;
    }

    .topbar-right {
        display: none;
    }

    .ieea-header__inner {
        min-height: 72px;
        padding: 7px 14px;
        flex-wrap: nowrap;
    }

    .ieea-brand {
        min-width: 0;
        flex: 1;
    }

    .ieea-brand img {
        width: 52px;
        height: 52px;
    }

    .ieea-brand__copy strong {
        font-size: 14px;
    }

    .ieea-brand__hindi {
        font-size: 11px;
    }

    .ieea-brand__copy small {
        display: none;
    }

    .ieea-nav-toggle {
        display: block;
        order: 2;
    }

    .ieea-header-actions {
        order: 3;
    }

    .ieea-login-link {
        display: none;
    }

    .ieea-header-actions .ieea-btn {
        min-height: 40px;
        padding: 0 11px;
        font-size: 11px;
    }

    .ieea-nav {
        position: absolute;
        top: 100%;
        left: 12px;
        right: 12px;
        width: auto;
        display: none;
        flex-direction: column;
        padding: 9px;
        border: 1px solid var(--ieea-line);
        border-radius: 13px;
        background: #fff;
        box-shadow: var(--ieea-shadow);
    }

    .ieea-nav.is-open {
        display: flex;
    }

    .ieea-nav a {
        width: 100%;
        padding: 12px;
    }

    .ieea-hero__left {
        padding: 50px 18px;
    }

    .ieea-hero h1 {
        font-size: 46px;
    }

    .ieea-hero-hindi {
        font-size: 17px;
    }

    .ieea-hero-summary {
        font-size: 15px;
    }

    .ieea-hero-actions .ieea-btn {
        width: 100%;
    }

    .ieea-hero-assurances {
        grid-template-columns: 1fr 1fr;
    }

    .ieea-hero__image {
        min-height: 420px;
    }

    .ieea-hero__image img {
        min-height: 420px;
    }

    .ieea-hero__image::after {
        right: 20px;
        bottom: 22px;
        font-size: 17px;
    }

    .ieea-concern-wrap {
        margin: 0;
        padding: 30px 16px;
        border-radius: 0;
    }

    .ieea-section-head--left {
        align-items: flex-start;
        flex-direction: column;
    }

    .ieea-sector-section {
        grid-template-columns: 1fr;
        padding: 35px 16px;
    }

    .ieea-sector-cards {
        grid-template-columns: 1fr 1fr;
    }

    .ieea-principles-strip {
        grid-template-columns: 1fr;
        padding-left: 16px;
        padding-right: 16px;
    }

    .ieea-union-trust,
    .ieea-activity-section,
    .ieea-two-col,
    .ieea-zero-tolerance {
        grid-template-columns: 1fr;
    }

    .ieea-growth-grid,
    .ieea-value-grid,
    .ieea-support-grid,
    .ieea-escalation-grid,
    .ieea-calendar-grid {
        grid-template-columns: 1fr;
    }

    .ieea-who-grid,
    .ieea-who-grid.page-list {
        grid-template-columns: 1fr;
    }

    .ieea-privacy-banner {
        margin-left: 14px;
        margin-right: 14px;
        grid-template-columns: 1fr;
    }

    .ieea-final-cta {
        grid-template-columns: 1fr;
    }

    .ieea-final-action {
        text-align: left;
    }

    .ieea-final-action .ieea-btn {
        width: 100%;
    }

    .ieea-page-cta {
        flex-direction: column;
        align-items: stretch;
    }

    .ieea-page-cta .ieea-btn {
        width: 100%;
    }

    .zero-tolerance-list {
        grid-template-columns: 1fr;
    }

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

    .ieea-footer-brand,
    .ieea-footer-join {
        grid-column: 1 / -1;
    }

    .ieea-footer__bottom {
        flex-direction: column;
    }
}

@media (max-width: 460px) {
    .ieea-brand__hindi {
        display: none;
    }

    .ieea-brand__copy strong {
        max-width: 160px;
        font-size: 12px;
    }

    .ieea-header-actions .ieea-btn {
        padding: 0 8px;
    }

    .ieea-hero h1 {
        font-size: 39px;
    }

    .ieea-hero-assurances {
        grid-template-columns: 1fr;
    }

    .ieea-sector-cards {
        grid-template-columns: 1fr;
    }

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

    .ieea-footer-brand,
    .ieea-footer-join {
        grid-column: 1;
    }
}



/* ===============================================================
   IEEA V2 — MOBILE-FIRST READABILITY + VISUAL PUBLIC PAGES
   =============================================================== */

/* Base readability on public pages */
.ieea-public-body {
    font-size: 16px;
}

.ieea-public-body p,
.ieea-public-body li {
    font-size: 16px;
    line-height: 1.72;
}

.ieea-kicker,
.ieea-overline {
    font-size: 13px;
    line-height: 1.4;
}

/* Use uploaded cleaned logo without clipping/overlap */
.ieea-brand {
    min-width: 430px;
}

.ieea-brand img {
    width: 76px;
    height: 76px;
    object-fit: contain;
    border-radius: 10px;
    background: #fff;
}

.ieea-brand__copy strong {
    font-size: 21px;
}

.ieea-brand__hindi {
    font-size: 16px;
}

/* Full homepage image: never crop */
.ieea-hero {
    min-height: 0;
    align-items: stretch;
}

.ieea-hero__image {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px 24px;
    min-height: 0;
    overflow: visible;
    background:
        radial-gradient(circle at 70% 50%, rgba(239,177,55,.18), transparent 35%),
        linear-gradient(135deg, #edf6fb, #fff7e8);
}

.ieea-hero__image img {
    width: 100%;
    height: auto;
    min-height: 0;
    max-height: none;
    object-fit: contain;
    border-radius: 22px;
    box-shadow: 0 22px 58px rgba(13,53,83,.13);
}

.ieea-hero__image::after {
    right: 45px;
    bottom: 55px;
}

.ieea-hero-summary {
    font-size: 18px;
}

.ieea-hero-assurances strong {
    font-size: 13px;
}

.ieea-hero-assurances small {
    font-size: 11px;
    line-height: 1.35;
}

/* How IEEA Works — old-site style large slider */
.ieea-how-section {
    padding: 82px max(22px, calc((100vw - 1280px) / 2 + 22px));
    background:
        radial-gradient(circle at 12% 0%, rgba(29,126,174,.09), transparent 28%),
        #f4f8f7;
}

.ieea-how-slider {
    position: relative;
    max-width: 1120px;
    min-height: 365px;
    margin: 0 auto;
}

.ieea-how-slide {
    min-height: 320px;
    display: none;
    grid-template-columns: 130px 1fr;
    gap: 32px;
    align-items: center;
    padding: 42px;
    border-radius: 25px;
    color: #fff;
    background:
        radial-gradient(circle at 85% 15%, rgba(255,255,255,.12), transparent 25%),
        linear-gradient(120deg, #0a4b84, #087b56);
    box-shadow: 0 24px 60px rgba(8,59,83,.16);
}

.ieea-how-slide.is-active {
    display: grid;
    animation: ieeaHowFade .28s ease;
}

@keyframes ieeaHowFade {
    from { opacity: .2; transform: translateY(7px); }
    to { opacity: 1; transform: translateY(0); }
}

.how-number {
    width: 100px;
    height: 100px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255,255,255,.35);
    border-radius: 28px;
    color: #ffd36b;
    font-size: 32px;
    font-weight: 950;
}

.how-copy > span {
    color: #ffd36b;
    font-size: 13px;
    font-weight: 950;
    letter-spacing: .12em;
}

.how-copy h3 {
    max-width: 760px;
    margin: 9px 0 12px;
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.08;
}

.how-copy p {
    max-width: 790px;
    margin: 0;
    color: #e3f0ed;
    font-size: 17px;
    line-height: 1.7;
}

.how-copy a {
    display: inline-block;
    margin-top: 20px;
    color: #fff;
    font-size: 16px;
    font-weight: 900;
}

.ieea-how-controls {
    margin-top: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
}

.ieea-how-controls > button {
    width: 46px;
    height: 46px;
    border: 1px solid #bfd0d7;
    border-radius: 50%;
    color: var(--ieea-navy);
    background: #fff;
    font-size: 20px;
    cursor: pointer;
}

.how-dots {
    display: flex;
    gap: 8px;
}

.how-dots button {
    width: 9px;
    height: 9px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: #abc2bd;
    cursor: pointer;
}

.how-dots button.is-active {
    width: 28px;
    border-radius: 999px;
    background: var(--ieea-green);
}

/* Workplace cards become easier to read */
.ieea-issue-card h3 {
    font-size: 16px;
    line-height: 1.45;
}

.ieea-issue-card a {
    min-height: 44px;
    font-size: 14px;
}

/* Interior page image heroes */
.ieea-page-hero {
    position: relative;
    overflow: hidden;
    min-height: 420px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-top: 150px;
    padding-bottom: 55px;
    color: #fff;
    text-align: left;
    background-position: center;
    background-size: cover;
}

.ieea-page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(3,35,67,.86) 0%, rgba(3,35,67,.72) 48%, rgba(3,35,67,.25) 100%),
        linear-gradient(0deg, rgba(2,27,49,.45), transparent 65%);
}

.ieea-page-hero > * {
    position: relative;
    z-index: 2;
    margin-left: 0;
    margin-right: auto;
    text-align: left;
}

.ieea-page-hero h1 {
    max-width: 900px;
    margin-left: 0;
    color: #fff;
    font-size: clamp(46px, 5.5vw, 72px);
}

.ieea-page-hero p {
    max-width: 780px;
    margin-left: 0;
    color: #edf5f8;
    font-size: 18px;
}

.ieea-page-hero .ieea-kicker {
    color: #ffd16a;
}

.ieea-page-hero--about,
.ieea-page-hero--faq,
.ieea-page-hero--privacy {
    background-image: url("../images/ieea-hero-full.jpg");
}

.ieea-page-hero--represent {
    background-image: url("../images/ieea-energy-collage.jpg");
}

.ieea-page-hero--support {
    background-image: url("../images/ieea-member-support.jpg");
}

.ieea-page-hero--growth,
.ieea-page-hero--activities {
    background-image: url("../images/ieea-growth.jpg");
}

.ieea-page-hero--resources {
    background-image: url("../images/ieea-resources.jpg");
}

/* Image-based energy-sector tiles */
.ieea-sector-visual-grid {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.sector-visual {
    position: relative;
    min-height: 280px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    border-radius: 19px;
    background-image:
        linear-gradient(0deg, rgba(4,33,58,.90) 0%, rgba(4,33,58,.18) 70%),
        url("../images/ieea-energy-collage.jpg");
    background-size: 420% 100%;
    box-shadow: 0 14px 35px rgba(13,53,83,.11);
}

.sector-power      { background-position: 82% center; }
.sector-petroleum  { background-position: 5% center; }
.sector-oilgas     { background-position: 18% center; }
.sector-renewable  { background-position: 96% center; }
.sector-conventional { background-position: 10% center; filter: saturate(.72); }
.sector-nuclear    { background-position: 30% center; }
.sector-projects   { background-position: 52% center; }
.sector-emerging   { background-position: 92% center; }

.sector-visual > div {
    position: relative;
    z-index: 2;
    padding: 22px;
    color: #fff;
}

.sector-visual span {
    display: block;
    margin-bottom: 10px;
    color: #ffd266;
    font-size: 31px;
}

.sector-visual h3 {
    margin: 0 0 7px;
    font-size: 21px;
}

.sector-visual p {
    margin: 0;
    color: #e8f0f4;
    font-size: 14px;
    line-height: 1.55;
}

/* General interior content readability */
.ieea-prose p,
.ieea-mission-card p,
.ieea-value-grid p,
.ieea-support-grid p,
.ieea-escalation-grid p,
.ieea-calendar-grid p,
.ieea-rule-note,
.ieea-privacy-honesty p {
    font-size: 16px;
    line-height: 1.72;
}

.ieea-value-grid h3,
.ieea-growth-grid h3,
.ieea-support-grid strong,
.ieea-calendar-grid h3 {
    font-size: 20px;
}

.ieea-who-grid span {
    font-size: 16px;
    line-height: 1.45;
}

/* FAQ — especially mobile-readable */
.faq-list {
    max-width: 980px;
    gap: 14px;
}

.faq-list details {
    padding: 0 24px;
    border-radius: 16px;
}

.faq-list summary {
    padding: 23px 0;
    font-size: 20px;
    line-height: 1.45;
}

.faq-list p {
    margin: -2px 0 23px;
    color: var(--ieea-text);
    font-size: 17px;
    line-height: 1.78;
}

/* Footer readability */
.ieea-footer-column > strong,
.ieea-footer-join > strong {
    font-size: 15px;
}

.ieea-footer-column a,
.ieea-footer-join p,
.ieea-footer-brand p {
    font-size: 14px;
    line-height: 1.6;
}

/* Tablet */
@media (max-width: 1200px) {
    .ieea-brand {
        min-width: 360px;
    }

    .ieea-sector-visual-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile first/readability */
@media (max-width: 800px) {

    .ieea-public-body {
        font-size: 17px;
    }

    .ieea-public-body p,
    .ieea-public-body li {
        font-size: 17px;
        line-height: 1.72;
    }

    .ieea-topbar__inner {
        min-height: 42px;
        font-size: 13px;
    }

    .ieea-brand {
        min-width: 0;
    }

    .ieea-brand img {
        width: 54px;
        height: 54px;
    }

    .ieea-brand__copy strong {
        max-width: 190px;
        font-size: 14px;
        line-height: 1.2;
    }

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

    .ieea-hero__left {
        padding: 44px 18px 30px;
    }

    .ieea-hero h1 {
        font-size: clamp(42px, 12vw, 58px);
        line-height: 1.01;
    }

    .ieea-hero-hindi {
        font-size: 20px;
        line-height: 1.4;
    }

    .ieea-hero-summary {
        font-size: 18px;
        line-height: 1.7;
    }

    .ieea-hero__image {
        padding: 14px;
    }

    .ieea-hero__image img {
        border-radius: 16px;
    }

    .ieea-hero__image::after {
        position: static;
        display: block;
        margin-top: 10px;
        max-width: none;
        transform: none;
        font-size: 18px;
        text-align: center;
    }

    .ieea-hero-assurances strong {
        font-size: 14px;
    }

    .ieea-hero-assurances small {
        font-size: 12px;
    }

    .ieea-section-head h2 {
        font-size: 34px;
    }

    .ieea-section-head p {
        font-size: 17px;
    }

    .ieea-how-section {
        padding: 58px 15px;
    }

    .ieea-how-slider {
        min-height: 0;
    }

    .ieea-how-slide {
        min-height: 470px;
        grid-template-columns: 1fr;
        gap: 20px;
        align-content: start;
        padding: 27px 21px;
    }

    .how-number {
        width: 70px;
        height: 70px;
        border-radius: 20px;
        font-size: 23px;
    }

    .how-copy > span {
        font-size: 12px;
    }

    .how-copy h3 {
        font-size: 32px;
        line-height: 1.12;
    }

    .how-copy p {
        font-size: 17px;
        line-height: 1.72;
    }

    .how-copy a {
        font-size: 16px;
    }

    .ieea-concern-wrap {
        padding: 50px 15px;
    }

    .ieea-issue-slider {
        grid-auto-columns: minmax(82vw, 82vw);
    }

    .ieea-issue-card {
        min-height: 250px;
        padding: 22px 18px 17px;
    }

    .ieea-issue-card h3 {
        font-size: 19px;
        line-height: 1.45;
    }

    .ieea-issue-card a {
        min-height: 48px;
        font-size: 15px;
    }

    .ieea-page-hero {
        min-height: 500px;
        justify-content: flex-end;
        padding: 130px 18px 44px;
        background-position: center;
    }

    .ieea-page-hero::before {
        background:
            linear-gradient(0deg, rgba(3,35,67,.92) 0%, rgba(3,35,67,.70) 58%, rgba(3,35,67,.28) 100%);
    }

    .ieea-page-hero h1 {
        font-size: 43px;
        line-height: 1.08;
    }

    .ieea-page-hero p {
        font-size: 18px;
        line-height: 1.68;
    }

    .ieea-sector-visual-grid {
        grid-template-columns: 1fr;
    }

    .sector-visual {
        min-height: 330px;
    }

    .sector-visual h3 {
        font-size: 25px;
    }

    .sector-visual p {
        font-size: 16px;
    }

    .ieea-prose p,
    .ieea-value-grid p,
    .ieea-growth-grid p,
    .ieea-support-grid p,
    .ieea-escalation-grid p,
    .ieea-calendar-grid p,
    .ieea-rule-note,
    .ieea-privacy-honesty p {
        font-size: 17px;
    }

    .ieea-value-grid h3,
    .ieea-growth-grid h3,
    .ieea-support-grid strong,
    .ieea-calendar-grid h3 {
        font-size: 22px;
    }

    .faq-list details {
        padding: 0 18px;
    }

    .faq-list summary {
        padding: 22px 0;
        font-size: 19px;
        line-height: 1.48;
    }

    .faq-list p {
        margin-bottom: 22px;
        font-size: 17px;
        line-height: 1.75;
    }

    .ieea-footer-column a,
    .ieea-footer-join p,
    .ieea-footer-brand p {
        font-size: 15px;
    }
}

@media (max-width: 460px) {
    .ieea-brand__copy strong {
        max-width: 155px;
        font-size: 12px;
    }

    .ieea-brand img {
        width: 48px;
        height: 48px;
    }

    .ieea-hero h1 {
        font-size: 39px;
    }

    .ieea-page-hero h1 {
        font-size: 38px;
    }
}
