@import url('https://fonts.googleapis.com/css2?family=Hind+Siliguri:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

/* ─── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --teal-900: #134e4a;
    --teal-800: #115e59;
    --teal-700: #0f766e;
    --teal-600: #0d9488;
    --teal-500: #14b8a6;
    --teal-400: #2dd4bf;
    --teal-100: #ccfbf1;
    --teal-50:  #f0fdfa;

    --slate-900: #0f172a;
    --slate-800: #1e293b;
    --slate-700: #334155;
    --slate-600: #475569;
    --slate-400: #94a3b8;
    --slate-200: #e2e8f0;
    --slate-100: #f1f5f9;
    --slate-50:  #f8fafc;

    --amber-500: #f59e0b;
    --amber-100: #fef3c7;

    --red-500: #ef4444;
    --red-100: #fee2e2;

    --white: #ffffff;

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;

    --shadow-sm: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
    --shadow-md: 0 4px 16px rgba(0,0,0,.08), 0 2px 6px rgba(0,0,0,.06);
    --shadow-lg: 0 12px 40px rgba(0,0,0,.10), 0 4px 12px rgba(0,0,0,.06);

    --font-bn: 'Hind Siliguri', sans-serif;
    --font-en: 'Inter', sans-serif;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-bn);
    font-size: 15px;
    line-height: 1.65;
    color: var(--slate-800);
    background: var(--slate-50);
    min-height: 100vh;
}

/* ─── Navbar ────────────────────────────────────────────────── */
.mc-nav {
    background: var(--teal-700);
    position: sticky;
    top: 0;
    z-index: 50;
    box-shadow: 0 2px 12px rgba(15,118,110,.35);
}

.mc-nav__inner {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.mc-nav__brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--white);
}

.mc-nav__logo {
    width: 34px;
    height: 34px;
    background: rgba(255,255,255,.18);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.mc-nav__name {
    font-size: 17px;
    font-weight: 700;
    letter-spacing: -.2px;
}

.mc-nav__links {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
}

.mc-nav__links a,
.mc-nav__links button {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    font-size: 13.5px;
    font-weight: 500;
    font-family: var(--font-bn);
    color: rgba(255,255,255,.85);
    text-decoration: none;
    background: none;
    border: none;
    cursor: pointer;
    transition: background .15s, color .15s;
}

.mc-nav__links a:hover,
.mc-nav__links button:hover {
    background: rgba(255,255,255,.15);
    color: var(--white);
}

.mc-nav__links a.active {
    background: rgba(255,255,255,.2);
    color: var(--white);
}

.mc-nav__user {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 5px 12px 5px 8px;
    border-radius: 30px;
    background: rgba(255,255,255,.15);
    color: var(--white);
    font-size: 13px;
    font-weight: 500;
}

.mc-nav__avatar {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--teal-400);
    color: var(--teal-900);
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ─── Hero ──────────────────────────────────────────────────── */
.mc-hero {
    background: linear-gradient(135deg, var(--teal-900) 0%, var(--teal-700) 60%, var(--teal-600) 100%);
    padding: 56px 20px 52px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.mc-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(45,212,191,.12) 0%, transparent 55%),
        radial-gradient(circle at 80% 20%, rgba(255,255,255,.06) 0%, transparent 45%);
    pointer-events: none;
}

.mc-hero__pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 30px;
    padding: 5px 14px;
    font-size: 12.5px;
    color: var(--teal-100);
    margin-bottom: 18px;
    letter-spacing: .3px;
}

.mc-hero__pill span { font-size: 14px; }

.mc-hero__title {
    font-size: clamp(24px, 5vw, 38px);
    font-weight: 700;
    color: var(--white);
    line-height: 1.3;
    margin-bottom: 12px;
    letter-spacing: -.5px;
}

.mc-hero__title em {
    font-style: normal;
    color: var(--teal-400);
}

.mc-hero__sub {
    font-size: 15px;
    color: rgba(255,255,255,.72);
    max-width: 420px;
    margin: 0 auto 28px;
    line-height: 1.6;
}

.mc-hero__badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}

.mc-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 6px;
    padding: 4px 12px;
    font-size: 12.5px;
    color: rgba(255,255,255,.8);
}

