* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: #f7f9fc;
    color: #1f2937;
}

.website-wrap {
    width: min(1280px, calc(100% - 32px));
    margin: 0 auto;
}

.website-topbar {
    background: #111827;
    color: #d1d5db;
    font-size: 13px;
}

.website-topbar-inner {
    min-height: 34px;
    display: flex;
    align-items: center;
    gap: 22px;
}

.website-main-header {
    min-height: 74px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.website-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #166534;
    font-weight: 900;
    text-decoration: none;
    font-size: 22px;
}

.website-logo-mark {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: #22c55e;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    box-shadow: 0 12px 26px rgba(34, 197, 94, .25);
}

.website-header-actions {
    display: flex;
    gap: 10px;
}

.website-nav {
    background: #ffffff;
    border-top: 1px solid #edf1f7;
    border-bottom: 1px solid #edf1f7;
}

.website-nav-inner {
    min-height: 58px;
    display: flex;
    align-items: center;
    gap: 34px;
}

.website-nav a {
    color: #374151;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
}

.website-nav a.active,
.website-nav a:hover {
    color: #16a34a;
}

.website-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 10px 18px;
    border-radius: 9px;
    text-decoration: none;
    font-weight: 800;
    transition: .2s ease;
}

.website-btn:hover {
    transform: translateY(-1px);
}

.website-btn-primary {
    background: #22c55e;
    color: #ffffff;
    box-shadow: 0 12px 24px rgba(34, 197, 94, .22);
}

.website-btn-light {
    background: #f0fdf4;
    color: #15803d;
    border: 1px solid #dcfce7;
}

.website-hero {
    padding: 34px 0 42px;
}

.website-slider {
    position: relative;
    min-height: 380px;
    overflow: hidden;
    border-radius: 10px;
    background:
        radial-gradient(circle at 82% 42%, rgba(255,255,255,.35), transparent 18%),
        linear-gradient(120deg, #16a34a 0%, #22c55e 48%, #0f766e 100%);
    box-shadow: 0 18px 46px rgba(15, 118, 110, .18);
}

.website-slide {
    display: none;
    min-height: 380px;
    padding: 54px 72px;
    align-items: center;
    background:
        linear-gradient(90deg, rgba(255,255,255,.92), rgba(255,255,255,.18)),
        radial-gradient(circle at 76% 62%, rgba(255,255,255,.72), transparent 22%);
}

.website-slide.active {
    display: flex;
}

.website-slide-content {
    max-width: 610px;
}

.website-kicker {
    display: inline-flex;
    padding: 8px 13px;
    border-radius: 999px;
    background: rgba(34, 197, 94, .12);
    color: #15803d;
    font-size: 13px;
    font-weight: 900;
    margin-bottom: 14px;
}

.website-slide h1 {
    margin: 0 0 16px;
    font-size: 48px;
    line-height: 1.08;
    color: #111827;
    letter-spacing: -1.2px;
}

.website-slide p {
    max-width: 560px;
    margin: 0 0 24px;
    color: #4b5563;
    line-height: 1.7;
    font-size: 17px;
}

.website-slide-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.website-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 10px;
    background: rgba(255,255,255,.9);
    color: #15803d;
    font-size: 30px;
    cursor: pointer;
}

.website-slider-prev {
    left: 18px;
}

.website-slider-next {
    right: 18px;
}

.website-slider-dots {
    position: absolute;
    left: 50%;
    bottom: 22px;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

.website-slider-dots button {
    width: 11px;
    height: 11px;
    border: 0;
    border-radius: 999px;
    background: rgba(255,255,255,.72);
    cursor: pointer;
}

.website-slider-dots button.active {
    width: 28px;
    background: #22c55e;
}

.website-section {
    padding: 42px 0;
}

.website-section-header {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 22px;
}

.website-section-header h2,
.website-package-inner h2 {
    margin: 0;
    font-size: 30px;
    color: #111827;
}

.website-section-header p,
.website-package-inner p {
    margin: 8px 0 0;
    color: #6b7280;
}

.website-feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.website-feature-card {
    background: #ffffff;
    border: 1px solid #edf1f7;
    border-radius: 10px;
    padding: 22px;
    box-shadow: 0 10px 30px rgba(17, 24, 39, .05);
}

.website-feature-card span {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: #f0fdf4;
    color: #16a34a;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
}

.website-feature-card h3 {
    margin: 16px 0 8px;
    color: #111827;
}

.website-feature-card p {
    margin: 0;
    color: #6b7280;
    line-height: 1.6;
}

.website-package-preview {
    padding-bottom: 72px;
}

.website-package-inner {
    background: #ffffff;
    border: 1px solid #edf1f7;
    border-radius: 10px;
    padding: 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.website-footer {
    border-top: 1px solid #edf1f7;
    background: #ffffff;
    color: #6b7280;
    padding: 24px 0;
}

.website-footer-inner {
    display: flex;
    justify-content: space-between;
    gap: 14px;
}

@media (max-width: 900px) {
    .website-main-header,
    .website-section-header,
    .website-package-inner,
    .website-footer-inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .website-nav-inner {
        gap: 18px;
        overflow-x: auto;
    }

    .website-slide {
        padding: 44px 22px 68px;
    }

    .website-slide h1 {
        font-size: 34px;
    }

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

    .website-slider-btn {
        display: none;
    }
}


/* ===== PHASE 2E SLIDER FIX ===== */

.website-slide {
    position: relative;
    min-height: 420px;
    display: none;
    border-radius: 10px;
    overflow: hidden;
}

.website-slide.active {
    display: block;
}

.website-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.25) 50%, transparent 100%);
    z-index: 1;
}

.website-slide-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    padding: 60px;
    color: #fff;
}

.website-slide-content h1 {
    font-size: 48px;
    margin-bottom: 12px;
    color: #fff;
}

