/* DAILYMAN UNIFIED SHARED HEADER & FOOTER DESIGN SYSTEM */

:root {
    --mr-primary:       #6d5dfc;
    --mr-primary-light: #8b7dff;
    --mr-primary-bg:    #eef2ff;
    --mr-text:          #111827;
    --mr-text-light:    #6b7280;
    --mr-bg:            #ffffff;
    --mr-bg-soft:       #f8faff;
    --mr-border:        #e5e7eb;
    --mr-shadow:        0 10px 40px rgba(109, 93, 252, 0.10);
    --mr-radius:        28px;
    --mr-font-body:     'Inter', sans-serif;
    --mr-font-display:  'Playfair Display', serif;
    --mr-nav-height:    76px;
}

/* NAVIGATION (mr-nav) */
.mr-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--mr-nav-height);
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    z-index: 999;
}

.mr-nav__container {
    width: 100%;
    height: 100%;
}

.mr-nav__logo {
    font-size: 28px;
    font-weight: 800;
    font-family: var(--mr-font-display);
    color: var(--mr-text);
    text-decoration: none;
    letter-spacing: -0.5px;
}

.mr-nav__logo span {
    color: var(--mr-primary);
}

.mr-nav__links {
    display: flex;
    align-items: center;
    gap: 36px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.mr-nav__links li {
    display: inline-block;
}

.mr-nav__links a {
    text-decoration: none;
    color: var(--mr-text-light);
    font-size: 15px;
    font-weight: 600;
    transition: color 0.3s;
}

.mr-nav__links a:hover {
    color: var(--mr-primary);
}

.mr-nav__cta {
    padding: 13px 26px;
    background: var(--mr-primary);
    color: #fff !important;
    border-radius: 999px;
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 8px 24px rgba(109, 93, 252, 0.25);
    transition: transform 0.3s, box-shadow 0.3s;
    display: inline-block;
}

.mr-nav__cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(109, 93, 252, 0.35);
}

.mr-nav__hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    background: transparent;
    border: none;
    padding: 8px;
    width: 40px;
    height: 40px;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    transition: background-color 0.2s;
    z-index: 1000;
}

.mr-nav__hamburger:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.mr-nav__hamburger span {
    width: 24px;
    height: 2px;
    background: var(--mr-text);
    border-radius: 2px;
    display: block;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.mr-nav__hamburger[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mr-nav__hamburger[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.mr-nav__hamburger[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* FOOTER (mr-foot) */
.mr-foot {
    background: #0f0e17;
    color: #c9c7e4;
    padding: 40px 0 10px; /* Reduced vertical padding */
    overflow: hidden;
}

.mr-foot__container {
    /* Let Bootstrap container handle max-width */
}

.mr-foot__top {
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mr-foot__brand-logo {
    font-size: 30px;
    font-weight: 800;
    color: #fff;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 18px;
    letter-spacing: -1px;
    font-family: var(--mr-font-display);
}

.mr-foot__brand-logo span {
    color: var(--mr-primary-light);
}

.mr-foot__brand-desc {
    font-size: 14px;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.58);
    max-width: 320px;
    margin-bottom: 28px;
}

.mr-foot__social {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mr-foot__social a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.10);
    color: rgba(255, 255, 255, 0.70);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 15px;
    transition: background 0.3s, color 0.3s, transform 0.3s, border-color 0.3s;
}

.mr-foot__social a:hover {
    background: var(--mr-primary);
    border-color: var(--mr-primary);
    color: #fff;
    transform: translateY(-3px);
}

.mr-foot__col-title {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #fff;
    margin-bottom: 22px;
    font-family: var(--mr-font-body);
}

.mr-foot__links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.mr-foot__links a {
    text-decoration: none;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.55);
    transition: color 0.3s, padding-left 0.3s;
    font-family: var(--mr-font-body);
}

.mr-foot__links a:hover {
    color: var(--mr-primary-light);
    padding-left: 4px;
}

.mr-foot__bottom {
    padding: 10px 0; /* Reduced bottom bar padding from 26px to 10px */
}

.mr-foot__copy {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.38);
    font-family: var(--mr-font-body);
}

.mr-foot__copy a {
    color: var(--mr-primary-light);
    text-decoration: none;
}

.mr-foot__legal {
    display: flex;
    align-items: center;
    gap: 20px;
}

.mr-foot__legal a {
    font-size: 13px;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.38);
    transition: color 0.3s;
    font-family: var(--mr-font-body);
}