/* ─── Main Container ─────────────────────────────────────────── */
.mc-main {
    max-width: 860px;
    margin: 0 auto;
    padding: 32px 16px 60px;
}

.mc-main--narrow {
    max-width: 520px;
}

/* ─── Cards ──────────────────────────────────────────────────── */
.mc-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    padding: 32px;
    border: 1px solid rgba(0,0,0,.05);
}

.mc-card + .mc-card { margin-top: 20px; }

.mc-card__header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--slate-100);
}

.mc-card__icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.mc-card__icon--teal { background: var(--teal-100); }
.mc-card__icon--amber { background: var(--amber-100); }

.mc-card__title {
    font-size: 17px;
    font-weight: 700;
    color: var(--slate-900);
    letter-spacing: -.2px;
}

.mc-card__subtitle {
    font-size: 13px;
    color: var(--slate-400);
    margin-top: 2px;
}

/* ─── Form Elements ──────────────────────────────────────────── */
.mc-form { display: flex; flex-direction: column; gap: 18px; }

.mc-field { display: flex; flex-direction: column; gap: 6px; }

.mc-label {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--slate-700);
    display: flex;
    align-items: center;
    gap: 4px;
}

.mc-label .required { color: var(--red-500); }

.mc-input,
.mc-select,
.mc-textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1.5px solid var(--slate-200);
    border-radius: var(--radius-sm);
    font-size: 14.5px;
    font-family: var(--font-bn);
    color: var(--slate-800);
    background: var(--white);
    outline: none;
    transition: border-color .15s, box-shadow .15s;
    -webkit-appearance: none;
}

.mc-input:focus,
.mc-select:focus,
.mc-textarea:focus {
    border-color: var(--teal-500);
    box-shadow: 0 0 0 3px rgba(20,184,166,.15);
}

.mc-input::placeholder,
.mc-textarea::placeholder { color: var(--slate-400); }

.mc-textarea { resize: vertical; min-height: 80px; }

.mc-select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%2394a3b8'%3E%3Cpath fill-rule='evenodd' d='M5.23 7.21a.75.75 0 011.06.02L10 11.168l3.71-3.938a.75.75 0 111.08 1.04l-4.25 4.5a.75.75 0 01-1.08 0l-4.25-4.5a.75.75 0 01.02-1.06z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 18px;
    padding-right: 40px;
    cursor: pointer;
}

.mc-error {
    font-size: 12.5px;
    color: var(--red-500);
    display: flex;
    align-items: center;
    gap: 4px;
}

.mc-hint {
    font-size: 12px;
    color: var(--slate-400);
    line-height: 1.5;
}

/* File Upload */
.mc-upload {
    border: 2px dashed var(--slate-200);
    border-radius: var(--radius-md);
    padding: 24px;
    text-align: center;
    cursor: pointer;
    transition: border-color .15s, background .15s;
}

.mc-upload:hover { border-color: var(--teal-400); background: var(--teal-50); }

.mc-upload input[type="file"] { display: none; }

.mc-upload__icon { font-size: 28px; margin-bottom: 8px; }

.mc-upload__text { font-size: 13.5px; color: var(--slate-600); }

.mc-upload__text strong { color: var(--teal-700); }

.mc-upload__preview {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--teal-50);
    border: 1.5px solid var(--teal-200, #99f6e4);
    border-radius: var(--radius-sm);
    padding: 10px 14px;
    margin-top: 10px;
    font-size: 13px;
    color: var(--teal-800);
}

/* ─── Buttons ────────────────────────────────────────────────── */
.mc-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 22px;
    border-radius: var(--radius-sm);
    font-size: 14.5px;
    font-weight: 600;
    font-family: var(--font-bn);
    cursor: pointer;
    border: none;
    text-decoration: none;
    transition: background .15s, transform .1s, box-shadow .15s;
    white-space: nowrap;
}

.mc-btn:active { transform: translateY(1px); }

.mc-btn--primary {
    background: var(--teal-700);
    color: var(--white);
    box-shadow: 0 2px 8px rgba(15,118,110,.3);
}

.mc-btn--primary:hover {
    background: var(--teal-800);
    box-shadow: 0 4px 14px rgba(15,118,110,.4);
}

.mc-btn--outline {
    background: transparent;
    color: var(--teal-700);
    border: 1.5px solid var(--teal-600);
}