.website-slide-content p {
    color: #f1f5f9;
    font-size: 16px;
    line-height: 1.7;
}

.website-slide-content .website-btn {
    margin-top: 15px;
}

/* ===== PHASE 2E-2 SLIDER IMAGE FIT FIX ===== */

.website-slider {
    width: min(1280px, calc(100vw - 32px));
    max-width: 1280px;
    margin: 0 auto;
    min-height: 420px;
    border-radius: 10px;
    overflow: hidden;
}

.website-slide {
    width: 100%;
    min-height: 420px;
    background-repeat: no-repeat !important;
    background-size: contain !important;
    background-position: center center !important;
    background-color: #f8fafc;
}

.website-slide.active {
    display: block;
}

.website-slide::before {
    background: linear-gradient(90deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.18) 46%, rgba(0,0,0,0.05) 100%);
}

@media (max-width: 900px) {
    .website-slider,
    .website-slide {
        min-height: 300px;
    }

    .website-slide {
        background-size: cover !important;
    }
}

/* ===== PHASE 2F PURE IMAGE SLIDER ===== */

.website-hero {
    padding: 34px 0 42px;
}

.website-image-slider {
    width: 100%;
    max-width: 1280px;
    min-height: auto;
    margin: 0 auto;
    border-radius: 10px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 18px 46px rgba(17, 24, 39, .10);
}

.website-image-slide {
    display: none;
    width: 100%;
    min-height: 0;
    background: #ffffff !important;
}

.website-image-slide.active {
    display: block;
}

.website-image-slide::before {
    display: none !important;
}

.website-slide-image-link {
    display: block;
    width: 100%;
    min-height: 180px;
    background: #f8fafc;
    text-decoration: none;
    color: #6b7280;
}

.website-slide-image-link img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 430px;
    object-fit: contain;
    object-position: center;
    background: #ffffff;
}

.website-slide-empty {
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.website-slider-btn {
    z-index: 5;
}

.website-slider-dots {
    z-index: 6;
}

@media (max-width: 900px) {
    .website-hero {
        padding: 18px 0 28px;
    }

    .website-slide-image-link img {
        max-height: 260px;
    }
}

/* ===== PHASE 2F-2 9:4 BANNER RATIO ===== */

/* container */
.website-image-slider {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    border-radius: 10px;
    overflow: hidden;
}

/* slide = fixed ratio */
.website-image-slide {
    display: none;
    width: 100%;
    aspect-ratio: 9 / 4;
    position: relative;
    background: #000;
}

.website-image-slide.active {
    display: block;
}

/* clickable area */
.website-slide-image-link {
    position: absolute;
    inset: 0;
    display: block;
}

/* image fit full */
.website-slide-image-link img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* IMPORTANT */
    object-position: center;
}

/* remove old limits */
.website-slide-image-link img {
    max-height: none !important;
}

/* mobile adjust */
@media (max-width: 900px) {
    .website-image-slide {
        aspect-ratio: 9 / 5;
    }
}

/* ===== PHASE 2F-4 HIDE SLIDER ARROWS ===== */
.website-slider-btn,
.website-slider-prev,
.website-slider-next {
    display: none !important;
}

/* ===== PHASE 2F-4 HIDE SLIDER ARROWS ===== */
.website-slider-btn,
.website-slider-prev,
.website-slider-next {
    display: none !important;
}

/* ===== PHASE 2I LIVE STATS SECTION ===== */

.website-live-stats {
    margin-top: -34px;
    padding: 0 0 42px;
    position: relative;
    z-index: 4;
}

.website-live-stats-card {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    background: rgba(255, 255, 255, .96);
    border: 1px solid #e8eef6;
    border-radius: 16px;
    box-shadow: 0 22px 55px rgba(15, 23, 42, .10);
    overflow: hidden;
}

.website-live-stat-item {
    padding: 24px 18px;
    text-align: center;
    border-right: 1px solid #e8eef6;
}

.website-live-stat-item:last-child {
    border-right: 0;
}

.website-live-stat-item span {
    display: block;
    color: #16a34a;
    font-size: 30px;
    line-height: 1;
    font-weight: 950;
    letter-spacing: -1px;
}

.website-live-stat-item p {
    margin: 8px 0 0;
    color: #64748b;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .5px;
}

@media (max-width: 900px) {
    .website-live-stats {
        margin-top: -16px;
        padding-bottom: 30px;
    }

    .website-live-stats-card {
        grid-template-columns: repeat(2, 1fr);
    }

    .website-live-stat-item:nth-child(2) {
        border-right: 0;
    }

    .website-live-stat-item:nth-child(1),
    .website-live-stat-item:nth-child(2) {
        border-bottom: 1px solid #e8eef6;
    }
}

@media (max-width: 520px) {
    .website-live-stat-item {
        padding: 18px 12px;
    }

    .website-live-stat-item span {
        font-size: 24px;
    }

    .website-live-stat-item p {
        font-size: 11px;
    }
}

/* ===== PHASE 2I-2 SPACING FIX ===== */

.website-live-stats {
    margin-top: 24px !important; /* from negative to positive */
    padding: 20px 0 50px;
}

/* optional: add breathing space below slider */
.website-hero {
    padding-bottom: 20px !important;
}

/* smoother card feel */
.website-live-stats-card {
    border-radius: 18px;
    box-shadow:
        0 30px 70px rgba(15, 23, 42, .12),
        0 10px 25px rgba(15, 23, 42, .06);
}

/* ===== PHASE 2I-3 PROFESSIONAL LANDING ENHANCEMENT ===== */