.mr-foot__legal a:hover {
    color: var(--mr-primary-light);
}

/* RESPONSIVE NAVIGATION OVERRIDES */
@media (max-width: 991.98px) {
    .mr-nav__hamburger {
        display: flex !important;
    }
    
    .navbar-collapse {
        background: #ffffff;
        position: absolute;
        top: var(--mr-nav-height);
        left: 0;
        width: 100%;
        padding: 20px 24px;
        box-shadow: 0 15px 30px rgba(109, 93, 252, 0.08);
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }
    
    .mr-nav__links {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 12px !important;
        margin-top: 0 !important;
    }
    
    .mr-nav__links li {
        width: 100%;
    }
    
    .mr-nav__links a {
        display: block;
        width: 100%;
        padding: 8px 0;
    }
    
    .mr-nav__cta {
        display: block;
        text-align: center;
        width: 100%;
        margin-top: 8px;
    }
}


/* ============================================================
   DAILYMAN WELCOME LANDING PAGE STYLES (Scoped to .welcome-page)
   ============================================================ */

.welcome-page *, .welcome-page *::before, .welcome-page *::after {
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    scroll-behavior: smooth;
}

.welcome-page {
    margin: 0;
    padding: 0;
    max-width: 100%;
    font-family: var(--mr-font-body, 'Inter', sans-serif);
    background: var(--mr-bg, #ffffff);
    color: var(--mr-text, #111827);
    line-height: 1.6;
    padding-top: var(--mr-nav-height, 76px);
}

@media (min-width: 1200px) {
    .welcome-page .container {
        max-width: 1440px !important;
    }
}
@media (min-width: 1600px) {
    .welcome-page .container {
        max-width: 1580px !important;
    }
}

/* BASE FORM STYLES */
.welcome-page .form-group {
    margin-bottom: 20px;
}

.welcome-page .form-label {
    display: block;
    margin-bottom: 6px;
    color: var(--mr-text);
    font-size: 13px;
    font-weight: 700;
}

.welcome-page .input-box {
    position: relative;
}

.welcome-page .form-control {
    width: 100%;
    box-sizing: border-box;
    height: 47px;
    border-radius: 16px;
    border: 1.5px solid #e6e8ef;
    background: #fafbff;
    padding: 0 18px;
    font-size: 14px;
    outline: none;
    transition: 0.3s ease;
    color: var(--mr-text);
}

.welcome-page .form-control:focus {
    border-color: var(--mr-primary);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(109, 93, 252, 0.12);
}

.welcome-page .form-control::placeholder {
    color: #9ca3af;
}

.welcome-page .form-control.is-invalid {
    border-color: #ef4444;
    background: #fff5f5;
}

.welcome-page .error-text {
    color: #ef4444;
    font-size: 12px;
    margin-top: 6px;
    padding-left: 4px;
    font-weight: 600;
}

.welcome-page .show-pass-btn {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    background: none;
    color: var(--mr-primary);
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
}

.welcome-page .btn-login {
    width: 100%;
    height: 54px;
    border: none;
    border-radius: 16px;
    background: var(--mr-primary);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.35s ease;
    margin-top: 6px;
    box-shadow: 0 15px 30px rgba(109, 93, 252, 0.25);
}

.welcome-page .btn-login:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 35px rgba(109, 93, 252, 0.35);
}

.welcome-page .bottom-text {
    text-align: center;
    margin-top: 18px;
    font-size: 14px;
    color: #6b7280;
    font-weight: 500;
}

.welcome-page .bottom-text a {
    color: var(--mr-primary);
    text-decoration: none;
    font-weight: 700;
}

.mr-banner {
    position: relative;
    overflow: hidden;
    padding: 30px 0 8px;
}

.mr-banner::before {
    content: '';
    position: absolute;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(109, 93, 252, 0.07), transparent 70%);
    top: -100px;
    right: -150px;
    z-index: -1;
    pointer-events: none;
}