.mc-btn--outline:hover { background: var(--teal-50); }

.mc-btn--ghost {
    background: var(--slate-100);
    color: var(--slate-700);
}

.mc-btn--ghost:hover { background: var(--slate-200); }

.mc-btn--full { width: 100%; }

.mc-btn:disabled {
    opacity: .6;
    cursor: not-allowed;
    transform: none;
}

/* Spinner */
.mc-spinner {
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255,255,255,.35);
    border-top-color: var(--white);
    border-radius: 50%;
    animation: spin .7s linear infinite;
    flex-shrink: 0;
}

@keyframes spin { to { transform: rotate(360deg); } }

/* ─── Tabs / Source selector ─────────────────────────────────── */
.mc-tabs {
    display: flex;
    background: var(--slate-100);
    border-radius: var(--radius-sm);
    padding: 3px;
    gap: 2px;
}

.mc-tab {
    flex: 1;
    padding: 8px 10px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    font-family: var(--font-bn);
    text-align: center;
    cursor: pointer;
    border: none;
    background: transparent;
    color: var(--slate-500);
    transition: background .15s, color .15s, box-shadow .15s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.mc-tab.active,
.mc-tab:has(input:checked) {
    background: var(--white);
    color: var(--teal-700);
    font-weight: 600;
    box-shadow: var(--shadow-sm);
}

/* ─── Alerts / Banners ───────────────────────────────────────── */
.mc-alert {
    display: flex;
    gap: 10px;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    font-size: 13.5px;
    line-height: 1.5;
}

.mc-alert--info {
    background: var(--teal-50);
    border: 1px solid var(--teal-100);
    color: var(--teal-800);
}

.mc-alert--warning {
    background: var(--amber-100);
    border: 1px solid #fde68a;
    color: #92400e;
}

.mc-alert--error {
    background: var(--red-100);
    border: 1px solid #fecaca;
    color: #991b1b;
}

.mc-alert--success {
    background: var(--teal-100);
    border: 1px solid var(--teal-400);
    color: var(--teal-900);
}

/* ─── Success / Order Confirmed ──────────────────────────────── */
.mc-success {
    text-align: center;
    padding: 16px 0;
}

.mc-success__icon {
    width: 72px;
    height: 72px;
    background: var(--teal-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin: 0 auto 20px;
    animation: popIn .4s cubic-bezier(.34,1.56,.64,1) both;
}

@keyframes popIn {
    from { transform: scale(0); opacity: 0; }
    to   { transform: scale(1); opacity: 1; }
}

.mc-success__order {
    display: inline-block;
    background: var(--teal-50);
    border: 1.5px dashed var(--teal-400);
    border-radius: var(--radius-sm);
    padding: 10px 24px;
    font-family: var(--font-en);
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--teal-800);
    margin: 12px 0 8px;
}

/* ─── Track / Status Timeline ────────────────────────────────── */
.mc-timeline { display: flex; flex-direction: column; gap: 0; }

.mc-timeline__item {
    display: flex;
    gap: 14px;
    position: relative;
}

.mc-timeline__item:not(:last-child)::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 32px;
    bottom: -4px;
    width: 2px;
    background: var(--slate-200);
}

.mc-timeline__item.done::before { background: var(--teal-400); }

.mc-timeline__dot {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid var(--slate-200);
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
    margin-top: 4px;
    z-index: 1;
}

.mc-timeline__item.done .mc-timeline__dot {
    background: var(--teal-600);
    border-color: var(--teal-600);
    color: var(--white);
}

.mc-timeline__item.current .mc-timeline__dot {
    background: var(--white);
    border-color: var(--teal-600);
    box-shadow: 0 0 0 4px rgba(20,184,166,.2);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 4px rgba(20,184,166,.2); }
    50%       { box-shadow: 0 0 0 8px rgba(20,184,166,.08); }
}

.mc-timeline__content {
    padding: 4px 0 20px;
    flex: 1;
}

.mc-timeline__label {
    font-size: 14px;
    font-weight: 600;
    color: var(--slate-700);
}

.mc-timeline__item.done .mc-timeline__label { color: var(--teal-700); }
.mc-timeline__item.current .mc-timeline__label { color: var(--slate-900); }

.mc-timeline__time {
    font-size: 12px;
    color: var(--slate-400);
    font-family: var(--font-en);
    margin-top: 2px;
}