body,
.website-public {
    font-family: Inter, "Segoe UI", Roboto, Arial, sans-serif !important;
    background: linear-gradient(180deg, #f6f8fb 0%, #ffffff 45%, #f8fafc 100%) !important;
    color: #0f172a !important;
    -webkit-font-smoothing: antialiased;
    text-rendering: geometricPrecision;
}

.website-wrap {
    width: min(1180px, calc(100% - 36px)) !important;
}

.website-topbar {
    background: #0f172a !important;
    font-size: 12px !important;
    letter-spacing: .15px;
}

.website-main-header {
    min-height: 78px !important;
}

.website-logo {
    font-size: 23px !important;
    letter-spacing: -.4px;
}

.website-logo-mark {
    border-radius: 12px !important;
}

.website-nav-inner {
    min-height: 54px !important;
    gap: 32px !important;
}

.website-nav a {
    font-size: 14px !important;
    font-weight: 800 !important;
    letter-spacing: -.1px;
}

.website-hero {
    padding: 28px 0 34px !important;
}

.website-image-slider {
    border-radius: 14px !important;
    border: 1px solid rgba(226, 232, 240, .95) !important;
    box-shadow:
        0 28px 80px rgba(15, 23, 42, .14),
        0 8px 20px rgba(15, 23, 42, .06) !important;
}

.website-live-stats {
    margin-top: 18px !important;
    padding: 16px 0 58px !important;
}

.website-live-stats-card {
    border-radius: 14px !important;
    border: 1px solid #e8eef6 !important;
    box-shadow:
        0 18px 50px rgba(15, 23, 42, .09),
        0 4px 12px rgba(15, 23, 42, .04) !important;
}

.website-live-stat-item {
    padding: 22px 18px !important;
    background: rgba(255,255,255,.98);
}

.website-live-stat-item span {
    color: #16a34a !important;
    font-size: 28px !important;
    font-weight: 950 !important;
    letter-spacing: -1.2px !important;
}

.website-live-stat-item p {
    margin-top: 9px !important;
    color: #64748b !important;
    font-size: 11px !important;
    font-weight: 900 !important;
    letter-spacing: .8px !important;
}

.website-section {
    padding: 26px 0 64px !important;
}

.website-section-header {
    margin-bottom: 24px !important;
    align-items: flex-end !important;
}

.website-section-header h2 {
    font-size: 30px !important;
    line-height: 1.15 !important;
    font-weight: 950 !important;
    letter-spacing: -1px !important;
    color: #0f172a !important;
}

.website-section-header p {
    font-size: 14px !important;
    color: #64748b !important;
    font-weight: 500 !important;
}

.website-feature-grid {
    gap: 18px !important;
}

.website-feature-card {
    display: block !important;
    min-height: 168px !important;
    padding: 24px 22px !important;
    border-radius: 14px !important;
    background:
        linear-gradient(180deg, #ffffff 0%, #fbfdff 100%) !important;
    border: 1px solid #e8eef6 !important;
    box-shadow:
        0 18px 44px rgba(15, 23, 42, .06),
        0 2px 8px rgba(15, 23, 42, .03) !important;
}

.website-feature-card:hover {
    transform: translateY(-4px) !important;
    border-color: #bbf7d0 !important;
    box-shadow:
        0 26px 65px rgba(15, 23, 42, .10),
        0 8px 22px rgba(34, 197, 94, .10) !important;
}

.website-feature-card span {
    width: 42px !important;
    height: 42px !important;
    border-radius: 12px !important;
    margin-bottom: 16px !important;
    font-size: 13px !important;
    font-weight: 950 !important;
    background: #ecfdf3 !important;
    color: #16a34a !important;
}

.website-feature-card span::before {
    content: none !important;
}

.website-feature-card h3 {
    margin: 0 0 9px !important;
    color: #0f172a !important;
    font-size: 17px !important;
    line-height: 1.25 !important;
    font-weight: 900 !important;
    letter-spacing: -.35px !important;
}

.website-feature-card p {
    color: #64748b !important;
    font-size: 14px !important;
    line-height: 1.68 !important;
    font-weight: 500 !important;
}

.website-footer {
    padding: 22px 0 !important;
    background: #ffffff !important;
}

.website-footer-inner {
    color: #64748b !important;
    font-size: 13px !important;
    font-weight: 500 !important;
}

@media (max-width: 900px) {
    .website-wrap {
        width: min(100% - 24px, 1180px) !important;
    }

    .website-section-header {
        align-items: flex-start !important;
    }

    .website-section-header h2 {
        font-size: 26px !important;
    }

    .website-live-stats-card {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

/* ===== PHASE 2G-2 RADIUS FIX ===== */

.website-image-slider,
.website-live-stats-card,
.website-feature-card,
.website-slide,
.website-image-slide,
.website-footer,
.website-nav,
.website-logo-mark {
    border-radius: 4px !important;
}

/* remove overly rounded look */
.website-feature-card span {
    border-radius: 4px !important;
}

/* ===== WEBSITE THEME CONTROL SUPPORT ===== */
.website-logo-img {
    max-height: 52px;
    max-width: 190px;
    object-fit: contain;
}

.website-social-links {
    display: inline-flex;
    align-items: center;
    gap: 14px;
}

.website-social-links a {
    color: #16a34a;
    text-decoration: none;
    font-weight: 800;
    font-size: 13px;
}

.website-social-links a:hover {
    text-decoration: underline;
}

/* ===== PHASE 3B PACKAGES SECTION ===== */

.website-packages-section {
    padding-top: 22px !important;
}

.website-package-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.website-package-card {
    background: #ffffff;
    border: 1px solid #e8eef6;
    border-radius: 4px;
    padding: 24px;
    box-shadow: 0 18px 44px rgba(15, 23, 42, .06);
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.website-package-card:hover {
    transform: translateY(-4px);
    border-color: var(--website-main-color, #16a34a);
    box-shadow: 0 26px 65px rgba(15, 23, 42, .10);
}

.website-package-card.featured {
    border-color: var(--website-main-color, #16a34a);
    box-shadow: 0 24px 60px rgba(34, 197, 94, .13);
}

.website-package-badge {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 5px 10px;
    border-radius: 4px;
    background: #ecfdf3;
    color: var(--website-main-color, #16a34a);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.website-package-card h3 {
    margin: 16px 0 8px;
    color: #0f172a;
    font-size: 21px;
    font-weight: 950;
    letter-spacing: -.5px;
}

.website-package-card p {
    margin: 0 0 16px;
    color: #64748b;
    line-height: 1.65;
    font-size: 14px;
}

.website-package-card ul {
    margin: 0 0 22px;
    padding: 0;
    list-style: none;
}

.website-package-card li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 10px;
    color: #475569;
    font-size: 14px;
    font-weight: 600;
}

.website-package-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--website-main-color, #16a34a);
    font-weight: 950;
}

@media (max-width: 900px) {
    .website-package-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== PHASE 3C HOW IT WORKS ===== */

.website-how-it-works {
    padding-top: 20px !important;
}

.website-steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.website-step-card {
    background: #ffffff;
    border: 1px solid #e8eef6;
    border-radius: 4px;
    padding: 24px;
    text-align: center;
    box-shadow: 0 18px 44px rgba(15, 23, 42, .06);
    transition: all .2s ease;
}

.website-step-card:hover {
    transform: translateY(-4px);
    border-color: var(--website-main-color, #16a34a);
    box-shadow: 0 26px 65px rgba(15, 23, 42, .10);
}

.website-step-number {
    width: 44px;
    height: 44px;
    margin: 0 auto 14px;
    border-radius: 4px;
    background: #ecfdf3;
    color: var(--website-main-color, #16a34a);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 18px;
}

.website-step-card h3 {
    margin-bottom: 8px;
    font-size: 18px;
    font-weight: 900;
    color: #0f172a;
}

.website-step-card p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
}

@media (max-width: 900px) {
    .website-steps-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== PHASE 3D CTA SECTION ===== */

.website-cta-section {
    padding: 26px 0 70px !important;
}

.website-cta-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 34px;
    border-radius: 4px;
    background:
        radial-gradient(circle at 86% 30%, rgba(255,255,255,.20), transparent 26%),
        linear-gradient(135deg, #0f172a 0%, #14532d 100%);
    color: #ffffff;
    box-shadow: 0 28px 70px rgba(15, 23, 42, .18);
}

.website-cta-kicker {
    display: inline-flex;
    margin-bottom: 10px;
    color: #bbf7d0;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .7px;
}

.website-cta-card h2 {
    margin: 0;
    max-width: 650px;
    color: #ffffff;
    font-size: 32px;
    line-height: 1.15;
    font-weight: 950;
    letter-spacing: -1px;
}

.website-cta-card p {
    margin: 12px 0 0;
    max-width: 620px;
    color: #d1fae5;
    font-size: 15px;
    line-height: 1.65;
}

.website-cta-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    flex: 0 0 auto;
}

.website-cta-card .website-btn-light {
    background: rgba(255,255,255,.12) !important;
    color: #ffffff !important;
    border-color: rgba(255,255,255,.24) !important;
}

@media (max-width: 900px) {
    .website-cta-card {
        align-items: flex-start;
        flex-direction: column;
        padding: 26px;
    }

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

    .website-cta-actions,
    .website-cta-actions .website-btn {
        width: 100%;
    }
}

/* ===== PHASE 3E FAQ SECTION ===== */

.website-faq-list {
    max-width: 820px;
    margin: 0 auto;
}

.website-faq-item {
    border-bottom: 1px solid #e8eef6;
}

.website-faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: 0;
    padding: 18px 0;
    font-size: 16px;
    font-weight: 900;
    color: #0f172a;
    cursor: pointer;
}

.website-faq-answer {
    display: none;
    padding: 0 0 18px;
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
}

/* active state */
.website-faq-item.active .website-faq-answer {
    display: block;
}

/* ===== MEMBER LAYOUT ===== */

.shared-topbar {
    background: #ffffff;
    border-bottom: 1px solid #e8eef6;
}

.shared-topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 64px;
}

.shared-nav {
    display: flex;
    gap: 18px;
}

.shared-nav a {
    font-weight: 700;
    color: #0f172a;
    text-decoration: none;
}

.shared-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.member-content {
    padding: 30px 0;
}

.shared-footer {
    border-top: 1px solid #e8eef6;
    padding: 20px 0;
    text-align: center;
    color: #64748b;
}

/* ===== PHASE 4C SHARED WEBSITE + MEMBER TOPBAR/FOOTER ===== */

.shared-topbar {
    background: #ffffff;
    border-bottom: 1px solid #e8eef6;
}

.shared-mainbar {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.shared-nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.shared-nav a {
    color: #0f172a;
    text-decoration: none;
    font-size: 14px;
    font-weight: 850;
    letter-spacing: -.15px;
}

.shared-nav a.active,
.shared-nav a:hover {
    color: var(--website-main-color, #16a34a);
}

.shared-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.shared-user {
    color: #475569;
    font-size: 13px;
    font-weight: 850;
    max-width: 140px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.shared-logout-form {
    margin: 0;
}

.shared-footer {
    border-top: 1px solid #e8eef6;
    background: #ffffff;
    padding: 22px 0;
    color: #64748b;
}

.shared-footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    font-size: 13px;
    font-weight: 600;
}

.member-layout {
    min-height: 100vh;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 52%, #f8fafc 100%);
}

.member-content {
    min-height: calc(100vh - 165px);
    padding: 34px 0 60px;
}

@media (max-width: 900px) {
    .shared-mainbar,
    .shared-footer-inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .shared-nav {
        width: 100%;
        gap: 18px;
        overflow-x: auto;
        padding-bottom: 4px;
    }

    .shared-actions {
        width: 100%;
        flex-wrap: wrap;
    }

    .shared-actions .website-btn {
        flex: 1;
    }
}

/* ===== PHASE 4C-2 TOPBAR ALIGNMENT FIX ===== */

/* main container */
.shared-mainbar {
    display: flex;
    align-items: center;
    justify-content: flex-start; /* IMPORTANT */
    gap: 30px;
}

/* logo stays left */
.website-logo {
    flex: 0 0 auto;
}

/* nav goes beside logo */
.shared-nav {
    display: flex;
    align-items: center;
    gap: 26px;
    margin-left: 10px;
}

/* push actions to far right */
.shared-actions {
    margin-left: auto; /* IMPORTANT */
    display: flex;
    align-items: center;
    gap: 10px;
}

/* ===== PHASE 4C-3 AVATAR DROPDOWN TOPBAR ===== */

.shared-avatar-dropdown {
    position: relative;
}

.shared-avatar-btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    min-height: 42px;
    padding: 5px 9px 5px 5px;
    background: #ffffff;
    border: 1px solid #e8eef6;
    border-radius: 4px;
    cursor: pointer;
    box-shadow: 0 8px 22px rgba(15, 23, 42, .06);
}

.shared-avatar-circle {
    width: 32px;
    height: 32px;
    border-radius: 4px;
    background: var(--website-main-color, #16a34a);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 950;
    font-size: 14px;
}

.shared-avatar-name {
    max-width: 120px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: #0f172a;
    font-size: 13px;
    font-weight: 850;
}

.shared-avatar-caret {
    color: #64748b;
    font-size: 12px;
}

.shared-avatar-menu {
    display: none;
    position: absolute;
    right: 0;
    top: calc(100% + 10px);
    min-width: 220px;
    background: #ffffff;
    border: 1px solid #e8eef6;
    border-radius: 4px;
    box-shadow: 0 24px 70px rgba(15, 23, 42, .14);
    padding: 8px;
    z-index: 100;
}

.shared-avatar-dropdown.open .shared-avatar-menu {
    display: block;
}

.shared-avatar-menu a,
.shared-avatar-menu button {
    width: 100%;
    display: block;
    padding: 11px 12px;
    border: 0;
    background: transparent;
    border-radius: 4px;
    color: #0f172a;
    text-align: left;
    text-decoration: none;
    font-size: 13px;
    font-weight: 800;
    cursor: pointer;
}

.shared-avatar-menu a:hover,
.shared-avatar-menu button:hover {
    background: #f8fafc;
    color: var(--website-main-color, #16a34a);
}

.shared-avatar-menu form {
    margin: 4px 0 0;
    padding-top: 4px;
    border-top: 1px solid #e8eef6;
}

@media (max-width: 900px) {
    .shared-avatar-dropdown,
    .shared-avatar-btn {
        width: 100%;
    }

    .shared-avatar-btn {
        justify-content: space-between;
    }

    .shared-avatar-menu {
        left: 0;
        right: auto;
        width: 100%;
    }
}

/* ===== PHASE 4C-4 AVATAR IMAGE + ICON MENU ===== */

.shared-avatar-img {
    width: 32px;
    height: 32px;
    border-radius: 4px;
    object-fit: cover;
}

.shared-avatar-menu a,
.shared-avatar-menu button {
    display: flex;
    align-items: center;
    gap: 10px;
}

.shared-avatar-menu i {
    width: 18px;
    text-align: center;
    font-size: 14px;
    color: #64748b;
}

.shared-avatar-menu a:hover i,
.shared-avatar-menu button:hover i {
    color: var(--website-main-color, #16a34a);
}

/* ===== PHASE 4E MEMBER PACKAGE PAGE POLISH ===== */

.member-content .website-section-header {
    margin-bottom: 24px !important;
}

.member-content .website-package-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.member-content .website-package-card {
    background: #ffffff;
    border: 1px solid #e8eef6;
    border-radius: 4px !important;
    overflow: hidden;
    box-shadow: 0 18px 44px rgba(15, 23, 42, .06);
}

.member-content .website-package-image {
    aspect-ratio: 10 / 6;
    background: #f8fafc;
    border-bottom: 1px solid #e8eef6;
}

.member-content .website-package-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.member-content .website-package-body {
    padding: 22px;
}

.member-content .website-package-price {
    margin: 8px 0 16px;
    color: var(--website-main-color, #16a34a);
    font-size: 28px;
    font-weight: 950;
    letter-spacing: -1px;
}

.member-content .website-package-list {
    list-style: none;
    padding: 0;
    margin: 0 0 22px;
}

.member-content .website-package-list li {
    display: flex;
    gap: 9px;
    align-items: flex-start;
    margin-bottom: 10px;
    color: #475569;
    font-size: 14px;
    font-weight: 650;
}

.member-content .website-package-list i {
    color: var(--website-main-color, #16a34a);
}

.member-content .website-btn.w-100 {
    width: 100%;
    gap: 8px;
}

@media (max-width: 900px) {
    .member-content .website-package-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== PHASE 4F-6 TOPBAR CLEAN RESTORE ===== */

.website-logo {
    display: inline-flex !important;
    align-items: center !important;
    gap: 10px !important;
    min-width: 130px !important;
    text-decoration: none !important;
}

.website-logo-img {
    display: block !important;
    max-height: 54px !important;
    max-width: 180px !important;
    object-fit: contain !important;
}

.website-logo-mark {
    width: 42px !important;
    height: 42px !important;
    border-radius: 4px !important;
}

.website-logo-text {
    display: inline-block !important;
    color: #0f172a !important;
    font-size: 22px !important;
    font-weight: 950 !important;
}

.shared-mainbar {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 28px !important;
}

.shared-nav {
    display: flex !important;
    align-items: center !important;
    gap: 24px !important;
    margin-left: 8px !important;
}

.shared-nav a {
    display: inline-flex !important;
    align-items: center !important;
    gap: 7px !important;
    color: #0f172a !important;
    text-decoration: none !important;
    font-size: 14px !important;
    font-weight: 850 !important;
}

.shared-nav a.active,
.shared-nav a:hover {
    color: var(--website-main-color, #16a34a) !important;
}

.shared-nav i {
    font-size: 15px !important;
}

.shared-actions {
    margin-left: auto !important;
}

@media (max-width: 900px) {
    .shared-mainbar {
        align-items: flex-start !important;
        flex-direction: column !important;
        gap: 14px !important;
    }

    .shared-nav {
        width: 100% !important;
        margin-left: 0 !important;
        overflow-x: auto !important;
        gap: 18px !important;
    }

    .shared-actions {
        width: 100% !important;
        margin-left: 0 !important;
    }
}

/* ===== PHASE 4F-7 MENU BESIDE LOGO FINAL ===== */

.shared-mainbar {
    justify-content: flex-start !important;
    gap: 18px !important;
}

.website-logo {
    margin-right: 8px !important;
    min-width: auto !important;
}

.shared-nav {
    margin-left: 0 !important;
    gap: 22px !important;
}

.shared-actions {
    margin-left: auto !important;
}

/* ===== FINAL WALLET FIX ===== */

.member-content {
    max-width: 1200px !important;
    margin: 0 auto !important;
}

.admin-card {
    border-radius: 4px !important;
}

.form-control,
.form-select {
    border-radius: 4px !important;
}

.btn {
    border-radius: 4px !important;
}

.table {
    font-size: 13px;
}

/* ===== GLOBAL PAGINATION FIX ===== */

.pagination {
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
    flex-wrap: wrap !important;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
}

.pagination .page-item {
    margin: 0 !important;
}

.pagination .page-link {
    min-width: 34px !important;
    height: 34px !important;
    padding: 7px 11px !important;
    border-radius: 4px !important;
    border: 1px solid #e2e8f0 !important;
    background: #ffffff !important;
    color: #334155 !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    line-height: 18px !important;
    box-shadow: none !important;
}

.pagination .page-link:hover {
    background: #f8fafc !important;
    color: var(--website-main-color, #16a34a) !important;
    border-color: var(--website-main-color, #16a34a) !important;
}

.pagination .page-item.active .page-link {
    background: var(--website-main-color, #16a34a) !important;
    border-color: var(--website-main-color, #16a34a) !important;
    color: #ffffff !important;
}

.pagination .page-item.disabled .page-link {
    background: #f8fafc !important;
    color: #94a3b8 !important;
    border-color: #e2e8f0 !important;
    cursor: not-allowed !important;
}

nav[role="navigation"] {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 14px !important;
    flex-wrap: wrap !important;
    padding: 14px 0 0 !important;
}

nav[role="navigation"] p {
    margin: 0 !important;
    color: #64748b !important;
    font-size: 13px !important;
}

@media (max-width: 640px) {
    nav[role="navigation"] {
        justify-content: center !important;
    }

    nav[role="navigation"] p {
        width: 100% !important;
        text-align: center !important;
    }
}


/* =========================================================
   IGM MOBILE SLIDER FULL VIEW FIX
   Purpose: prevent homepage slider image crop on mobile
========================================================= */
@media (max-width: 768px) {
    .website-hero {
        padding: 16px 12px 28px !important;
    }

    .website-image-slider,
    .website-slider.website-image-slider {
        width: 100% !important;
        height: auto !important;
        min-height: 0 !important;
        aspect-ratio: auto !important;
        overflow: hidden !important;
        border-radius: 4px !important;
    }

    .website-slide,
    .website-image-slide,
    .website-image-slide.active {
        position: relative !important;
        width: 100% !important;
        height: auto !important;
        min-height: 0 !important;
        aspect-ratio: auto !important;
        overflow: visible !important;
    }

    .website-slide-image-link,
    .website-image-slide .website-slide-image-link,
    .website-image-slide.active .website-slide-image-link {
        position: relative !important;
        inset: auto !important;
        width: 100% !important;
        height: auto !important;
        min-height: 0 !important;
        display: block !important;
        overflow: visible !important;
    }

    .website-slide-image-link img,
    .website-image-slide .website-slide-image-link img,
    .website-image-slide.active .website-slide-image-link img {
        position: relative !important;
        inset: auto !important;
        width: 100% !important;
        height: auto !important;
        max-width: 100% !important;
        display: block !important;
        object-fit: contain !important;
        object-position: center center !important;
        transform: none !important;
    }

    .website-slide::before,
    .website-image-slide::before {
        display: none !important;
    }
}

/* =========================================================
   IGM MOBILE SLIDER FULL WIDE FIX
   Purpose: keep full image visible but use full mobile width
========================================================= */
@media (max-width: 768px) {
    .website-hero {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .website-hero .website-container,
    .website-hero .container,
    .website-hero .section-container {
        max-width: 100% !important;
        width: 100% !important;
        padding-left: 10px !important;
        padding-right: 10px !important;
    }

    .website-image-slider,
    .website-slider.website-image-slider {
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        background: transparent !important;
        box-shadow: none !important;
    }

    .website-slide-image-link img,
    .website-image-slide .website-slide-image-link img,
    .website-image-slide.active .website-slide-image-link img {
        width: 100% !important;
        max-width: 100% !important;
    }
}

/* =========================================================
   IGM EDGE TO EDGE SLIDER (TRUE FULL WIDTH - MOBILE)
========================================================= */
@media (max-width: 768px) {

    .website-hero {
        padding: 0 !important;
        margin: 0 !important;
    }

    .website-hero .container,
    .website-hero .website-container,
    .website-hero .section-container {
        padding: 0 !important;
        margin: 0 !important;
        max-width: 100% !important;
        width: 100% !important;
    }

    .website-image-slider,
    .website-slider.website-image-slider {
        position: relative;
        width: 100vw !important;
        left: 50%;
        right: 50%;
        margin-left: -50vw !important;
        margin-right: -50vw !important;
        border-radius: 0 !important;
    }

    .website-slide,
    .website-image-slide {
        border-radius: 0 !important;
    }

    .website-slide-image-link img {
        width: 100% !important;
        height: auto !important;
        object-fit: contain !important;
    }
}

/* =========================================================
   IGM REMOVE SLIDER SHELL FINAL
   Mobile slider: full screen width, no shell, no crop
========================================================= */
@media (max-width: 768px) {
    .website-hero,
    .website-hero * {
        box-sizing: border-box !important;
    }

    .website-hero {
        width: 100vw !important;
        max-width: 100vw !important;
        margin-left: calc(50% - 50vw) !important;
        margin-right: calc(50% - 50vw) !important;
        padding: 0 !important;
        border: 0 !important;
        background: transparent !important;
        box-shadow: none !important;
        overflow: hidden !important;
    }

    .website-hero .container,
    .website-hero .website-container,
    .website-hero .section-container,
    .website-hero > div {
        width: 100vw !important;
        max-width: 100vw !important;
        margin: 0 !important;
        padding: 0 !important;
        border: 0 !important;
        background: transparent !important;
        box-shadow: none !important;
    }

    .website-slider,
    .website-image-slider,
    .website-slider.website-image-slider {
        width: 100vw !important;
        max-width: 100vw !important;
        margin: 0 !important;
        padding: 0 !important;
        border: 0 !important;
        border-radius: 0 !important;
        background: transparent !important;
        box-shadow: none !important;
        overflow: hidden !important;
    }

    .website-slide,
    .website-image-slide,
    .website-image-slide.active {
        width: 100vw !important;
        max-width: 100vw !important;
        margin: 0 !important;
        padding: 0 !important;
        border: 0 !important;
        border-radius: 0 !important;
        background: transparent !important;
        box-shadow: none !important;
        overflow: hidden !important;
    }

    .website-slide-image-link,
    .website-image-slide .website-slide-image-link,
    .website-image-slide.active .website-slide-image-link {
        width: 100vw !important;
        max-width: 100vw !important;
        margin: 0 !important;
        padding: 0 !important;
        border: 0 !important;
        border-radius: 0 !important;
        background: transparent !important;
        box-shadow: none !important;
        display: block !important;
        overflow: hidden !important;
    }

    .website-slide-image-link img,
    .website-image-slide .website-slide-image-link img,
    .website-image-slide.active .website-slide-image-link img {
        width: 100vw !important;
        max-width: 100vw !important;
        height: auto !important;
        margin: 0 !important;
        padding: 0 !important;
        border: 0 !important;
        border-radius: 0 !important;
        display: block !important;
        object-fit: contain !important;
        object-position: center center !important;
    }

    .website-slider-dots {
        margin-top: 12px !important;
        margin-bottom: 18px !important;
    }
}

/* =========================================================
   IGM SLIDER CENTER FIX FINAL
   Fix: offset, crop, and full width alignment
========================================================= */
@media (max-width: 768px) {

    .website-hero {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        overflow: hidden !important;
    }

    .website-hero > div,
    .website-hero .container,
    .website-hero .website-container,
    .website-hero .section-container {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .website-slider,
    .website-image-slider {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto !important;
        padding: 0 !important;
        left: auto !important;
        right: auto !important;
        transform: none !important;
    }

    .website-slide,
    .website-image-slide {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .website-slide-image-link {
        width: 100% !important;
        max-width: 100% !important;
        display: block !important;
    }

    .website-slide-image-link img {
        width: 100% !important;
        height: auto !important;
        display: block !important;
        object-fit: contain !important;
        object-position: center center !important;
    }
}

/* =========================================================
   IGM TOPBAR FAR RIGHT FINAL REAL CSS
========================================================= */
.shared-mainbar.website-wrap,
.website-wrap.shared-mainbar {
    width: 100% !important;
    max-width: 1180px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    display: flex !important;
    align-items: center !important;
    gap: 24px !important;
}

.shared-mainbar .website-logo {
    flex: 0 0 auto !important;
}

.shared-mainbar .shared-nav {
    flex: 0 0 auto !important;
    display: flex !important;
    align-items: center !important;
    gap: 20px !important;
}

.shared-mainbar .shared-avatar-dropdown {
    margin-left: auto !important;
    flex: 0 0 auto !important;
}

.shared-mainbar .shared-avatar-btn {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
}

@media (max-width: 768px) {
    .shared-mainbar.website-wrap,
    .website-wrap.shared-mainbar {
        max-width: 100% !important;
        padding-left: 12px !important;
        padding-right: 12px !important;
        gap: 10px !important;
        flex-wrap: nowrap !important;
    }

    .shared-mainbar .shared-nav {
        flex: 1 1 auto !important;
        overflow-x: auto !important;
        white-space: nowrap !important;
        gap: 14px !important;
    }

    .shared-mainbar .shared-avatar-name {
        display: none !important;
    }
}

/* =========================================================
   IGM TRUE RIGHT EDGE FIX (FINAL)
========================================================= */

/* allow full width topbar */
.shared-topbar .shared-mainbar {
    max-width: 100% !important;
    width: 100% !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
}

/* keep content nice but allow stretch */
.shared-mainbar {
    display: flex !important;
    align-items: center !important;
}

/* nav stays left */
.shared-nav {
    display: flex !important;
    align-items: center !important;
    gap: 20px;
}

/* avatar TRUE RIGHT */
.shared-avatar-dropdown {
    margin-left: auto !important;
}

/* optional: make avatar cleaner */
.shared-avatar-btn {
    padding: 4px 8px !important;
}

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

    .shared-topbar .shared-mainbar {
        padding-left: 12px !important;
        padding-right: 12px !important;
    }

    .shared-avatar-name {
        display: none !important;
    }

}


/* =========================================================
   IGM TOPBAR TRUE SPLIT FINAL
   Left: logo/nav | Right: avatar dropdown
========================================================= */
.shared-topbar .shared-mainbar.website-wrap,
.shared-topbar .website-wrap.shared-mainbar {
    max-width: none !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 14px 24px !important;
    display: grid !important;
    grid-template-columns: auto auto 1fr auto !important;
    align-items: center !important;
    column-gap: 24px !important;
}

.shared-topbar .website-logo {
    grid-column: 1 !important;
    margin: 0 !important;
}

.shared-topbar .shared-nav {
    grid-column: 2 !important;
    display: flex !important;
    align-items: center !important;
    gap: 22px !important;
    margin: 0 !important;
}

.shared-topbar .shared-avatar-dropdown {
    grid-column: 4 !important;
    justify-self: end !important;
    margin-left: 0 !important;
}

@media (max-width: 768px) {
    .shared-topbar .shared-mainbar.website-wrap,
    .shared-topbar .website-wrap.shared-mainbar {
        padding: 10px 12px !important;
        grid-template-columns: auto 1fr auto !important;
        column-gap: 10px !important;
    }

    .shared-topbar .website-logo {
        grid-column: 1 !important;
    }

    .shared-topbar .shared-nav {
        grid-column: 2 !important;
        overflow-x: auto !important;
        white-space: nowrap !important;
        gap: 12px !important;
    }

    .shared-topbar .shared-avatar-dropdown {
        grid-column: 3 !important;
    }

    .shared-topbar .shared-avatar-name {
        display: none !important;
    }
}

/* =========================================================
   IGM BALANCED TOPBAR FINAL (PROPORTION FIX)
========================================================= */

/* restore container look */
.shared-topbar .shared-mainbar {
    max-width: 1180px !important;
    margin: 0 auto !important;
    padding: 14px 20px !important;
    display: flex !important;
    align-items: center !important;
}

/* nav spacing */
.shared-nav {
    display: flex !important;
    align-items: center !important;
    gap: 22px !important;
}

/* THIS is the correct push */
.shared-actions {
    margin-left: auto !important;
    display: flex !important;
    align-items: center !important;
}

/* avatar clean */
.shared-avatar-btn {
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
    padding: 4px 10px !important;
}

/* keep nice balance */
.website-logo {
    margin-right: 20px;
}

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

    .shared-topbar .shared-mainbar {
        max-width: 100% !important;
        padding: 10px 12px !important;
    }

    .shared-nav {
        gap: 12px !important;
        overflow-x: auto !important;
        white-space: nowrap !important;
    }

    .shared-avatar-name {
        display: none !important;
    }
}


/* =========================================================
   IGM TOPBAR ALIGN TO CONTENT FINAL
   Align header content with homepage content/slider width
========================================================= */
.shared-topbar .shared-mainbar.website-wrap,
.shared-topbar .website-wrap.shared-mainbar,
.shared-topbar .shared-mainbar {
    max-width: 1180px !important;
    width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    display: flex !important;
    align-items: center !important;
    gap: 22px !important;
}

.shared-topbar .website-logo {
    flex: 0 0 auto !important;
    margin: 0 18px 0 0 !important;
}

.shared-topbar .shared-nav {
    flex: 0 0 auto !important;
    display: flex !important;
    align-items: center !important;
    gap: 22px !important;
    margin: 0 !important;
}

.shared-topbar .shared-actions,
.shared-topbar .shared-avatar-dropdown {
    margin-left: auto !important;
}

@media (max-width: 768px) {
    .shared-topbar .shared-mainbar.website-wrap,
    .shared-topbar .website-wrap.shared-mainbar,
    .shared-topbar .shared-mainbar {
        max-width: 100% !important;
        padding-left: 12px !important;
        padding-right: 12px !important;
        gap: 10px !important;
    }

    .shared-topbar .website-logo {
        margin-right: 6px !important;
    }

    .shared-topbar .shared-nav {
        flex: 1 1 auto !important;
        gap: 12px !important;
        overflow-x: auto !important;
        white-space: nowrap !important;
    }

    .shared-topbar .shared-avatar-name {
        display: none !important;
    }
}

/* =========================================================
   IGM PERFECT ALIGN FINAL (MATCH CONTENT SPACING)
========================================================= */

/* match slider/content padding */
.shared-topbar .shared-mainbar {
    max-width: 1180px !important;
    margin: 0 auto !important;
    padding-left: 18px !important;   /* SAME as content */
    padding-right: 18px !important;  /* SAME as content */
    display: flex !important;
    align-items: center !important;
}

/* nav spacing */
.shared-nav {
    display: flex !important;
    align-items: center !important;
    gap: 20px !important;
}

/* push avatar */
.shared-actions {
    margin-left: auto !important;
}

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

    .shared-topbar .shared-mainbar {
        padding-left: 14px !important;
        padding-right: 14px !important;
    }

}


/* =========================================================
   IGM STICKY HEADER FINAL
========================================================= */
.shared-topbar{
    position: sticky !important;
    top: 0 !important;
    z-index: 999 !important;
    background: #ffffff !important;
    box-shadow: 0 6px 20px rgba(15,23,42,.06) !important;
}

.shared-topbar .website-topbar{
    background:#0f172a !important;
}

.shared-mainbar-shell{
    background:#ffffff !important;
}

@media(max-width:768px){
    .shared-topbar{
        z-index:9999 !important;
    }
}