.mr-banner__label {
    font-size: 13px;
    font-weight: 700;
    color: var(--mr-primary);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.mr-banner__title {
    font-size: clamp(44px, 5.5vw, 80px);
    line-height: 1.06;
    font-family: var(--mr-font-display);
    font-weight: 800;
    margin-bottom: 26px;
}

.mr-banner__title span {
    color: var(--mr-primary);
}

.mr-banner__desc {
    font-size: 17px;
    line-height: 1.9;
    color: var(--mr-text-light);
    max-width: 560px;
    margin-bottom: 38px;
}

.mr-banner__buttons {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.mr-btn-primary {
    padding: 17px 34px;
    background: var(--mr-primary);
    color: #fff;
    text-decoration: none;
    border-radius: 999px;
    font-weight: 700;
    font-size: 15px;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 10px 30px rgba(109, 93, 252, 0.25);
}

.mr-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 36px rgba(109, 93, 252, 0.35);
}

.mr-btn-secondary {
    padding: 17px 30px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    color: var(--mr-text);
    background: #fff;
    border: 1.5px solid var(--mr-border);
    transition: border-color 0.3s, color 0.3s;
}

.mr-btn-secondary:hover {
    border-color: var(--mr-primary);
    color: var(--mr-primary);
}

.mr-banner__stats {
    margin-top: 56px;
    display: flex;
    gap: 48px;
    flex-wrap: wrap;
}

.mr-banner__stat-num {
    font-size: 40px;
    font-weight: 800;
    color: var(--mr-primary);
    margin-bottom: 5px;
    font-family: var(--mr-font-display);
}

.mr-banner__stat-label {
    font-size: 14px;
    color: var(--mr-text-light);
    font-weight: 500;
}

.mr-banner__visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.mr-mockup {
    width: 100%;
    max-width: 480px;
    background: #fff;
    border-radius: 30px;
    box-shadow: var(--mr-shadow);
    border: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
    animation: mr-float 5s ease-in-out infinite;
}

@keyframes mr-float {
    0%, 100% { transform: translateY(0px); }
    50%      { transform: translateY(-12px); }
}

.mr-mockup__header {
    padding: 22px 26px;
    background: var(--mr-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mr-mockup__profile {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mr-mockup__avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 16px;
}

.mr-mockup__body {
    padding: 10px;
}

/* SHARED SECTION LAYOUTS */
.mr-section {
    padding: 8px 0;
}

.mr-section--soft {
    background: var(--mr-bg-soft);
    width: 100%;
    padding: 8px 0;
}

.mr-section-head {
    text-align: center;
    max-width: 740px;
    margin: 0 auto 64px;
}

.mr-section-head h2 {
    font-size: clamp(34px, 4.5vw, 56px);
    line-height: 1.15;
    font-family: var(--mr-font-display);
    font-weight: 800;
    margin-bottom: 18px;
}

.mr-section-head p {
    font-size: 17px;
    line-height: 1.85;
    color: var(--mr-text-light);
}

/* FEATURES (mr-feat) */
.mr-feat__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.mr-feat__card {
    background: #fff;
    border: 1px solid var(--mr-border);
    border-radius: var(--mr-radius);
    padding: 38px 32px;
    transition: transform 0.35s, box-shadow 0.35s;
    position: relative;
    overflow: hidden;
}

.mr-feat__card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(109, 93, 252, 0.03), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.mr-feat__card:hover::before {
    opacity: 1;
}

.mr-feat__card:hover {
    transform: translateY(-10px);
    box-shadow: var(--mr-shadow);
}

.mr-feat__icon {
    width: 68px;
    height: 68px;
    border-radius: 20px;
    background: var(--mr-primary-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 22px;
}

.mr-feat__card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.mr-feat__card p {
    font-size: 15px;
    line-height: 1.85;
    color: var(--mr-text-light);
}

/* SHOWCASE (mr-show) */
.mr-show__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.mr-show__box {
    background: #fff;
    border: 1px solid var(--mr-border);
    border-radius: var(--mr-radius);
    padding: 40px;
    box-shadow: var(--mr-shadow);
}

.mr-show__box h3 {
    font-size: 22px;
    font-family: var(--mr-font-display);
    font-weight: 800;
    margin-bottom: 12px;
    line-height: 1.25;
}

.mr-show__box p {
    font-size: 15px;
    line-height: 1.9;
    color: var(--mr-text-light);
    margin-bottom: 28px;
}

.mr-show__list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.mr-show__item {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 15px;
    font-weight: 600;
    color: var(--mr-text);
}

.mr-show__check {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--mr-primary-bg);
    color: var(--mr-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    flex-shrink: 0;
}

/* TESTIMONIALS (mr-testi) */
.mr-testi__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.mr-testi__card {
    padding: 32px;
    border-radius: 24px;
    border: 1px solid var(--mr-border);
    background: #fff;
    transition: transform 0.3s, box-shadow 0.3s;
}

.mr-testi__card:hover {
    transform: translateY(-8px);
    box-shadow: var(--mr-shadow);
}

.mr-testi__stars {
    color: #f59e0b;
    font-size: 17px;
    margin-bottom: 16px;
}

.mr-testi__text {
    font-size: 15px;
    line-height: 1.9;
    color: var(--mr-text-light);
    margin-bottom: 22px;
}

.mr-testi__user {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mr-testi__avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--mr-primary-bg);
    color: var(--mr-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 16px;
    flex-shrink: 0;
}

.mr-testi__name {
    font-size: 15px;
    font-weight: 700;
    color: var(--mr-text);
}

.mr-testi__role {
    font-size: 13px;
    color: var(--mr-text-light);
    margin-top: 2px;
}

/* CTA BANNER (mr-cta) */
.mr-cta {
    margin: 80px 5% 100px;
    padding: 80px 50px;
    border-radius: 40px;
    background: linear-gradient(135deg, #6d5dfc, #8b7dff);
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.mr-cta::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.07);
    top: -200px;
    right: -100px;
    pointer-events: none;
}

.mr-cta::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    bottom: -100px;
    left: -60px;
    pointer-events: none;
}

.mr-cta h2 {
    font-size: clamp(32px, 4.5vw, 58px);
    font-family: var(--mr-font-display);
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.mr-cta p {
    max-width: 680px;
    margin: 0 auto 36px;
    font-size: 16px;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.88);
    position: relative;
    z-index: 2;
}

.mr-cta a {
    display: inline-block;
    padding: 17px 38px;
    background: #fff;
    color: var(--mr-primary);
    border-radius: 999px;
    text-decoration: none;
    font-weight: 800;
    font-size: 15px;
    position: relative;
    z-index: 2;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.mr-cta a:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
}

/* FOOTER (mr-foot) */
.mr-foot {
    background: #0f0e17;
    color: #c9c7e4;
    padding: 30px;
    overflow: hidden;
}

.mr-foot__legal a:hover {
    color: var(--mr-primary-light);
}

/* ANIMATIONS & TRANSITIONS (DESKTOP STATE) */
@keyframes mr-banner-text-in {
    from { opacity: 0; transform: translateX(-40px); }
    to   { opacity: 1; transform: translateX(0); }
}

@keyframes mr-banner-visual-in {
    from { opacity: 0; transform: translateX(40px); }
    to   { opacity: 1; transform: translateX(0); }
}

.mr-anim-banner-text {
    animation: mr-banner-text-in 0.85s cubic-bezier(0.22, 1, 0.36, 1) both;
    animation-delay: 0.1s;
}

.mr-anim-banner-visual {
    animation: mr-banner-visual-in 0.85s cubic-bezier(0.22, 1, 0.36, 1) both;
    animation-delay: 0.3s;
}

.mr-anim-fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.mr-anim-fade-up.mr-visible {
    opacity: 1;
    transform: translateY(0);
}

.mr-anim-fade-left {
    opacity: 0;
    transform: translateX(-44px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.mr-anim-fade-left.mr-visible {
    opacity: 1;
    transform: translateX(0);
}

.mr-anim-fade-right {
    opacity: 0;
    transform: translateX(44px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.mr-anim-fade-right.mr-visible {
    opacity: 1;
    transform: translateX(0);
}

.mr-anim-zoom-in {
    opacity: 0;
    transform: scale(0.88);
    transition: opacity 0.65s ease, transform 0.65s ease;
}
.mr-anim-zoom-in.mr-visible {
    opacity: 1;
    transform: scale(1);
}

.mr-delay-1 { transition-delay: 0.08s; }
.mr-delay-2 { transition-delay: 0.18s; }
.mr-delay-3 { transition-delay: 0.18s; }
.mr-delay-4 { transition-delay: 0.28s; }
.mr-delay-5 { transition-delay: 0.38s; }
.mr-delay-6 { transition-delay: 0.48s; }

/* CONSOLIDATED RESPONSIVE MEDIA QUERIES (Largest to Smallest) */

/* ── 768px and below ───────────────────────────────────── */
@media (max-width: 768px) {
    /* FORCE ALL CONTENT VISIBILITY (Observer Override) */
    .mr-anim-fade-up,
    .mr-anim-fade-left,
    .mr-anim-fade-right,
    .mr-anim-zoom-in {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }

    .mr-delay-1,
    .mr-delay-2,
    .mr-delay-3,
    .mr-delay-4,
    .mr-delay-5,
    .mr-delay-6 {
        transition-delay: 0s !important;
    }

    /* --- Hero Banner --- */
    .mr-banner {
        padding: 16px 0 8px;
    }

    /* Remove the large left padding on mobile */
    .mr-banner .row.ps-5 {
        padding-left: 0 !important;
    }

    /* Login card column — remove Bootstrap gutter side padding so card fills width */
    .mr-anim-banner-visual {
        padding-left: 4px !important;
        padding-right: 4px !important;
    }

    .mr-banner__label {
        font-size: 11px !important;
        letter-spacing: 1.5px;
        margin-bottom: 12px;
    }

    .mr-banner__title {
        font-size: clamp(24px, 7vw, 34px) !important;
        line-height: 1.15 !important;
        margin-bottom: 16px;
    }

    .mr-banner__desc {
        font-size: 14px !important;
        line-height: 1.7 !important;
        margin-bottom: 20px;
    }

    /* Stats numbers */
    .mr-banner .fw-bold.fs-2 {
        font-size: 1.4rem !important;
    }

    /* --- Login Mockup Card --- */
    .mr-mockup {
        max-width: 100% !important;
        border-radius: 20px !important;
    }

    .mr-mockup__header {
        padding: 14px 16px !important;
    }

    .mr-mockup__header strong {
        font-size: 14px !important;
    }

    .mr-mockup__header small {
        font-size: 11px !important;
    }

    .mr-mockup__avatar {
        width: 36px !important;
        height: 36px !important;
        font-size: 13px !important;
    }

    .mr-mockup__body {
        padding: 16px !important;
    }

    /* Form controls inside mockup */
    .mr-mockup__body .form-control {
        height: 42px;
        padding: 0 12px !important;
        font-size: 13px !important;
        border-radius: 10px !important;
    }

    .mr-mockup__body .form-label {
        font-size: 12px !important;
        margin-bottom: 4px;
    }

    .mr-mockup__body .mb-3 {
        margin-bottom: 10px !important;
    }

    .mr-mockup__body .mb-4 {
        margin-bottom: 12px !important;
    }

    /* Remember me / Forgot password row */
    .mr-mockup__body .d-flex.justify-content-between {
        flex-wrap: wrap;
        gap: 4px;
    }

    .mr-mockup__body .form-check-label {
        font-size: 11px !important;
    }

    .mr-mockup__body .form-check-input {
        width: 14px !important;
        height: 14px !important;
    }

    .mr-mockup__body a.small {
        font-size: 11px !important;
    }

    /* Login button */
    .mr-mockup__body .btn.text-white.w-100 {
        padding: 10px !important;
        font-size: 13px !important;
        border-radius: 10px !important;
    }

    /* Not registered text */
    .mr-mockup__body .text-center.mt-4 {
        margin-top: 10px !important;
        font-size: 11px !important;
    }

    /* Show password button */
    #togglePassword {
        font-size: 11px !important;
        padding: 0 8px !important;
    }

    /* --- Section Headings --- */
    .mr-section-head h2,
    section h2.fw-bold {
        font-size: clamp(20px, 6vw, 28px) !important;
        line-height: 1.2 !important;
        margin-bottom: 10px !important;
    }

    .mr-section-head p,
    section p.text-muted.fs-5,
    section p.fs-5 {
        font-size: 13px !important;
        line-height: 1.7 !important;
    }

    /* --- Feature Cards --- */
    .mr-feat__card {
        padding: 24px 20px;
    }

    .mr-feat__icon {
        width: 52px;
        height: 52px;
        font-size: 22px;
        border-radius: 14px;
        margin-bottom: 14px;
    }

    .mr-feat__card h3 {
        font-size: 15px !important;
    }

    .mr-feat__card p {
        font-size: 13px !important;
    }

    /* --- Showcase Section --- */
    .mr-show__box {
        padding: 24px 20px;
    }

    .mr-show__box h3 {
        font-size: 17px !important;
    }

    .mr-show__box p {
        font-size: 13px !important;
    }

    .mr-show__item {
        font-size: 13px !important;
    }

    /* --- Testimonials --- */
    .mr-testi__card {
        padding: 20px;
    }

    .mr-testi__text {
        font-size: 13px !important;
    }

    .mr-testi__name {
        font-size: 13px !important;
    }

    .mr-testi__role {
        font-size: 11px !important;
    }

    /* --- CTA Section --- */
    .mr-cta {
        margin: 20px 0 !important;
        padding: 40px 20px !important;
        border-radius: 20px !important;
    }
    .p-4{
    padding-right: 20px !important;
    padding-left: 12px !important;
}

    .mr-cta h2 {
        font-size: clamp(18px, 5.5vw, 26px) !important;
    }

    .mr-cta p {
        font-size: 13px !important;
    }

    /* --- Hero CTA buttons — both in one row on mobile --- */
    .mr-banner .d-flex.flex-wrap {
        flex-wrap: nowrap !important;
    }

    .mr-banner .d-flex.flex-wrap a {
        font-size: 12px !important;
        padding: 9px 14px !important;
        white-space: nowrap;
    }

    /* --- Nav height on mobile --- */
    :root {
        --mr-nav-height: 64px;
    }

    .mr-nav__logo {
        font-size: 22px !important;
    }
}

/* ── 480px and below ───────────────────────────────────── */
@media (max-width: 480px) {
    .mr-banner__title {
        font-size: clamp(22px, 6.5vw, 28px) !important;
    }
        .mr-mockup__header strong{
            font-size: 13px !important;
        }
.p-4{
    padding-right: 0px !important;
    padding-left: 0px !important;
}
    .mr-banner__desc {
        font-size: 13px !important;
    }

    .mr-banner .fw-bold.fs-2 {
        font-size: 1.2rem !important;
    }

    .mr-banner .text-muted.small {
        font-size: 10px !important;
    }

    section h2.fw-bold {
        font-size: clamp(18px, 5.5vw, 24px) !important;
    }

    section p.text-muted.fs-5,
    section p.fs-5 {
        font-size: 12px !important;
    }

    .mr-mockup__header {
        padding: 12px 14px !important;
    }

    .mr-mockup__body {
        padding: 14px !important;
    }
   
}

/* ── 360px and below (very small phones) ──────────────── */
@media (max-width: 360px) {
    .mr-banner__title {
        font-size: 20px !important;
        line-height: 1.2 !important;
    }
 
    .mr-banner__label {
        font-size: 10px !important;
        letter-spacing: 1px;
    }

    .mr-banner__desc {
        font-size: 12px !important;
    }

    .mr-banner .fw-bold.fs-2 {
        font-size: 1.1rem !important;
    }

    section h2.fw-bold {
        font-size: 18px !important;
    }

    section p.text-muted.fs-5,
    section p.fs-5 {
        font-size: 12px !important;
    }

    /* Mockup tightest */
    .mr-mockup__body {
        padding: 12px !important;
    }

    .mr-mockup__body .form-control {
        height: 38px;
        font-size: 12px !important;
        padding: 0 10px !important;
    }

    .mr-mockup__body .btn.text-white.w-100 {
        padding: 9px !important;
        font-size: 12px !important;
    }

    /* Feature cards */
    .mr-feat__card {
        padding: 18px 14px;
    }

    .mr-feat__icon {
        width: 44px;
        height: 44px;
        font-size: 18px;
        border-radius: 12px;
        margin-bottom: 10px;
    }

    .mr-feat__card h3 {
        font-size: 13px !important;
    }

    .mr-feat__card p {
        font-size: 12px !important;
    }

    /* CTA */
    .mr-cta {
        padding: 30px 14px !important;
        border-radius: 16px !important;
    }

    .mr-cta h2 {
        font-size: 17px !important;
    }

    .mr-cta p {
        font-size: 12px !important;
    }

    /* Hero buttons */
    .mr-banner .d-flex.flex-wrap a {
        font-size: 12px !important;
        padding: 9px 16px !important;
    }

    :root {
        --mr-nav-height: 58px;
    }
}