/* ─── Order Summary ──────────────────────────────────────────── */
.mc-medicine-list { display: flex; flex-direction: column; gap: 8px; }

.mc-medicine-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    background: var(--slate-50);
    border-radius: var(--radius-sm);
    border: 1px solid var(--slate-200);
}

.mc-medicine-item__name { font-size: 14px; font-weight: 500; }
.mc-medicine-item__qty { font-size: 13px; color: var(--slate-400); }
.mc-medicine-item__price { font-size: 14px; font-weight: 600; color: var(--teal-700); font-family: var(--font-en); }

.mc-divider {
    border: none;
    border-top: 1px solid var(--slate-100);
    margin: 16px 0;
}

.mc-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: var(--slate-600);
    padding: 3px 0;
}

.mc-total-row--grand {
    font-size: 17px;
    font-weight: 700;
    color: var(--slate-900);
    padding-top: 10px;
    margin-top: 6px;
    border-top: 2px solid var(--slate-200);
}

.mc-total-row--grand .price { color: var(--teal-700); font-family: var(--font-en); }

/* ─── Badges ─────────────────────────────────────────────────── */
.mc-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.mc-badge--teal { background: var(--teal-100); color: var(--teal-800); }
.mc-badge--amber { background: var(--amber-100); color: #92400e; }
.mc-badge--slate { background: var(--slate-100); color: var(--slate-700); }

/* ─── Info Grid ──────────────────────────────────────────────── */
.mc-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.mc-info-item__label {
    font-size: 12px;
    color: var(--slate-400);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 3px;
}

.mc-info-item__value {
    font-size: 14.5px;
    font-weight: 600;
    color: var(--slate-800);
}

/* ─── Auth pages ─────────────────────────────────────────────── */
.mc-auth-wrap {
    min-height: calc(100vh - 60px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px 16px;
    background: linear-gradient(160deg, var(--teal-50) 0%, var(--slate-50) 60%);
}

.mc-auth-card {
    width: 100%;
    max-width: 440px;
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    padding: 36px 32px;
    border: 1px solid rgba(0,0,0,.05);
}

.mc-auth-logo {
    width: 52px;
    height: 52px;
    background: var(--teal-100);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 18px;
}

.mc-auth-title {
    font-size: 22px;
    font-weight: 700;
    text-align: center;
    color: var(--slate-900);
    margin-bottom: 6px;
    letter-spacing: -.3px;
}

.mc-auth-sub {
    font-size: 13.5px;
    color: var(--slate-400);
    text-align: center;
    margin-bottom: 28px;
    line-height: 1.55;
}

.mc-auth-footer {
    margin-top: 20px;
    text-align: center;
    font-size: 13px;
    color: var(--slate-400);
}

.mc-auth-footer a {
    color: var(--teal-700);
    font-weight: 600;
    text-decoration: none;
}

.mc-auth-footer a:hover { text-decoration: underline; }

/* ─── Divider with text ──────────────────────────────────────── */
.mc-or {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    color: var(--slate-300);
    margin: 4px 0;
}

.mc-or::before, .mc-or::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--slate-100);
}

/* ─── Password input wrapper ─────────────────────────────────── */
.mc-pw-wrap { position: relative; }

.mc-pw-wrap .mc-input { padding-right: 44px; }

.mc-pw-toggle {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: var(--slate-400);
    font-size: 16px;
    padding: 4px;
}

/* ─── Zone delivery info ─────────────────────────────────────── */
.mc-zone-info {
    background: var(--teal-50);
    border: 1px solid var(--teal-100);
    border-radius: var(--radius-sm);
    padding: 10px 14px;
    font-size: 13px;
    color: var(--teal-800);
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-top: 8px;
}

/* ─── Mobile hamburger nav ───────────────────────────────────── */
@media (max-width: 540px) {
    .mc-nav__links a, .mc-nav__links button { padding: 6px 9px; }

    .mc-card { padding: 22px 18px; }
    .mc-auth-card { padding: 28px 20px; }
    .mc-info-grid { grid-template-columns: 1fr; }
}

/* ─── Livewire loading ───────────────────────────────────────── */
[wire\:loading] { display: none; }
[wire\:loading][wire\:loading] { display: flex; }

/* ─── Footer ─────────────────────────────────────────────── */
.mc-footer {
    background: var(--slate-900);
    color: rgba(255,255,255,.75);
    margin-top: 60px;
}

.mc-footer__inner {
    max-width: 900px;
    margin: 0 auto;
    padding: 48px 20px 36px;
    display: flex;
    flex-direction: column;
    gap: 36px;
}

.mc-footer__brand {
    display: flex;
    align-items: center;
    gap: 14px;
}

.mc-footer__logo {
    width: 46px; height: 46px;
    background: var(--teal-700);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.mc-footer__name {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
}

.mc-footer__tagline {
    font-size: 13px;
    color: rgba(255,255,255,.45);
    margin-top: 2px;
}

.mc-footer__cols {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.mc-footer__col {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mc-footer__col-title {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255,255,255,.35);
    margin-bottom: 4px;
}

.mc-footer__col a,
.mc-footer__col span {
    font-size: 13.5px;
    color: rgba(255,255,255,.65);
    text-decoration: none;
    transition: color .12s;
    display: block;
}

.mc-footer__col a:hover { color: var(--white); }

.mc-footer__bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    padding: 16px 20px;
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12.5px;
    color: rgba(255,255,255,.3);
    gap: 10px;
    flex-wrap: wrap;
}

@media (max-width: 600px) {
    .mc-footer__cols { grid-template-columns: 1fr 1fr; }
    .mc-footer__bottom { justify-content: center; text-align: center; }
}

/* ─── Step Form ──────────────────────────────────────────── */
.mc-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 28px;
    position: relative;
}

.mc-steps::before {
    content: '';
    position: absolute;
    top: 18px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 80px);
    height: 2px;
    background: var(--slate-200);
    z-index: 0;
}

.mc-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    flex: 1;
    position: relative;
    z-index: 1;
}

.mc-step__dot {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: var(--slate-200);
    color: var(--slate-400);
    font-size: 14px;
    font-weight: 700;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-en);
    transition: background .2s, color .2s, box-shadow .2s;
    border: 3px solid var(--white);
}

.mc-step.active .mc-step__dot {
    background: var(--teal-600);
    color: var(--white);
    box-shadow: 0 0 0 4px rgba(20,184,166,.2);
}

.mc-step.done .mc-step__dot {
    background: var(--teal-500);
    color: var(--white);
}

.mc-step__label {
    font-size: 11.5px;
    font-weight: 600;
    color: var(--slate-400);
    text-align: center;
    white-space: nowrap;
}

.mc-step.active .mc-step__label { color: var(--teal-700); }
.mc-step.done .mc-step__label { color: var(--teal-600); }

/* Step panels */
.mc-step-panel { display: none; }
.mc-step-panel.active { display: block; animation: fadeInUp .25s ease; }

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Step nav buttons */
.mc-step-nav {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.mc-step-nav .mc-btn { flex: 1; justify-content: center; padding: 12px; }

/* ─── Home sections ──────────────────────────────────────── */
.mc-section {
    max-width: 900px;
    margin: 0 auto;
    padding: 56px 20px;
}

.mc-section__title {
    font-size: clamp(20px, 4vw, 28px);
    font-weight: 700;
    color: var(--slate-900);
    text-align: center;
    margin-bottom: 8px;
    letter-spacing: -.3px;
}

.mc-section__sub {
    font-size: 14.5px;
    color: var(--slate-500);
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.6;
}

/* Mission / Vision cards */
.mc-mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.mc-mv-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0,0,0,.04);
    position: relative;
    overflow: hidden;
}

.mc-mv-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
}

.mc-mv-card--mission::before { background: var(--teal-500); }
.mc-mv-card--vision::before  { background: linear-gradient(90deg, var(--teal-500), var(--teal-300)); }

.mc-mv-card__icon { font-size: 32px; margin-bottom: 12px; }
.mc-mv-card__label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--teal-600);
    margin-bottom: 6px;
}
.mc-mv-card__title { font-size: 17px; font-weight: 700; color: var(--slate-900); margin-bottom: 10px; }
.mc-mv-card__text  { font-size: 14px; color: var(--slate-600); line-height: 1.7; }

/* Features grid */
.mc-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.mc-feature {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 22px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,.04);
    transition: transform .15s, box-shadow .15s;
}

.mc-feature:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.mc-feature__icon { font-size: 28px; margin-bottom: 10px; }
.mc-feature__title { font-size: 15px; font-weight: 700; color: var(--slate-900); margin-bottom: 6px; }
.mc-feature__desc  { font-size: 13px; color: var(--slate-500); line-height: 1.6; }

/* How it works */
.mc-how {
    background: var(--teal-900);
    position: relative;
    overflow: hidden;
}

.mc-how::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 50%, rgba(20,184,166,.15) 0%, transparent 60%);
}

.mc-how .mc-section { position: relative; }

.mc-how .mc-section__title { color: var(--white); }
.mc-how .mc-section__sub   { color: rgba(255,255,255,.6); }

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

.mc-step-how {
    text-align: center;
    padding: 24px 16px;
    background: rgba(255,255,255,.07);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255,255,255,.1);
    position: relative;
}

.mc-step-how__num {
    width: 44px; height: 44px;
    background: var(--teal-600);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin: 0 auto 14px;
    font-family: var(--font-en);
}

.mc-step-how__icon { font-size: 28px; margin-bottom: 10px; }
.mc-step-how__title { font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.mc-step-how__desc  { font-size: 13px; color: rgba(255,255,255,.6); line-height: 1.6; }

/* Responsive */
@media (max-width: 680px) {
    .mc-mv-grid { grid-template-columns: 1fr; }
    .mc-features { grid-template-columns: 1fr 1fr; }
    .mc-steps-how { grid-template-columns: 1fr; gap: 12px; }
    .mc-steps::before { display: none; }
    .mc-step__label { display: none; }
}

/* ─── Language Switcher ──────────────────────────────────── */
.mc-lang-switcher {
    position: relative;
}

.mc-lang-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 10px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 600;
    font-family: var(--font-bn);
    color: rgba(255,255,255,.85);
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.18);
    cursor: pointer;
    transition: background .15s;
    white-space: nowrap;
}

.mc-lang-btn:hover {
    background: rgba(255,255,255,.22);
    color: var(--white);
}

.mc-lang-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: 0 8px 24px rgba(0,0,0,.14);
    border: 1px solid rgba(0,0,0,.06);
    overflow: hidden;
    min-width: 130px;
    z-index: 999;
}

.mc-lang-dropdown.open { display: block; animation: fadeInDown .15s ease; }

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: translateY(0); }
}

.mc-lang-dropdown a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    font-size: 13.5px;
    font-weight: 500;
    color: var(--slate-700);
    text-decoration: none;
    transition: background .1s;
    font-family: var(--font-bn);
}

.mc-lang-dropdown a:hover  { background: var(--slate-50); }
.mc-lang-dropdown a.mc-lang-active {
    background: var(--teal-50);
    color: var(--teal-700);
    font-weight: 700;
}

/* ─── Language Switcher ──────────────────────────────────── */
.mc-lang-switcher {
    position: relative;
}

.mc-lang-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 10px;
    border-radius: 7px;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.18);
    color: rgba(255,255,255,.9);
    font-size: 13px;
    font-weight: 600;
    font-family: var(--font-bn);
    cursor: pointer;
    transition: background .15s;
}

.mc-lang-btn:hover {
    background: rgba(255,255,255,.22);
}

.mc-lang-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0,0,0,.14);
    border: 1px solid var(--slate-200);
    overflow: hidden;
    min-width: 130px;
    z-index: 200;
    animation: fadeInUp .15s ease;
}

.mc-lang-dropdown.open {
    display: block;
}

.mc-lang-dropdown a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    font-size: 13.5px;
    font-weight: 500;
    color: var(--slate-700);
    text-decoration: none;
    transition: background .1s;
}

.mc-lang-dropdown a:hover {
    background: var(--slate-50);
}

.mc-lang-dropdown a.mc-lang-active {
    background: var(--teal-50);
    color: var(--teal-700);
    font-weight: 700;
}

.mc-lang-dropdown a.mc-lang-active::after {
    content: '✓';
    margin-left: auto;
    font-size: 12px;
}

/* ─── Step Panel Fix — mc-card override সরাতে !important ── */
.mc-step-panel {
    display: none !important;
}

.mc-step-panel.active {
    display: block !important;
    animation: fadeInUp .25s ease;
}
